/* =====================================================
   Fun & Calm – Ressourcevie Univers  |  fcrv-rv2.css
   ===================================================== */

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

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

.fcrv-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 14px;
}

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

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

/* ── Grille ── */
.fcrv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ── Carte ── */
.fcrv-card {
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    border: 1px solid #DDD5C8;
    transition: transform .3s, box-shadow .3s;
    background: #fff;
}

.fcrv-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 40px rgba(44, 36, 32, .1);
}

/* ── En-tête carte ── */
.fcrv-head {
    padding: 32px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;
}

.fcrv-ico {
    font-size: 34px;
    line-height: 1;
}

.fcrv-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(24px, 2.8vw, 34px);
    font-weight: 500;
    color: #fff;
    line-height: 1.1;
    margin: 0;
}

.fcrv-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, .78);
    font-style: italic;
    line-height: 1.5;
    margin: 0;
}

/* ── Chips ── */
.fcrv-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 2px;
}

.fcrv-chip {
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .92);
    border: 1px solid rgba(255, 255, 255, .22);
    line-height: 1.4;
}

/* ── Corps carte ── */
.fcrv-body {
    background: #fff;
    padding: 22px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-sizing: border-box;
}

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

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

/* ── Points ── */
.fcrv-points {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.fcrv-point {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: #7A6F68;
    line-height: 1.55;
}

.fcrv-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

/* ── Footer carte ── */
.fcrv-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #F0E8D8;
    margin-top: auto;
}

/* ── Badges ── */
.fcrv-badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.fcrv-badge-gratuit {
    background: #E8F5E9;
    color: #2E7D32;
}

.fcrv-badge-bientot {
    background: #EBF3F6;
    color: #527A87;
}

/* ── Lien ── */
.fcrv-lien {
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: gap .2s;
    white-space: nowrap;
}

.fcrv-card:hover .fcrv-lien {
    gap: 9px;
}

/* ── Responsive ── */
@media (max-width: 680px) {
    .fcrv-rv2  { padding: 56px 24px; }
    .fcrv-grid { grid-template-columns: 1fr; }
}
