/* Override grid display for masonry - targets old container classes */
.posts-card.masonry-container,
.post-overlay.masonry-container,
.post-archive-grid.masonry-container {
    display: block !important;
}

/* Masonry item widths */
.masonry-item {
    width: calc(33.333% - 14px);
    margin-bottom: 20px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .masonry-item {
        width: calc(50% - 10.5px);
    }
}

@media (max-width: 480px) {
    .masonry-item {
        width: 100%;
    }
}

/* Ensure images cover their containers */
.masonry-item-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}