/* =====================================================
   Fun & Calm – RV Comment ça Marche  |  fcrv3-rv3.css
   Layout : cartes empilées, en-tête alternés G puis D
   ===================================================== */

.fcrv3-rv3 {
    padding: 72px 48px;
    font-family: 'Mulish', sans-serif;
    background: #EFE9E0;
    box-sizing: border-box;
}

/* ── En-tête section ── */
.fcrv3-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: #9A6E1E;
    margin: 0 0 12px;
}

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

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

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

/* ── Pile de cartes ── */
.fcrv3-stack {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* ── Carte ── */
.fcrv3-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #DDD5C8;
    max-width: 580px;
    box-sizing: border-box;
}

/* Carte impaire → collée à gauche */
.fcrv3-card-left  {
    align-self: flex-start;
    margin-left: 0;
}

/* Carte paire → décalée à droite */
.fcrv3-card-right {
    align-self: flex-end;
    margin-right: 0;
}

/* ── Bloc en-tête coloré ── */
.fcrv3-head-wrap {
    /* sert juste à porter l'alignement si besoin */
}

.fcrv3-head {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* En-tête gauche : coins ronds en haut */
.fcrv3-card-left .fcrv3-head {
    border-radius: 0;
}

/* En-tête droite : idem */
.fcrv3-card-right .fcrv3-head {
    border-radius: 0;
}

.fcrv3-head-ico {
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1;
}

.fcrv3-head-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 19px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 2px;
    line-height: 1.2;
}

.fcrv3-head-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, .75);
    font-weight: 400;
    margin: 0;
}

/* ── Corps ── */
.fcrv3-body {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-sizing: border-box;
}

.fcrv3-desc {
    font-size: 13px;
    color: #7A6F68;
    line-height: 1.75;
    font-weight: 300;
    margin: 0;
}

.fcrv3-desc strong { color: #2C2420; font-weight: 600; }

/* ── Étapes ── */
.fcrv3-steps {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.fcrv3-step {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #7A6F68;
    line-height: 1.55;
}

.fcrv3-arrow {
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Pied de carte ── */
.fcrv3-foot {
    padding-top: 14px;
    border-top: 1px solid #F0E8D8;
    margin-top: auto;
}

.fcrv3-foot-note {
    font-size: 12px;
    font-weight: 300;
    margin: 0 0 8px;
    line-height: 1.5;
}

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

.fcrv3-btn:hover { opacity: .85; }

.fcrv3-btn-full {
    display: block;
    text-align: center;
    box-sizing: border-box;
    width: 100%;
}

/* ── Responsive ── */
@media (max-width: 680px) {
    .fcrv3-rv3  { padding: 56px 24px; }
    .fcrv3-card {
        max-width: 100% !important;
        align-self: stretch !important;
    }
}
