/* ============================================================
   Blog — Explore International (uniform 5-up card row)
   ============================================================ */

.huc-explore-international-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.huc-explore-international-grid .huc-explore-card {
    aspect-ratio: 3 / 4;
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .huc-explore-international-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 1rem;
    }
}

@media (max-width: 575.98px) {
    .huc-explore-international-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
