.site-index-hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(430px, 56vw, 680px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background-image: linear-gradient(90deg, rgba(8, 39, 33, .82) 0%, rgba(8, 39, 33, .52) 48%, rgba(8, 39, 33, .2) 100%), url('/assets/images/destinations-hero.webp');
    background-position: center;
    background-size: cover;
}

.site-index-hero h1,
.site-index-hero > p {
    position: relative;
    z-index: 1;
}

.site-index-route-groups {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 4rem;
    padding: 0;
    background: transparent;
    color: #0b3b35;
}

.site-index-start {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    column-gap: 2rem;
}

.site-index-start a:nth-child(n) {
    min-width: 0;
    margin-inline: 0;
    white-space: nowrap;
}

.site-index-route-groups details {
    min-height: 0;
    margin: 0;
    padding: 1rem 0;
    border: 0;
    border-top: 1px solid #cfc7b8;
    background: transparent;
    color: #0b3b35;
}

.site-index-route-groups summary,
.site-index-route-groups summary span,
.site-index-route-groups a {
    color: #0b3b35;
}

.site-index-route-groups summary {
    padding: 0;
    background: transparent;
}

@media (max-width: 850px) {
    .site-index-hero {
        min-height: 430px;
        background-position: 58% center;
    }

    .site-index-route-groups,
    .site-index-start {
        grid-template-columns: 1fr;
    }

    .site-index-start a:nth-child(n) {
        white-space: normal;
    }
}
