/* Destinations Hub - Two-Column Layout (Desktop) */

.destinations-hub-interactive-section {
    padding: 3rem 0;
    margin-top: 50px;
}

/* Desktop: Two-column grid layout */
.hub-two-column-layout {
    display: grid;
    grid-template-columns: 1fr 510px;
    gap: 3rem;
    align-items: start;
    position: relative;
}

.hub-map-column {
    min-width: 0; /* Prevent grid blowout */
    position: relative;
    z-index: 1;
}

.hub-widget-column {
    /* Keep the widget above the scaled map so all links remain clickable. */
    position: relative;
    z-index: 2;
    margin-top: 30px;
    margin-right: 25px;
}

/* Popular Destinations section */
.hub-popular-destinations-section {
    padding: 0 0 4rem 0;
    position: relative;
    z-index: 1;
}

/* Popular Destinations - Mobile */
.hub-popular-destinations-section-mobile {
    padding: 2rem 0 3rem 0;
}

.popular-destinations-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    width: 100%;
    margin-top: 15px;
}

.popular-destinations-mobile .location-card-mobile {
    margin-bottom: 0;
}

.popular-destinations-mobile .location-image-container {
    height: 125px;
}

.popular-destinations-mobile .location-description {
    display: none;
}

/* "See More Locations" call-to-action below popular destinations */
.hub-see-more-cta {
    text-align: center;
    margin-top: 4rem;
}

.hub-see-more-cta .see-more {
    font-size: 20px;
    letter-spacing: 0.02em;
    transition: color 0.3s ease, transform 0.3s ease;
}

.hub-see-more-cta .see-more:hover {
    color: rgb(112, 112, 112) !important;
    transform: translateX(6px);
}

.hub-see-more-cta .see-more .inline-arrow {
    color: rgb(112, 112, 112);
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
}

.hub-see-more-cta .see-more .inline-arrow svg {
    color: rgb(112, 112, 112);
    display: inline-block;
    width: 18px;
    height: auto;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Japan Monthly Guide - mobile 2-column grid */
.monthly-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
}

/* Featured Travel Guides section */
.hub-featured-travel-guides-section {
    margin-top: 0px;
}

/* Existing hub grid section spacing */
.destinations-hub-page {
    padding: 3rem 0 4rem 0;
}

/* Mobile/Tablet: Stack layout */
@media (max-width: 1024px) {
    .hub-two-column-layout {
        display: block;
    }

    .hub-see-more-cta {
        text-align: center;
        margin-top: 2.5rem;
    }

    .hub-map-column {
        margin-bottom: 2rem;
    }

    .hub-widget-column {
        max-width: 600px;
        margin: 0 auto;
    }

    .destinations-hub-interactive-section {
        padding: 2rem 0;
    }
}

@media (max-width: 768px) {
    .hub-map-column {
        margin-bottom: 1.5rem;
    }

    .destinations-hub-interactive-section {
        padding: 1.5rem 0;
        margin-top: 0px;
    }

    .destinations-hub-page {
        padding: 2rem 0 3rem 0;
    }
}

@media (max-width: 480px) {
    .hub-map-column {
        margin-bottom: 1rem;
    }

    .destinations-hub-interactive-section {
        padding: 1rem 1.5rem;
    }

    .destinations-hub-page {
        padding: 1.5rem 0 2rem 0;
    }
}
