.explore-hero {
    margin: 0 calc(50% - 50vw);
    padding: 78px max(24px, calc((100vw - 1180px) / 2));
    background:
        linear-gradient(rgba(17, 55, 39, 0.78), rgba(17, 55, 39, 0.82)),
        radial-gradient(circle at top right, #4c7b64, #183e2d);
    color: #fff;
}

.explore-hero .eyebrow {
    color: #f2d18d;
}

.explore-hero h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(2.6rem, 6vw, 4.8rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
}

.explore-hero p {
    max-width: 720px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.explore-section {
    padding-top: 62px;
    padding-bottom: 76px;
}

.explore-intro {
    max-width: 760px;
    margin-bottom: 30px;
}

.explore-intro h2 {
    margin: 0;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    line-height: 1.12;
}

.explore-intro p {
    margin: 12px 0 0;
    color: #61717a;
    font-size: 1.04rem;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.explore-card {
    position: relative;
    display: flex;
    min-height: 270px;
    flex-direction: column;
    overflow: hidden;
    padding: 26px;
    border: 1px solid #d6e1e7;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(22, 54, 70, 0.09);
    color: #18313c;
    text-decoration: none;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.explore-card:hover,
.explore-card:focus-visible {
    transform: translateY(-4px);
    border-color: #9fbcca;
    box-shadow: 0 18px 38px rgba(22, 54, 70, 0.14);
    outline: none;
}

.explore-card::after {
    position: absolute;
    right: -55px;
    bottom: -65px;
    z-index: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #edf4f6;
    content: "";
}

.explore-card > * {
    position: relative;
    z-index: 1;
}

.explore-card-icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 15px;
    background: #edf4f6;
    font-size: 1.65rem;
}

.explore-card h3 {
    margin: 22px 0 8px;
    color: #12384a;
    font-size: 1.35rem;
    line-height: 1.2;
}

.explore-card p {
    margin: 0;
    color: #61717a;
}

.explore-card .card-link {
    margin-top: auto;
    padding-top: 20px;
    color: #246b8f;
    font-weight: 800;
}

.explore-card.featured {
    border-color: #d7bd7d;
    background: linear-gradient(145deg, #fffdf7, #fff 58%);
}

.explore-card.featured .explore-card-icon,
.explore-card.featured::after {
    background: #fbf1d7;
}

.explore-card.coming-soon {
    opacity: 0.76;
}

.status-badge {
    align-self: flex-start;
    margin-top: 16px;
    padding: 5px 9px;
    border-radius: 999px;
    background: #eef1f2;
    color: #61717a;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.local-callout {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
    margin-top: 40px;
    padding: 28px;
    border-radius: 18px;
    background: #12384a;
    color: #fff;
}

.local-callout h2 {
    margin: 0;
    font-size: 1.55rem;
}

.local-callout p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.82);
}

.local-callout .button {
    white-space: nowrap;
}

@media (max-width: 900px) {
    .explore-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .local-callout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .explore-grid {
        grid-template-columns: 1fr;
    }

    .explore-hero {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .explore-section {
        padding-top: 46px;
        padding-bottom: 58px;
    }
}
