/* Page-specific redesign for experiences.php — scoped under .exp-redesign so
   it never affects the shared header/nav or other pages. Colors reuse the
   site's existing design tokens from site.css; only typography and a few
   section layouts change here. */

.exp-redesign h1,
.exp-redesign h2,
.exp-redesign h3,
.exp-redesign .prompt {
    font-family: 'League Spartan', 'Poppins', Arial, sans-serif;
}

.exp-redesign p,
.exp-redesign .lead,
.exp-redesign .section-sub,
.exp-redesign .hero-tags,
.exp-redesign .need-label,
.exp-redesign .next-card-meta,
.exp-redesign .next-card-body p,
.exp-redesign .btn {
    font-family: 'DM Sans', 'Inter', Arial, sans-serif;
}

/* Hero visual */
.exp-redesign .hero-image {
    background: var(--pale-orange);
    border: none;
    border-radius: 24px;
    min-height: 390px;
}

.exp-redesign .hero-accent {
    width: 120px;
    height: 3px;
    border-radius: 2px;
    background: var(--orange);
    margin-top: 24px;
}

/* "What are you looking for" — need cards with a colored icon panel */
.exp-redesign .prompt-underline {
    width: 75px;
    height: 3px;
    border-radius: 2px;
    background: var(--orange);
    margin: -12px 0 20px;
}

.needs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.need-card {
    position: relative;
    min-height: 145px;
}

.need-card-inner {
    display: flex;
    align-items: stretch;
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
}

.need-visual {
    position: relative;
    flex: 0 0 85px;
}

.need-visual--navy { background: var(--navy); }
.need-visual--orange { background: var(--orange); }

.need-nub {
    position: absolute;
    top: 50%;
    right: -13px;
    transform: translateY(-50%);
    width: 15px;
    height: 30px;
    z-index: 2;
    pointer-events: none;
}

.need-body {
    flex: 1;
    padding: 20px 20px 20px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.need-label {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.98rem;
    line-height: 1.3;
}

.need-underline {
    width: 48px;
    height: 3px;
    border-radius: 2px;
    background: var(--orange);
}

/* "Coming Up" — next-up cards (color banner + badge, no photo, matches the
   teaser style used elsewhere on this page rather than the photo galleries
   on the dedicated /events and /experiences/<type> listing pages) */
.next-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.next-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.next-card-banner {
    height: 150px;
    display: flex;
    align-items: flex-end;
    padding: 0 24px;
}

.next-card-banner--navy { background: var(--navy); }
.next-card-banner--orange { background: var(--orange); }
.next-card-banner--blue { background: var(--soft-blue); }
.next-card-banner--gold { background: var(--pale-orange); }

.next-card-badge {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(50%);
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.next-card-badge svg { width: 20px; height: 20px; }

.next-card-banner--navy .next-card-badge { background: var(--orange); color: var(--navy); }
.next-card-banner--orange .next-card-badge { background: var(--navy); color: var(--white); }
.next-card-banner--blue .next-card-badge { background: var(--pale-orange); color: var(--navy); }
.next-card-banner--gold .next-card-badge { background: var(--soft-blue); color: var(--navy); }

.next-card-body {
    padding: 32px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.next-card-body h3 {
    font-size: 1.4rem;
    margin: 0;
}

.next-card-meta {
    font-weight: 600;
    color: var(--muted-gray);
    font-size: 0.85rem;
}

.next-card-body p {
    font-size: 0.85rem;
    color: var(--charcoal);
    margin: 0;
    flex: 1;
}

.next-card-link {
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9rem;
    text-decoration: none;
    margin-top: 4px;
}

.flight-path {
    position: relative;
    flex: 1 1 240px;
    max-width: 340px;
    height: 100px;
    align-self: center;
}
.flight-path svg { display: block; width: 120%; height: 150%; }

@media (max-width: 900px) {
    .needs-grid, .next-grid { grid-template-columns: repeat(2, 1fr); }
    .flight-path { display: none; }
}

@media (max-width: 600px) {
    .needs-grid, .next-grid { grid-template-columns: 1fr; }
    .need-card { flex-direction: row; }
}
