/* =====================================================
   Fun & Calm – Multi-Rôles Carrousel  |  fcmr-style.css
   ===================================================== */

.fcmr-wrap {
    padding: 56px 32px 48px;
    font-family: 'Mulish', sans-serif;
    background: #EFE9E0;
    box-sizing: border-box;
}

.fcmr-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: #A89F98;
    margin: 0 0 10px;
    text-align: center;
}

.fcmr-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 500;
    color: #2C2420;
    text-align: center;
    margin: 0 0 12px;
    line-height: 1.15;
}

.fcmr-intro {
    font-size: 14px;
    color: #7A6F68;
    line-height: 1.8;
    font-weight: 300;
    max-width: 620px;
    margin: 0 auto 44px;
    text-align: center;
}

.fcmr-intro strong { color: #2C2420; font-weight: 600; }

/* ── Carte ── */
.fcmr-card {
    background: #fff;
    border-radius: 22px;
    border: 1px solid #DDD5C8;
    overflow: hidden;
    max-width: 820px;
    margin: 0 auto;
}

.fcmr-card-header {
    background: #F5EFE6;
    padding: 20px 32px;
    border-bottom: 1px solid #DDD5C8;
    text-align: center;
}

.fcmr-card-header strong {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 500;
    color: #2C2420;
    margin-bottom: 4px;
}

.fcmr-card-header p {
    font-size: 13px;
    color: #7A6F68;
    font-weight: 300;
    line-height: 1.6;
    margin: 0;
}

/* ── Carrousel ── */
.fcmr-carousel { position: relative; overflow: hidden; }

.fcmr-track {
    display: flex;
    transition: transform .45s cubic-bezier(.4, 0, .2, 1);
}

.fcmr-slide {
    min-width: 100%;
    padding: 36px 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    box-sizing: border-box;
}

/* ── Épingle ── */
.fcmr-pin {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.fcmr-pin-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #7FA6B1;
    flex-shrink: 0;
}

.fcmr-pin-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.fcmr-pin-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 36px;
    font-weight: 500;
    color: #fff;
    background: #7FA6B1;
}

/* Pointe triangulaire */
.fcmr-pin-tip {
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 24px solid #7FA6B1;
    margin-top: -4px;
}

/* Couleurs par univers (overridées par selectors Elementor aussi) */
.fcmr-fc  .fcmr-pin-circle   { border-color: #7FA6B1; }
.fcmr-fc  .fcmr-pin-initials { background: #7FA6B1; }
.fcmr-fc  .fcmr-pin-tip      { border-top-color: #7FA6B1; }

.fcmr-eng .fcmr-pin-circle   { border-color: #8AAB8A; }
.fcmr-eng .fcmr-pin-initials { background: #8AAB8A; }
.fcmr-eng .fcmr-pin-tip      { border-top-color: #8AAB8A; }

.fcmr-biz .fcmr-pin-circle   { border-color: #C4856A; }
.fcmr-biz .fcmr-pin-initials { background: #C4856A; }
.fcmr-biz .fcmr-pin-tip      { border-top-color: #C4856A; }

/* ── Texte slide ── */
.fcmr-slide-text {
    text-align: center;
    max-width: 500px;
}

.fcmr-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: .3px;
    line-height: 1.4;
}

.fcmr-role-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    color: #2C2420;
    margin: 0 0 12px;
    line-height: 1.2;
}

.fcmr-role-body {
    font-size: 14px;
    color: #7A6F68;
    line-height: 1.75;
    font-weight: 300;
    margin: 0;
}

.fcmr-role-body strong { color: #2C2420; font-weight: 600; }

/* ── Contrôles ── */
.fcmr-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0 24px 24px;
}

.fcmr-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #DDD5C8;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #7A6F68;
    transition: border-color .2s, color .2s;
    flex-shrink: 0;
    line-height: 1;
}

.fcmr-nav:hover { border-color: #7FA6B1; color: #7FA6B1; }

.fcmr-dots { display: flex; gap: 8px; }

.fcmr-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #DDD5C8;
    cursor: pointer;
    transition: background .2s, transform .2s;
}

.fcmr-dot.fcmr-active {
    background: #7FA6B1;
    transform: scale(1.35);
}

/* ── Conclusion ── */
.fcmr-conclusion {
    padding: 18px 28px;
    background: #F8EDE8;
    border-top: 1px solid rgba(196, 133, 106, .2);
    text-align: center;
}

.fcmr-conclusion p {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    color: #8A5040;
    line-height: 1.65;
    font-style: italic;
    font-weight: 400;
    max-width: 560px;
    margin: 0 auto;
}

.fcmr-conclusion p strong { font-style: normal; font-weight: 600; }

/* ── Responsive ── */
@media (max-width: 640px) {
    .fcmr-wrap  { padding: 40px 20px 36px; }
    .fcmr-slide { padding: 28px 20px 22px; }
    .fcmr-pin-circle { width: 86px; height: 86px; }
    .fcmr-pin-initials { font-size: 28px; }
}
