/* ==========================================================================
   Bâti ASC — styles des blocs éditoriaux SEO / GEO
   H1, chapô, fil d'Ariane, FAQ, méthode, zone d'intervention.
   ========================================================================== */

/* ------------------------------------------------------------ intro / H1 */
.story-text.seo-intro {
    max-width: 940px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: left;
}

.seo-fil {
    font-size: 13px;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 22px;
}

.seo-fil a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
}

.seo-fil a:hover {
    color: #fff;
}

.seo-fil span[aria-current] {
    color: #c8a97e;
}

h1.seo-h1 {
    font-size: 40px;
    line-height: 1.18;
    letter-spacing: .01em;
    margin: 0 0 22px;
    color: inherit;
}

p.seo-chapo {
    font-size: 19px;
    line-height: 1.65;
    font-weight: 300;
    margin: 0;
    color: inherit;
}

/* bandeau de preuves (accueil) */
ul.seo-preuves {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 30px;
    margin: 30px 0 0;
    padding: 0;
    font-size: 15px;
    line-height: 1.4;
}

ul.seo-preuves li {
    position: relative;
    padding-left: 20px;
}

ul.seo-preuves li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #c8a97e;
}

/* ------------------------------------------------------- bloc éditorial */
.seo-bloc {
    background: #fbfaf8;
    border-top: 1px solid #eeebe6;
    padding: 70px 20px;
}

.seo-bloc-inner {
    max-width: 900px;
    margin: 0 auto;
}

.seo-bloc h2 {
    font-size: 26px;
    line-height: 1.3;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: #1c1c1c;
    margin: 0 0 8px;
}

.seo-bloc h2::after {
    content: "";
    display: block;
    width: 46px;
    height: 2px;
    background: #c8a97e;
    margin: 14px 0 30px;
}

.seo-bloc h2 + .seo-faq,
.seo-bloc h2 + .seo-methode {
    margin-top: 0;
}

.seo-bloc p {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
}

/* --------------------------------------------------------------- FAQ */
.seo-faq {
    border-top: 1px solid #e7e3dd;
    margin-bottom: 50px;
}

.seo-faq details {
    border-bottom: 1px solid #e7e3dd;
}

.seo-faq summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 44px 20px 0;
    position: relative;
}

.seo-faq summary::-webkit-details-marker {
    display: none;
}

.seo-faq summary h3 {
    display: inline;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    color: #1c1c1c;
    margin: 0;
}

.seo-faq summary::after {
    content: "";
    position: absolute;
    right: 8px;
    top: 50%;
    width: 11px;
    height: 11px;
    margin-top: -8px;
    border-right: 2px solid #b09a76;
    border-bottom: 2px solid #b09a76;
    transform: rotate(45deg);
    transition: transform .25s ease;
}

.seo-faq details[open] summary::after {
    transform: rotate(-135deg);
    margin-top: -3px;
}

.seo-faq summary:hover h3 {
    color: #a8894f;
}

.seo-faq-reponse {
    padding: 0 44px 24px 0;
}

.seo-faq-reponse p {
    margin: 0;
    font-size: 16px;
    line-height: 1.75;
    color: #4a4a4a;
}

.seo-faq-reponse strong {
    color: #1c1c1c;
    font-weight: 600;
}

/* ----------------------------------------------------------- méthode */
ol.seo-methode {
    list-style: none;
    counter-reset: etape;
    margin: 0 0 50px;
    padding: 0;
}

ol.seo-methode li {
    display: block;
    padding: 0 0 22px 0;
    margin-bottom: 22px;
    border-bottom: 1px solid #e7e3dd;
}

ol.seo-methode li:last-child {
    border-bottom: none;
}

ol.seo-methode strong {
    display: block;
    font-size: 17px;
    color: #1c1c1c;
    margin-bottom: 6px;
}

ol.seo-methode span {
    display: block;
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

/* --------------------------------------------------- zone d'intervention */
.seo-zones {
    font-size: 16px;
    line-height: 1.9;
    color: #4a4a4a;
}

.seo-contact-inline {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid #e7e3dd;
    font-size: 16px;
}

.seo-contact-inline a {
    color: #a8894f;
    font-weight: 500;
    border-bottom: 1px solid rgba(168, 137, 79, .4);
    text-decoration: none;
}

.seo-contact-inline a:hover {
    color: #1c1c1c;
    border-bottom-color: #1c1c1c;
}

/* -------------------------------------------------------------- mobile */
@media (max-width: 767px) {
    h1.seo-h1 {
        font-size: 27px;
    }

    p.seo-chapo {
        font-size: 17px;
    }

    ul.seo-preuves {
        gap: 10px 20px;
        font-size: 14px;
    }

    .seo-bloc {
        padding: 45px 18px;
    }

    .seo-bloc h2 {
        font-size: 21px;
    }

    .seo-faq summary h3 {
        font-size: 16px;
    }
}
