/* =====================================================
   Fun & Calm – Formats & Tarifs  |  fcft-formats.css
   ===================================================== */

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

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

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

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

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

/* ── Grille formats ── */
.fcft-grid {
    display: grid;
    gap: 14px;
    margin-bottom: 20px;
}

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

/* ── Carte format ── */
.fcft-card {
    background: #F7F3EE;
    border-radius: 16px;
    border: 1px solid #DDD5C8;
    padding: 24px;
    transition: border-color .2s, transform .2s;
    box-sizing: border-box;
}

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

.fcft-ico {
    font-size: 26px;
    margin-bottom: 12px;
    display: block;
    line-height: 1.2;
}

.fcft-card-title {
    font-size: 15px;
    font-weight: 600;
    color: #2C2420;
    margin: 0 0 8px;
    line-height: 1.3;
}

.fcft-card-body {
    font-size: 13px;
    color: #7A6F68;
    line-height: 1.7;
    margin: 0 0 12px;
}

/* Badges prix */
.fcft-prix {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    line-height: 1.4;
}

.fcft-prix-gratuit { background: #E8F5E9; color: #2E7D32; }
.fcft-prix-devis   { background: #FDF4E3; color: #9A6E1E; }
.fcft-prix-conv    { background: #EBF3F6; color: #527A87; }

/* ── Bloc modalités ── */
.fcft-modalites {
    background: #F7F3EE;
    border-radius: 16px;
    border: 1px solid #DDD5C8;
    padding: 22px 26px;
    margin-bottom: 14px;
    box-sizing: border-box;
}

.fcft-modalites-title {
    font-size: 14px;
    font-weight: 600;
    color: #2C2420;
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.fcft-modalites-grid {
    display: grid;
    gap: 10px;
}

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

.fcft-modalite {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #DDD5C8;
    padding: 12px 14px;
    text-align: center;
    box-sizing: border-box;
}

.fcft-modalite-ico {
    font-size: 20px;
    margin-bottom: 6px;
    display: block;
    line-height: 1.2;
}

.fcft-modalite-label {
    font-size: 12px;
    font-weight: 600;
    color: #2C2420;
    margin: 0 0 2px;
    line-height: 1.3;
}

.fcft-modalite-desc {
    font-size: 11px;
    color: #7A6F68;
    line-height: 1.4;
    margin: 0;
}

/* ── Note bénévole ── */
.fcft-note {
    background: #FDF4E3;
    border-radius: 14px;
    border: 1px solid rgba(216, 169, 76, .25);
    padding: 18px 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    box-sizing: border-box;
}

.fcft-note-ico {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    line-height: 1;
}

.fcft-note p {
    font-size: 14px;
    color: #9A6E1E;
    line-height: 1.75;
    font-weight: 300;
    margin: 0;
}

.fcft-note p strong { color: #2C2420; font-weight: 600; }

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

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