/* ── Equipe sections — each is a full viewport page ─────────── */
.equipe-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.equipe-section--first {
    min-height: 45vh;
}

.equipe-section:nth-child(odd)  { background: #FAFAF8; }
.equipe-section:nth-child(even) { background: #F2EDE3; }

.equipe-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 8%; right: 8%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(139,105,20,0.12), transparent);
}

.equipe-section-inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

/* ── Section intro (blog text) ─────────────────────────────── */
.equipe-intro-block {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(139,105,20,0.15);
}

.equipe-intro-block h1 {
    font-family: 'Geist Mono', monospace;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #1C1C1A;
    margin-bottom: 0.4rem;
}

.equipe-intro-block p,
.equipe-intro-block .equipe-intro-text {
    font-size: 0.95rem;
    color: #5A5346;
    line-height: 1.7;
}

/* ── Team member card ──────────────────────────────────────── */
.equipe-content {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 1.5rem;
    font-family: 'Geist Mono', 'Courier New', monospace;
    font-size: clamp(0.875rem, 1.4vw, 1rem);
    line-height: 1.8;
    color: #2C2A26;
}

.equipe-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
}

.equipe-card--reverse {
    flex-direction: row-reverse;
}

.equipe-card__image {
    flex: 0 0 38%;
    max-width: 38%;
}

.equipe-card__image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.equipe-card__text {
    flex: 1;
    min-width: 0;
}

.equipe-card__name {
    font-family: 'Geist Mono', monospace;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #1C1C1A;
    margin-bottom: 0.25rem;
}

.equipe-card__title {
    font-style: italic;
    color: #8B6914;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.equipe-card__description {
    font-size: clamp(0.875rem, 1.4vw, 1rem);
    line-height: 1.8;
    color: #2C2A26;
}

@media (max-width: 768px) {
    .equipe-card,
    .equipe-card--reverse {
        flex-direction: column;
    }

    .equipe-card__image {
        flex: 0 0 auto;
        max-width: 100%;
        width: 100%;
    }
}
