/* =====================================================
   Fun & Calm – Autres Univers  |  fcau-autres.css
   ===================================================== */

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

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

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

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

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

/* ── Grille ── */
.fcau-grid {
    display: grid;
    gap: 16px;
}

.fcau-cols-1 { grid-template-columns: 1fr; }
.fcau-cols-2 { grid-template-columns: 1fr 1fr; }
.fcau-cols-3 { grid-template-columns: repeat(3, 1fr); }

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

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

/* En-tête coloré */
.fcau-head {
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-sizing: border-box;
}

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

.fcau-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 21px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 3px;
    line-height: 1.15;
}

.fcau-cible {
    font-size: 12px;
    color: rgba(255, 255, 255, .72);
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

/* Corps blanc */
.fcau-body {
    background: #fff;
    padding: 18px 24px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    box-sizing: border-box;
}

.fcau-desc {
    font-size: 13px;
    color: #7A6F68;
    line-height: 1.65;
    flex: 1;
    font-weight: 300;
    margin: 0;
}

.fcau-lien {
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity .2s;
}

.fcau-card:hover .fcau-lien { opacity: .7; }

/* ── Responsive ── */
@media (max-width: 640px) {
    .fcau-autres { padding: 56px 24px; }
    .fcau-cols-2,
    .fcau-cols-3 { grid-template-columns: 1fr; }
}
