/* =========================
STRUCTURE DES SECTIONS
========================= */

section {
    padding: clamp(2.5rem, 6vw, 4rem) 0;
}

/* Séparation douce entre sections */
section + section {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

ul {
    list-style: none;
}

/* =========================
VARIANTES DE FOND
========================= */

.section-vert {
    background-color: #AEB4A2;
}


/* =========================
BLOC TEXTE CENTRAL
========================= */

section .text-center {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 4vw, 1.5rem);
}

/* =========================
TYPOGRAPHIE RESPONSIVE
========================= */

/* Titres */
section h2 {
    font-size: clamp(1.4rem, 4vw, 2rem);
    margin-bottom: clamp(1rem, 3vw, 1.5rem);
    line-height: 1.3;
}

/* Paragraphes */
section p {
    font-size: clamp(0.95rem, 2.5vw, 1.25rem);
    line-height: 1.7;
    margin-bottom: clamp(0.9rem, 3vw, 1.2rem);
    max-width: 65ch;
    margin-left: auto;
    margin-right: auto;
}

.table {
    background-color: transparent;
    text-align: center;
}

.table th {
    font-weight: 600;
}

.table td {
    font-size: 0.95rem;
}

td:empty {
    background-color: transparent !important;
    border: none;
}

th:empty {
    background-color: transparent !important;
    border: none;
}

/* =========================
IMAGE LOGO BAS DE PAGE
========================= */

img[alt="logo"] {
    display: block;
    margin: clamp(3rem, 8vw, 4rem) 2rem clamp(1.5rem, 4vw, 2rem) auto;
    max-width: clamp(150px, 30vw, 220px);
}

/* =========================
RESPONSIVE
========================= */

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    section .text-center {
        max-width: 100%;
    }
}