.team-member-page {
    background-color: var(--warm-white, #F5F2EC);
}

/* ── Two-column profile layout ───────────────────────── */
.member-profile {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    max-width: 1300px;
    margin: 0 auto;
    padding: 7rem 4rem 6rem;
    align-items: start;
}

.member-col-image {
    position: sticky;
    top: 100px;
}

.member-photo {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px;
    display: block;
}

.member-photo-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    background: linear-gradient(135deg, #c8d5c0 0%, #8fa880 100%);
}

/* ── Name + eyebrow ──────────────────────────────────── */
.member-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #999;
    margin-bottom: 0.6rem;
}

.member-name {
    font-family: 'ABC Marist', serif;
    font-size: clamp(2.5rem, 4vw, 3.8rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: #111;
    margin-bottom: 2.5rem;
}

/* ── Bio text ────────────────────────────────────────── */
.member-bio {
    padding: 0;
    background: none;
}

.member-bio p {
    font-size: 1.1rem;
    line-height: 1.85;
    color: #333;
    margin-bottom: 1.6rem;
}

.member-bio p:last-child {
    margin-bottom: 0;
}

.member-bio a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(0,0,0,0.3);
    transition: text-decoration-color 0.2s ease;
}

.member-bio a:hover {
    text-decoration-color: rgba(0,0,0,0.8);
}

/* ── Highlights (Diana only) ─────────────────────────── */
.member-highlights {
    padding: 5rem 4rem;
    background-color: #F8F5F2;
}

.member-highlights .content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.member-highlights h2 {
    font-family: 'ABC Marist', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    text-transform: none;
    letter-spacing: 0;
}

.highlights-list {
    list-style: none;
    padding: 0;
    columns: 2;
    column-gap: 4rem;
}

.highlights-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    padding-left: 1.5rem;
    position: relative;
    break-inside: avoid;
}

.highlights-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #999;
}

/* ── CTA ─────────────────────────────────────────────── */
.member-cta {
    padding: 6rem 2rem;
    background-color: var(--warm-white, #F5F2EC);
    text-align: center;
}

.member-cta h2 {
    font-family: 'Libre Baskerville', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: -0.02em;
    color: var(--stormy-teal, #2C6671);
}

.member-cta p {
    font-family: 'Open Sans', sans-serif;
    color: rgba(44, 102, 113, 0.7);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.contact-button {
    display: inline-block;
    padding: 0.9rem 2.4rem;
    background: var(--rust, #C3703D);
    color: white;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: opacity 0.2s ease;
}

.contact-button:hover {
    opacity: 0.85;
}

/* ── Testimonials ────────────────────────────────────── */
.member-testimonials {
    padding: 6rem 4rem;
    background: var(--stormy-teal, #2C6671);
}

.member-testimonials-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.member-testimonials-eyebrow {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(245, 242, 236, 0.55);
    margin-bottom: 2.5rem;
}

/* Slider color overrides for teal background */
.member-testimonials .testi-card {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.12);
}

.member-testimonials .testi-body blockquote {
    color: rgba(245, 242, 236, 0.92);
    font-style: normal;
}

.member-testimonials .testi-name {
    color: rgba(245, 242, 236, 0.95);
}

.member-testimonials .testi-role {
    color: rgba(245, 242, 236, 0.5);
}

.member-testimonials .testi-btn {
    color: var(--warm-white, #F5F2EC);
    border-color: rgba(245, 242, 236, 0.3);
}

.member-testimonials .testi-btn:hover {
    background: rgba(245, 242, 236, 0.1);
    border-color: rgba(245, 242, 236, 0.5);
}

.member-testimonials .testi-dot {
    background: rgba(245, 242, 236, 0.3);
}

.member-testimonials .testi-dot.active {
    background: var(--warm-white, #F5F2EC);
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 900px) {
    .member-profile {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 5rem 2rem 4rem;
    }

    .member-col-image {
        position: static;
        max-width: 320px;
    }

    .highlights-list {
        columns: 1;
    }

    .member-highlights {
        padding: 4rem 2rem;
    }

    .member-testimonials {
        padding: 4rem 2rem;
    }
}
