/* =====================================================
   Fun & Calm – Équipe Intervenants  |  fceq-equipe.css
   ===================================================== */

.fceq-section {
    padding: 72px 48px;
    font-family: 'Mulish', sans-serif;
    background: #7FA6B1;
    box-sizing: border-box;
}

.fceq-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255,255,255,.6);
    margin: 0 0 12px;
}

.fceq-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 500;
    color: #fff;
    line-height: 1.15;
    margin: 0 0 10px;
}

.fceq-intro {
    font-size: 15px;
    color: rgba(255,255,255,.75);
    line-height: 1.85;
    font-weight: 300;
    max-width: 580px;
    margin: 0 0 36px;
}

.fceq-intro strong { color: #fff; font-weight: 600; }

/* ── Grille ── */
.fceq-grid { display: grid; gap: 16px; margin-bottom: 20px; }
.fceq-cols-1 { grid-template-columns: 1fr; }
.fceq-cols-2 { grid-template-columns: repeat(2,1fr); }
.fceq-cols-3 { grid-template-columns: repeat(3,1fr); }
.fceq-cols-4 { grid-template-columns: repeat(4,1fr); }

/* ── Carte ── */
.fceq-card {
    background: rgba(255,255,255,.96);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.3);
    transition: transform .25s, box-shadow .25s;
}
.fceq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(44,36,32,.15);
}

/* ── En-tête carte ── */
.fceq-head {
    padding: 20px 22px 14px;
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Avatar — partagé photo + initiale */
.fceq-avatar {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Photo */
.fceq-avatar-photo {
    object-fit: cover;
    object-position: center;
    display: block;
    border: 2px solid rgba(127,166,177,.25);
}

/* Initiale */
.fceq-avatar-initial {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1;
}

.fceq-info strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2C2420;
    margin-bottom: 3px;
    line-height: 1.3;
}
.fceq-info span {
    font-size: 12px;
    color: #A89F98;
    font-weight: 500;
    line-height: 1.4;
    display: block;
}

/* Tags */
.fceq-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0 22px 14px;
}
.fceq-tag {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    background: #EBF3F6;
    color: #527A87;
    letter-spacing: .3px;
}

/* Toggle */
.fceq-toggle {
    width: 100%;
    padding: 11px 22px;
    background: none;
    border: none;
    border-top: 1px solid #EFE9E0;
    font-family: 'Mulish', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #527A87;
    cursor: pointer;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background .2s;
    box-sizing: border-box;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.fceq-toggle:hover { background: #EBF3F6; }

.fceq-toggle-ico {
    font-size: 13px;
    transition: transform .3s;
    display: inline-block;
    line-height: 1;
}
.fceq-card.fceq-open .fceq-toggle-ico { transform: rotate(180deg); }

/* Détail */
.fceq-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .3s;
    font-size: 13px;
    color: #7A6F68;
    line-height: 1.75;
    font-weight: 300;
    padding: 0 22px;
    box-sizing: border-box;
}
.fceq-card.fceq-open .fceq-detail {
    max-height: 500px;
    padding: 12px 22px 18px;
}
.fceq-detail p { margin: 0 0 10px; }
.fceq-detail p:last-child { margin-bottom: 0; }

.fceq-mots { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 10px; }
.fceq-mot {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 20px;
    background: #EFE9E0;
    color: #7A6F68;
    font-weight: 500;
}

.fceq-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #527A87;
    text-decoration: none;
}
.fceq-link:hover { text-decoration: underline; }

/* CTA bas */
.fceq-cta {
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 14px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    box-sizing: border-box;
}
.fceq-cta p { font-size: 14px; color: rgba(255,255,255,.8); font-weight: 300; line-height: 1.6; margin: 0; flex: 1; }
.fceq-cta p strong { color: #fff; font-weight: 600; }

.fceq-cta-btn {
    background: #fff;
    color: #527A87 !important;
    padding: 10px 22px;
    border-radius: 40px;
    font-family: 'Mulish', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s, color .2s;
    flex-shrink: 0;
    line-height: 1;
}
.fceq-cta-btn:hover { background: #2C2420; color: #fff !important; }

/* Responsive */
@media (max-width: 860px) {
    .fceq-section { padding: 56px 24px; }
    .fceq-cols-2, .fceq-cols-3, .fceq-cols-4 { grid-template-columns: 1fr; }
    .fceq-cta { flex-direction: column; }
}
