/* ========================================
   HOMEPAGE LAYOUT OVERRIDE [LOCKED]
   Status: FINALIZED (25% - 50% - 25%)
   DO NOT MODIFY GRID STRUCTURE
   ======================================== */

/* Override main-content grid untuk homepage */
.main-content {
    display: grid !important;
    grid-template-columns: 1fr 2fr 1fr !important;
    /* 25% - 50% - 25% */
    gap: 20px !important;
    margin-bottom: 40px !important;
    width: 100% !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Prevent content overflow (especially ads) */
.main-content img {
    max-width: 100% !important;
    height: auto !important;
}

.center-col,
.left-col,
.right-col {
    min-width: 0;
    /* Critical for grid overflow prevention */
}

/* Responsive: Stack pada mobile */
@media (max-width: 900px) {
    .main-content {
        grid-template-columns: 1fr !important;
    }
}