/* =====================================================
   Fun & Calm – Lien Avec  |  fclv-lienavec.css
   ===================================================== */

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

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

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

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

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

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

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

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

/* ── En-tête carte (coloré) ── */
.fclv-head {
    padding: 28px 28px 22px;
    box-sizing: border-box;
}

.fclv-head-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.fclv-ico {
    font-size: 28px;
    flex-shrink: 0;
    line-height: 1;
}

.fclv-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    line-height: 1.1;
}

.fclv-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
    font-style: italic;
    font-weight: 300;
    line-height: 1.5;
    margin: 0 0 16px;
}

.fclv-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .8);
    line-height: 1.75;
    font-weight: 300;
    margin: 0;
}

.fclv-desc strong {
    color: #fff;
    font-weight: 600;
}

/* ── Liste exemples ── */
.fclv-exemples {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 14px;
}

.fclv-exemple {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, .75);
    font-weight: 400;
    line-height: 1.4;
}

.fclv-exemple::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .5);
    flex-shrink: 0;
}

/* ── Pied de carte ── */
.fclv-footer {
    background: #fff;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    box-sizing: border-box;
}

.fclv-footer-label {
    font-size: 12px;
    color: #7A6F68;
    font-weight: 300;
    line-height: 1.5;
    margin: 0;
}

.fclv-btn {
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 40px;
    white-space: nowrap;
    transition: opacity .2s;
    color: #fff !important;
    flex-shrink: 0;
    font-family: 'Mulish', sans-serif;
    line-height: 1;
}

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

/* ── Bandeau bas ── */
.fclv-bandeau {
    margin-top: 20px;
    background: #F7F3EE;
    border-radius: 16px;
    border: 1px solid #DDD5C8;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-sizing: border-box;
}

.fclv-bandeau-ico {
    font-size: 22px;
    flex-shrink: 0;
    line-height: 1;
}

.fclv-bandeau p {
    font-size: 14px;
    color: #7A6F68;
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

.fclv-bandeau p strong {
    color: #2C2420;
    font-weight: 600;
}

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