/* =====================================================
   Fun & Calm – Univers Cards  |  fcuc-style.css
   ===================================================== */

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

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

.fcuc-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;
    text-align: center;
}

.fcuc-intro {
    font-size: 16px;
    color: #7A6F68;
    line-height: 1.85;
    font-weight: 300;
    max-width: 680px;
    margin: 0 auto 40px;
    text-align: center;
}

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

/* ── Grille ── */
.fcuc-grid {
    display: grid;
    gap: 20px;
}

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

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

.fcuc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(44, 36, 32, .1);
}

/* ── En-tête coloré ── */
.fcuc-head {
    position: relative;
    overflow: hidden;
}

.fcuc-head::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    pointer-events: none;
}

/* Image de l'en-tête */
.fcuc-img-wrap {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.fcuc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform .4s ease;
}

.fcuc-card:hover .fcuc-img-wrap img {
    transform: scale(1.04);
}

/* Contenu de l'en-tête */
.fcuc-head-content {
    padding: 24px 28px 22px;
    position: relative;
    z-index: 1;
}

.fcuc-ico {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
    line-height: 1.2;
}

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

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

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

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

.fcuc-link {
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: gap .2s;
    margin-top: auto;
}

.fcuc-card:hover .fcuc-link { gap: 9px; }

/* ── Responsive ── */
@media (max-width: 860px) {
    .fcuc-wrap { padding: 56px 28px; }
    .fcuc-cols-2,
    .fcuc-cols-3,
    .fcuc-cols-4 { grid-template-columns: 1fr; gap: 16px; }
    .fcuc-head-content { padding: 20px 24px 18px; }
}
