/* === FIX CONTAINER: FORCE VERTICAL STACK === */
body.home .site-content,
body.home .site-main {
    display: block !important;
}

body.home .site-content > *,
body.home .site-main > section {
    display: block !important;
    width: 100% !important;
    clear: both !important;
    margin: 40px auto !important;
    max-width: 1200px !important;
}

/* Grid posts: 4-3-2-1 responsive */
body.home .posts-row {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important;
}

@media (max-width: 1024px) {
    body.home .posts-row {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    body.home .posts-row {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    body.home .posts-row {
        grid-template-columns: 1fr !important;
    }
}
