/* =====================================================
   Fun & Calm – Les Intervenants  |  fciv-intervenants.css
   ===================================================== */

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

/* ── En-tête ── */
.fciv-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: rgba(255, 255, 255, .6);
    margin: 0 0 12px;
}

.fciv-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;
}

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

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

/* ── Grille ── */
.fciv-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 20px;
}

.fciv-cols-1 { grid-template-columns: 1fr; }
.fciv-cols-2 { grid-template-columns: repeat(2, 1fr); }
.fciv-cols-3 { grid-template-columns: repeat(3, 1fr); }
.fciv-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ── Carte intervenant ── */
.fciv-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;
}

.fciv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(44, 36, 32, .15);
}

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

.fciv-avatar {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1;
}

.fciv-info strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2C2420;
    margin-bottom: 3px;
    line-height: 1.3;
}

.fciv-info span {
    font-size: 12px;
    color: #A89F98;
    font-weight: 500;
    line-height: 1.4;
    display: block;
}

/* Tags séjours */
.fciv-sej-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 0 22px 14px;
}

.fciv-sej-tag {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 20px;
    background: #EBF3F6;
    color: #527A87;
    letter-spacing: .3px;
    line-height: 1.4;
}

/* Toggle */
.fciv-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;
}

.fciv-toggle:hover { background: #EBF3F6; }

.fciv-toggle-ico {
    font-size: 13px;
    transition: transform .3s;
    display: inline-block;
    line-height: 1;
}

.fciv-card.fciv-open .fciv-toggle-ico { transform: rotate(180deg); }

/* Détail accordion */
.fciv-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;
}

.fciv-card.fciv-open .fciv-detail {
    max-height: 500px;
    padding: 12px 22px 18px;
}

.fciv-detail p { margin: 0 0 10px; }
.fciv-detail p:last-child { margin-bottom: 0; }

/* Mots-clés */
.fciv-mots {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.fciv-mot {
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 20px;
    background: #EFE9E0;
    color: #7A6F68;
    font-weight: 500;
}

/* Lien */
.fciv-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #527A87;
    text-decoration: none;
}

.fciv-link:hover { text-decoration: underline; }

/* ── CTA bas ── */
.fciv-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;
}

.fciv-cta p {
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.fciv-cta p strong { color: #fff; font-weight: 600; }

.fciv-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;
}

.fciv-cta-btn:hover {
    background: #2C2420;
    color: #fff !important;
}

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