/* =====================================================
   Fun & Calm – Notre Approche  |  fcap2-style.css
   ===================================================== */

.fcap2-wrap {
    padding: 64px 48px;
    font-family: 'Mulish', sans-serif;
    background: #EFE9E0;
    box-sizing: border-box;
}

.fcap2-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    color: #A89F98;
    margin: 0 0 12px;
    text-align: center;
}

.fcap2-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 500;
    color: #2C2420;
    text-align: center;
    line-height: 1.15;
    margin: 0 0 12px;
}

.fcap2-intro {
    font-size: 15px;
    color: #7A6F68;
    font-weight: 300;
    line-height: 1.8;
    text-align: center;
    max-width: 580px;
    margin: 0 auto 48px;
}

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

/* ── Grille ── */
.fcap2-grid {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
}

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

/* ── Carte ── */
.fcap2-card {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #DDD5C8;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-sizing: border-box;
}

.fcap2-card.fcap2-hover {
    transition: transform .2s, box-shadow .2s;
}

.fcap2-card.fcap2-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(44, 36, 32, .07);
}

.fcap2-ico-wrap {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    line-height: 1;
}

.fcap2-card-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16px;
    font-weight: 500;
    color: #2C2420;
    line-height: 1.3;
    margin: 0;
}

.fcap2-card-body {
    font-size: 13px;
    color: #7A6F68;
    line-height: 1.75;
    font-weight: 300;
    margin: 0;
    flex: 1;
}

.fcap2-card-body strong { color: #2C2420; font-weight: 600; }

/* ── Footer ── */
.fcap2-footer {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #DDD5C8;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    box-sizing: border-box;
}

.fcap2-footer p {
    font-size: 14px;
    color: #7A6F68;
    font-weight: 300;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.fcap2-footer p strong { color: #2C2420; font-weight: 600; }

.fcap2-footer-btn {
    display: inline-block;
    background: #3d7080;
    color: #fff !important;
    font-family: 'Mulish', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 40px;
    text-decoration: none;
    white-space: nowrap;
    transition: background .2s;
    flex-shrink: 0;
    line-height: 1;
}

.fcap2-footer-btn:hover { background: #2C2420; }

/* ── Responsive ── */
@media (max-width: 860px) {
    .fcap2-wrap { padding: 48px 24px; }
    .fcap2-cols-3,
    .fcap2-cols-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px) {
    .fcap2-cols-2,
    .fcap2-cols-3,
    .fcap2-cols-4 { grid-template-columns: 1fr; }
    .fcap2-footer { flex-direction: column; align-items: flex-start; }
}
