/* =====================================================
   Fun & Calm – Sur Mesure  |  fcsm-style.css
   ===================================================== */

.fcsm-wrap {
    padding: 72px 48px;
    font-family: 'Mulish', sans-serif;
    background: #fff;
    box-sizing: border-box;
}

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

.fcsm-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 500;
    color: #2C2420;
    line-height: 1.15;
    margin: 0 0 12px;
}

.fcsm-intro {
    font-size: 16px;
    color: #7A6F68;
    line-height: 1.85;
    font-weight: 300;
    max-width: 620px;
    margin: 0 0 40px;
}

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

/* ── Cartes empilées ── */
.fcsm-cards {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #DDD5C8;
    overflow: hidden;
}

/* ── Carte individuelle ── */
.fcsm-card {
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    box-sizing: border-box;
    transition: background .2s;
}

.fcsm-card:hover { background: #FAFAF8; }

/* Colonne texte (gauche, flex 1) */
.fcsm-card-left {
    flex: 1;
    min-width: 0;
}

/* Colonne bouton(s) (droite, fixe) */
.fcsm-card-right {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

/* Séparateur entre les 2 cartes */
.fcsm-divider {
    height: 1px;
    background: #DDD5C8;
    margin: 0 32px;
}

/* Emoji */
.fcsm-ico {
    font-size: 26px;
    display: block;
    margin-bottom: 10px;
    line-height: 1.2;
}

.fcsm-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #2C2420;
    margin: 0 0 8px;
    line-height: 1.3;
}

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

.fcsm-card-body strong { color: #2C2420; font-weight: 600; }

/* ── Bouton carte 1 (Lieu d'être) ── */
.fcsm-card-btn {
    display: inline-block;
    font-family: 'Mulish', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 40px;
    color: #fff !important;
    text-decoration: none;
    white-space: nowrap;
    transition: opacity .2s;
    line-height: 1;
}

.fcsm-card-btn:hover { opacity: .82; }

/* ── Boutons univers (carte 2) ── */
.fcsm-univers-btns {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
}

.fcsm-univ-btn {
    display: block;
    font-family: 'Mulish', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 40px;
    color: #fff !important;
    text-decoration: none;
    white-space: nowrap;
    text-align: center;
    transition: opacity .2s;
    line-height: 1;
}

.fcsm-univ-btn:hover { opacity: .82; }

/* ── CTA bas ── */
.fcsm-cta {
    text-align: center;
    margin-top: 32px;
}

.fcsm-cta-btn {
    display: inline-block;
    background: #C4856A;
    color: #fff !important;
    font-family: 'Mulish', sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 13px 32px;
    border-radius: 40px;
    text-decoration: none;
    transition: background .2s;
    line-height: 1;
}

.fcsm-cta-btn:hover { background: #8A5040; }

.fcsm-cta p {
    margin: 10px 0 0;
    font-size: 13px;
    color: #A89F98;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .fcsm-wrap   { padding: 56px 24px; }
    .fcsm-card   { flex-direction: column; align-items: flex-start; gap: 18px; }
    .fcsm-card-right { align-items: flex-start; width: 100%; }
    .fcsm-univers-btns { flex-direction: row; flex-wrap: wrap; }
    .fcsm-divider { margin: 0 20px; }
}
