/* =====================================================
   Fun & Calm – Qui Anime  |  fcqi-qui.css
   ===================================================== */

.fcqi-qui {
    padding: 72px 48px;
    font-family: 'Mulish', sans-serif;
    background: #D8A94C;
    box-sizing: border-box;
}

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

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

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

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

/* ── Grille photo + bio ── */
.fcqi-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 40px;
}

/* ── Photo ── */
.fcqi-img-wrap {
    background: rgba(255, 255, 255, .15);
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 3/4;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .25);
}

.fcqi-img-wrap svg  { width: 80%; }

.fcqi-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* ── Bio ── */
.fcqi-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, .3);
}

.fcqi-body {
    font-size: 15px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.85;
    font-weight: 300;
    margin: 0 0 16px;
}

.fcqi-body strong { color: #fff; font-weight: 600; }

.fcqi-cite {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(15px, 1.8vw, 20px);
    color: #fff;
    line-height: 1.5;
    font-style: italic;
    font-weight: 500;
    padding-left: 20px;
    border-left: 3px solid rgba(255, 255, 255, .5);
    margin: 20px 0;
}

/* Mots-clés */
.fcqi-mots {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 16px 0 20px;
}

.fcqi-mot {
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .2);
    color: #fff;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, .25);
}

/* Partenaires */
.fcqi-part-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    font-weight: 600;
    letter-spacing: .5px;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.fcqi-partenaires {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fcqi-partenaire {
    background: rgba(255, 255, 255, .18);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
}

/* ── Séparateur ── */
.fcqi-sep {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .2);
    margin: 40px 0;
}

/* ── Intervenants ── */
.fcqi-interv-titre {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 16px;
}

.fcqi-interv-grid {
    display: grid;
    gap: 14px;
}

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

.fcqi-interv-card {
    background: rgba(255, 255, 255, .95);
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .3);
    transition: transform .25s;
    box-sizing: border-box;
}

.fcqi-interv-card:hover { transform: translateY(-3px); }

.fcqi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.fcqi-interv-name {
    font-size: 14px;
    font-weight: 600;
    color: #2C2420;
    margin: 0 0 3px;
    line-height: 1.3;
}

.fcqi-interv-role {
    font-size: 11px;
    color: #A89F98;
    font-weight: 500;
    margin: 0 0 8px;
}

.fcqi-interv-body {
    font-size: 12px;
    color: #7A6F68;
    line-height: 1.65;
    margin: 0;
}

.fcqi-interv-body strong { color: #2C2420; font-weight: 600; }

/* ── CTA ── */
.fcqi-cta {
    margin-top: 16px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    border-radius: 14px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    box-sizing: border-box;
}

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

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

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

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

/* ── Responsive ── */
@media (max-width: 860px) {
    .fcqi-qui          { padding: 56px 24px; }
    .fcqi-grid         { grid-template-columns: 1fr; gap: 32px; }
    .fcqi-img-wrap     { display: none; }
    .fcqi-interv-grid  { grid-template-columns: 1fr !important; }
    .fcqi-cta          { flex-direction: column; }
}
