/* =====================================================
   Fun & Calm – Culturovie  |  fccv-culturovie.css
   ===================================================== */

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

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

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

.fccv-intro {
    font-size: 16px;
    color: #7A6F68;
    line-height: 1.85;
    font-weight: 300;
    max-width: 660px;
    margin: 0 0 28px;
}

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

/* ── Bloc définition ── */
.fccv-def {
    border-radius: 16px;
    padding: 28px 32px;
    margin-bottom: 32px;
    box-sizing: border-box;
}

.fccv-def-label {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65);
    font-weight: 600;
    margin: 0 0 8px;
}

.fccv-def-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.2;
}

.fccv-def-text,
.fccv-def-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, .88);
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
}

.fccv-def-text strong { color: #fff; font-weight: 600; }

/* ── Corps ── */
.fccv-body,
.fccv-body p {
    font-size: 16px;
    color: #7A6F68;
    line-height: 1.85;
    font-weight: 300;
    max-width: 680px;
    margin: 0 0 16px;
}

.fccv-body strong { color: #2C2420; font-weight: 600; }
.fccv-body em     { font-style: italic; }

/* ── Grille ressources ── */
.fccv-ressources {
    display: grid;
    gap: 12px;
    margin-top: 32px;
}

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

.fccv-ressource {
    background: #F7F3EE;
    border-radius: 14px;
    padding: 18px 14px;
    border: 1px solid #DDD5C8;
    text-align: center;
    transition: border-color .2s, transform .2s;
    box-sizing: border-box;
}

.fccv-ressource:hover {
    border-color: #D8A94C;
    transform: translateY(-2px);
}

.fccv-ressource-ico {
    font-size: 26px;
    margin-bottom: 8px;
    display: block;
    line-height: 1.2;
}

.fccv-ressource-name {
    font-size: 13px;
    font-weight: 600;
    color: #2C2420;
    margin-bottom: 3px;
    line-height: 1.3;
}

.fccv-ressource-desc {
    font-size: 11px;
    color: #7A6F68;
    line-height: 1.4;
}

/* ── Note moteur ── */
.fccv-moteur {
    margin-top: 24px;
    background: #FDF4E3;
    border-radius: 14px;
    padding: 18px 22px;
    border: 1px solid rgba(216, 169, 76, .2);
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-sizing: border-box;
}

.fccv-moteur-ico {
    font-size: 22px;
    flex-shrink: 0;
    margin-top: 2px;
    line-height: 1;
}

.fccv-moteur-text,
.fccv-moteur-text p {
    font-size: 14px;
    color: #9A6E1E;
    line-height: 1.75;
    font-weight: 300;
    margin: 0;
}

.fccv-moteur-text strong { color: #2C2420; font-weight: 600; }

/* ── Responsive ── */
@media (max-width: 768px) {
    .fccv-cv { padding: 56px 24px; }
    .fccv-cols-4 { grid-template-columns: repeat(2, 1fr); }
    .fccv-cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .fccv-cols-4,
    .fccv-cols-3,
    .fccv-cols-2 { grid-template-columns: 1fr; }
}
