
:root {
    --gl-accent:      #555E03;   /* olive, repris de tes titres .bt3 */
    --gl-accent-soft: #f6f7ec;   /* fond très clair dérivé de l'accent */
    --gl-line:        #dcdcd2;   /* filets et bordures */
    --gl-mute:        #6b6b6b;   /* texte secondaire */
    --gl-radius:      6px;
}


/* ==========================================================================
   1. LIGNE DE MISE À JOUR   .gl-maj
   À placer juste sous le H1. Signal de fraîcheur pour Google et les IA.

   <p class="gl-maj">Mis à jour le 26 août 2026 &middot;
      Rédigé par des propriétaires de gîtes, membres de Gîte et Bien</p>
   ========================================================================== */

.gl-maj {
    text-align: center;
    font-size: 0.9em;
    color: var(--gl-mute);
    margin: -10px 0 35px 0;
    letter-spacing: 0.02em;
}


/* ==========================================================================
   2. FRISE D'ÉCHÉANCES   .gl-jalons
   Liste ordonnée : la numérotation vient du compteur CSS, pas du HTML.

   <ol class="gl-jalons">
     <li>
       <span class="gl-jalon-date">1er septembre 2026</span>
       <span class="gl-jalon-txt">Vous devez pouvoir recevoir…</span>
     </li>
   </ol>
   ========================================================================== */

.gl-jalons {
    list-style: none;
    counter-reset: gl-jalon;
    margin: 35px 0;
    padding: 0 0 0 58px;
    border-left: 2px solid var(--gl-line);
}

.gl-jalons > li {
    counter-increment: gl-jalon;
    position: relative;
    padding-bottom: 30px;
}

.gl-jalons > li:last-child {
    padding-bottom: 0;
}

.gl-jalons > li::before {
    content: counter(gl-jalon);
    position: absolute;
    left: -76px;
    top: 0;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--gl-accent);
    color: #fff;
    font-weight: 700;
    font-size: 1.05em;
}

.gl-jalon-date {
    display: block;
    font-weight: 700;
    color: var(--gl-accent);
    font-size: 1.15em;
    line-height: 36px;
    margin-bottom: 4px;
}

.gl-jalon-txt {
    display: block;
}

@media screen and (max-width: 600px) {

    .gl-jalons {
        padding-left: 46px;
    }

    .gl-jalons > li::before {
        left: -62px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 0.95em;
    }

    .gl-jalon-date {
        line-height: 30px;
    }
}

.gl-check {
    list-style: none;
    margin: 35px 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.gl-check > li {
    background-color: var(--gl-accent-soft);
    border: 1px solid var(--gl-line);
    border-left: 4px solid var(--gl-accent);
    border-radius: var(--gl-radius);
    padding: 16px 18px 16px 44px;
    position: relative;
}

.gl-check > li::before {
    content: "✓";
    position: absolute;
    left: 16px;
    top: 15px;
    color: var(--gl-accent);
    font-weight: 700;
    font-size: 1.15em;
    line-height: 1.3;
}

.gl-check-t {
    display: block;
    font-weight: 700;
    color: var(--gl-accent);
    margin-bottom: 4px;
}

.gl-check-d {
    display: block;
    font-size: 0.95em;
}

.gl-tab {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    font-size: 0.97em;
}

.gl-tab thead th {
    background-color: var(--gl-accent);
    color: #fff;
    text-align: left;
    font-weight: 600;
    padding: 12px 14px;
    border: 1px solid var(--gl-accent);
}

.gl-tab td {
    padding: 12px 14px;
    border: 1px solid var(--gl-line);
    vertical-align: top;
}

.gl-tab tbody tr:nth-child(even) td {
    background-color: var(--gl-accent-soft);
}

.gl-tab td strong {
    color: var(--gl-accent);
}

@media screen and (max-width: 680px) {

    .gl-tab thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
    }

    .gl-tab,
    .gl-tab tbody,
    .gl-tab tr,
    .gl-tab td {
        display: block;
        width: 100%;
    }

    .gl-tab tr {
        margin-bottom: 18px;
        border: 1px solid var(--gl-line);
        border-left: 4px solid var(--gl-accent);
        border-radius: var(--gl-radius);
        overflow: hidden;
    }

    .gl-tab td {
        border: none;
        border-bottom: 1px solid #ececec;
        padding: 11px 14px;
    }

    .gl-tab tbody tr:nth-child(even) td {
        background-color: transparent;
    }

    .gl-tab td:last-child {
        border-bottom: none;
    }

    .gl-tab td::before {
        content: attr(data-th);
        display: block;
        font-weight: 700;
        font-size: 0.8em;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--gl-accent);
        margin-bottom: 3px;
    }
}


@media print {

    .gl-tab thead th {
        background-color: transparent;
        color: #000;
        border: 1px solid #000;
    }

    .gl-check > li,
    .gl-jalons > li::before {
        background-color: transparent;
    }

    .gl-check > li {
        border: 1px solid #000;
    }

    .gl-jalons > li::before {
        color: #000;
        border: 1px solid #000;
    }
}

