:root {
    --ink: #101c33;
    --ink-soft: #526078;
    --night: #09172a;

    --blue: #126ba3;
    --blue-dark: #0c3155;
    --focus: #30a9e8;

    --paper: #fbfaf7;
    --white: #ffffff;
    --tint: #eef3f6;

    --line: #d9dee5;
    --line-dark: #cbd2dc;

    --width: 1160px;
    --reading: 760px;

    --radius: 3px;

    --header-height: 66px;
}


/* ============================================================
   BASE
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font:
        1rem/1.6 Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
}

button,
input,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    text-wrap: balance;
}

h1,
h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.045em;
}

h3,
h4 {
    line-height: 1.2;
    letter-spacing: -.02em;
}

:focus-visible {
    outline: 3px solid var(--focus);
    outline-offset: 4px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    z-index: 200;
    top: 1rem;
    left: 1rem;
    padding: .7rem 1rem;
    color: var(--ink);
    background: var(--white);
    transform: translateY(-180%);
}

.skip-link:focus {
    transform: translateY(0);
}

.public-container {
    width: min(calc(100% - 2rem), var(--width));
    margin-inline: auto;
}

.narrow {
    max-width: var(--reading);
    margin-left: max(
        1rem,
        calc((100% - var(--width)) / 2)
    );
}

.eyebrow {
    margin-bottom: .65rem;
    color: var(--blue);
    font-size: .7rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.text-link {
    display: inline-block;
    color: var(--blue-dark);
    font-weight: 750;
    text-underline-offset: .3em;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 45px;
    padding: .68rem 1.1rem;

    color: var(--white);
    background: var(--ink);

    border: 1px solid var(--ink);
    border-radius: var(--radius);

    font-weight: 750;
    text-decoration: none;

    cursor: pointer;

    transition:
        color .15s ease,
        background-color .15s ease,
        border-color .15s ease;
}

.button:hover {
    background: var(--blue-dark);
    border-color: var(--blue-dark);
}

.button-light {
    color: var(--night);
    background: var(--white);
    border-color: var(--white);
}

.button-light:hover {
    color: var(--white);
    background: transparent;
}


/* ============================================================
   HEADER
   ============================================================ */

.public-header {
    position: sticky;
    top: 0;
    z-index: 100;

    color: var(--white);
    background: var(--night);

    border-bottom: 1px solid rgba(255, 255, 255, .13);
    box-shadow: 0 1px 0 rgba(4, 12, 24, .18);
}

.story-sequence[id],
.signal-cover[id] {
    scroll-margin-top: 82px;
}

.header-row {
    min-height: var(--header-height);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 2rem;
}

.brand {
    display: inline-flex;
    align-items: center;

    text-decoration: none;
}

.brand img {
    width: 68px;
    height: 42px;

    object-fit: contain;
}

.public-navigation {
    display: flex;
    align-items: center;

    gap: clamp(1rem, 2vw, 1.8rem);

    font-size: .88rem;
    font-weight: 650;
}

.public-navigation a {
    padding-block: .55rem;

    color: #dce6f1;

    border-bottom: 1px solid transparent;

    text-decoration: none;

    transition:
        color .15s ease,
        border-color .15s ease;
}

.public-navigation a:hover {
    color: var(--white);
    border-bottom-color: #7fc8ef;
}

.public-navigation .nav-support {
    padding: .58rem .9rem;

    color: var(--night);
    background: var(--white);

    border: 1px solid var(--white);
}

.public-navigation .nav-support:hover {
    color: var(--white);
    background: transparent;
}

.menu-toggle {
    display: none;

    width: 44px;
    height: 44px;

    padding: 10px;

    color: var(--white);
    background: transparent;

    border: 0;

    cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
    display: block;

    height: 2px;
    margin: 5px 0;

    background: currentColor;

    transition:
        transform .2s ease,
        opacity .2s ease;
}


/* ============================================================
   HOME — OUVERTURE DE LA QUOTIDIENNE
   ============================================================ */

.edition {
    padding-top: 0;
}

.edition-opening {
    padding-block: 1.05rem .9rem;
}

.edition-masthead {
    display: grid;
    gap: .72rem;
}

.edition-titleline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;

    gap: 2rem;

    align-items: end;
}

.edition-titleline h1 {
    margin: 0;

    font-size: clamp(3.6rem, 6.5vw, 6rem);
    line-height: .86;
    letter-spacing: -.058em;
}

.edition-meta {
    padding-bottom: .35rem;

    text-align: right;
}

.edition-meta time {
    display: block;

    color: var(--ink);

    font:
        600 clamp(1.08rem, 1.55vw, 1.35rem)/1.05
        Georgia,
        "Times New Roman",
        serif;

    letter-spacing: -.015em;
}

.edition-masthead-copy,
.edition-masthead-note {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;

    gap: .25rem 1rem;

    padding: .62rem 0 0;

    color: #748094;

    border-top: 1px solid var(--line);

    font-size: .72rem;
}

.edition-masthead-note p {
    margin: 0;
}

.edition-masthead-note .text-link,
.edition-masthead-copy .text-link {
    margin-left: auto;

    color: var(--ink-soft);

    font-size: .72rem;
    font-weight: 650;

    white-space: nowrap;
}

.edition-tagline {
    max-width: 940px;

    margin: .1rem 0 0;

    color: var(--ink);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.9rem, 3.25vw, 2.75rem);
    font-weight: 500;
    line-height: 1.045;
    letter-spacing: -.038em;
}

.edition-promise-copy {
    max-width: 780px;

    margin: 0;

    color: var(--ink-soft);

    font-size: .92rem;
    line-height: 1.5;
}

.edition-flow {
    padding-bottom: 1.5rem;
}


/* ============================================================
   HOME — STORIES / COVERS
   ============================================================ */

.story-sequence {
    margin: 0;

    padding-block: .7rem 1rem;
}

.story-card {
    overflow: visible;

    background: transparent;

    border: 0;
    border-radius: 0;
}

.story-card-link {
    display: block;

    color: inherit;

    text-decoration: none;
}

.story-cover {
    --cover-glow: rgba(82, 181, 226, .26);

    position: relative;

    min-height: clamp(185px, 17vw, 225px);

    padding: clamp(.95rem, 1.8vw, 1.3rem);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    overflow: hidden;
    isolation: isolate;

    color: var(--white);

    background-color: var(--blue-dark);

    background-image:
        radial-gradient(
            80% 120% at 12% 8%,
            var(--cover-glow),
            transparent 58%
        ),
        radial-gradient(
            65% 90% at 92% 108%,
            rgba(0, 0, 0, .24),
            transparent 62%
        );

    background-position: center;
    background-size: cover;

    text-decoration: none;

    transition: filter .22s ease;
}

.story-sequence-lead .story-cover {
    min-height: clamp(235px, 22vw, 285px);
}

.story-sequence-lead .story-cover::before {
    opacity: .64;
}

.story-cover::before {
    content: "";

    position: absolute;
    z-index: -2;

    inset: -22%;

    opacity: .48;

    transform: rotate(-6deg) scale(1.02);

    background:
        radial-gradient(
            circle at 18% 28%,
            rgba(255, 255, 255, .09),
            transparent 22%
        ),
        linear-gradient(
            122deg,
            transparent 12%,
            rgba(255, 255, 255, .06) 12% 29%,
            transparent 29% 51%,
            rgba(255, 255, 255, .025) 51% 64%,
            transparent 64%
        );

    transition:
        transform .4s cubic-bezier(.2, .65, .25, 1),
        opacity .25s ease;
}

.story-cover::after {
    content: "";

    position: absolute;
    z-index: -1;

    inset: 0;

    pointer-events: none;

    opacity: .07;

    background-image:
        repeating-radial-gradient(
            circle at 0 0,
            rgba(255, 255, 255, .8) 0 1px,
            transparent 1px 4px
        );

    mix-blend-mode: soft-light;
}

.story-cover-shade {
    position: absolute;
    z-index: -1;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(3, 10, 21, .30),
            rgba(3, 10, 21, .05) 34%,
            rgba(3, 10, 21, .80)
        ),
        linear-gradient(
            90deg,
            rgba(3, 10, 21, .18),
            transparent 65%
        );
}


/* ============================================================
   HOME — VARIANTES COVERS
   ============================================================ */

.story-cover-ocean {
    --cover-glow: rgba(59, 165, 201, .32);

    background-color: #10435f;
}

.story-cover-cobalt {
    --cover-glow: rgba(70, 122, 220, .34);

    background-color: #183d78;
}

.story-cover-slate {
    --cover-glow: rgba(148, 170, 198, .25);

    background-color: #34465f;
}

.story-cover-teal {
    --cover-glow: rgba(55, 186, 181, .26);

    background-color: #0e5960;
}

.story-cover-forest {
    --cover-glow: rgba(93, 171, 132, .23);

    background-color: #285445;
}

.story-cover-indigo {
    --cover-glow: rgba(111, 120, 218, .28);

    background-color: #283467;
}

.story-cover-plum {
    --cover-glow: rgba(192, 111, 160, .22);

    background-color: #593950;
}

.story-cover-midnight {
    --cover-glow: rgba(73, 123, 179, .22);

    background-color: #101f37;
}


/* ============================================================
   HOME — KICKER / TITRES COVERS
   ============================================================ */

.story-kicker {
    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: .65rem;

    flex: 0 0 auto;

    font-size: .64rem;
    font-weight: 850;
    letter-spacing: .145em;
    text-transform: uppercase;
}

.story-kicker strong {
    display: grid;
    place-items: center;

    min-width: 31px;
    min-height: 31px;

    border: 1px solid rgba(255, 255, 255, .58);
    border-radius: 50%;

    font-family: Inter, ui-sans-serif, sans-serif;
    font-size: .62rem;
    letter-spacing: .05em;
}

.story-cover h2,
.story-cover h3 {
    position: relative;
    z-index: 2;

    max-width: 820px;

    margin: clamp(1.45rem, 2.8vw, 2.4rem) 0 0;
    padding: 0;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.65rem, 2.65vw, 2.45rem);
    font-weight: 500;
    line-height: 1.01;
    letter-spacing: -.04em;

    text-shadow: 0 2px 18px rgba(0, 0, 0, .3);

    overflow-wrap: anywhere;
}

.story-sequence-lead .story-cover h2,
.story-sequence-lead .story-cover h3 {
    max-width: 900px;

    margin-top: clamp(1.9rem, 3.8vw, 3.25rem);

    font-size: clamp(2rem, 3.45vw, 3.15rem);
}

.story-cover-brand {
    position: absolute;

    right: 1.2rem;
    bottom: .9rem;

    color: rgba(255, 255, 255, .34);

    font-size: .62rem;
    font-weight: 900;
    letter-spacing: .23em;
}

@media (hover: hover) and (pointer: fine) {

    .story-card-link:hover .story-cover {
        filter:
            saturate(1.04)
            brightness(1.035);
    }

    .story-card-link:hover .story-cover::before {
        opacity: .72;

        transform:
            rotate(-5deg)
            scale(1.045);
    }
}


/* ============================================================
   HOME — CHAPÔ + MÉTADONNÉES
   ============================================================ */

.story-body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;

    gap: .8rem 1.6rem;

    align-items: end;

    padding: .62rem .05rem .05rem;
}

.story-summary {
    max-width: 760px;

    margin: 0;

    color: #667286;

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(.86rem, .98vw, .94rem);
    line-height: 1.45;
}

.story-metadata {
    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: .65rem;

    padding: 0 0 .05rem;

    color: #8490a0;

    font-size: .64rem;

    white-space: nowrap;
}

.story-metadata span + span::before {
    content: "·";

    margin-right: .55rem;

    color: #a4adba;
}


/* ============================================================
   HOME — SATELLITES
   ============================================================ */

.satellite-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 0 1.65rem;

    margin: .42rem 0 0;
    padding: 0;

    list-style: none;
}

.satellite-grid li {
    min-width: 0;
}

.satellite-grid a {
    display: block;

    padding: .72rem .08rem .76rem;

    color: var(--ink);
    background: transparent;

    border-top: 1px solid #d2d8e0;

    text-decoration: none;

    transition:
        color .15s ease,
        background-color .15s ease;
}

.satellite-grid strong {
    color: var(--ink);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(.96rem, 1.12vw, 1.08rem);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -.006em;
}

@media (hover: hover) and (pointer: fine) {

    .satellite-grid a:hover {
        color: var(--blue-dark);

        background: rgba(18, 107, 163, .028);
    }
}


/* ============================================================
   HOME — SIGNALS / FOKON
   ============================================================ */

.fokon.signal-cover {
    position: relative;

    min-height: 150px;

    margin-block: clamp(.9rem, 1.9vw, 1.25rem);

    padding:
        clamp(1.1rem, 2.15vw, 1.55rem)
        clamp(1.15rem, 2.5vw, 1.8rem);

    display: block;

    overflow: hidden;
    isolation: isolate;

    color: var(--ink);

    background:
        linear-gradient(
            105deg,
            rgba(18, 107, 163, .055) 0%,
            rgba(18, 107, 163, .018) 46%,
            transparent 72%
        ),
        #f5f7f8;

    border-left: 2px solid rgba(18, 107, 163, .78);

    text-decoration: none;

    transition:
        background .2s ease,
        color .2s ease;
}

.fokon.signal-cover::before {
    content: none;
}

.fokon-mark {
    position: absolute;
    z-index: 0;

    top: 50%;
    right: clamp(.8rem, 3vw, 2.1rem);

    width: clamp(120px, 14vw, 170px);

    transform: translateY(-50%);

    pointer-events: none;
    user-select: none;
}

.fokon-watermark {
    width: 100%;
    max-width: none;

    opacity: .045;

    filter:
        grayscale(1)
        contrast(1.25);
}

.fokon.signal-cover > div {
    position: relative;
    z-index: 2;

    max-width: 720px;
}

.fokon.signal-cover .eyebrow {
    margin-bottom: .28rem;

    color: var(--blue);

    font-size: .62rem;
    letter-spacing: .145em;
}

.fokon.signal-cover h2,
.fokon.signal-cover h3 {
    max-width: 680px;

    margin-bottom: .35rem;

    font:
        500 clamp(1.45rem, 2.15vw, 2rem)/1.025
        Georgia,
        "Times New Roman",
        serif;

    letter-spacing: -.035em;
}

.fokon.signal-cover div > p:last-child {
    max-width: 650px;

    margin: 0;

    color: #647084;

    font-size: .82rem;
    line-height: 1.45;
}

@media (hover: hover) and (pointer: fine) {

    .fokon.signal-cover:hover {
        color: var(--blue-dark);

        background:
            linear-gradient(
                105deg,
                rgba(18, 107, 163, .08) 0%,
                rgba(18, 107, 163, .025) 48%,
                transparent 75%
            ),
            #f3f6f8;
    }
}


/* ============================================================
   HOME — TOP 10
   ============================================================ */

.top-ten-card {
    margin-block: .7rem;

    padding: clamp(1.15rem, 2.2vw, 1.55rem);

    display: grid;
    grid-template-columns:
        minmax(0, 1.15fr)
        minmax(250px, .85fr);

    gap: 1.3rem 2.6rem;

    align-items: end;

    color: var(--white);

    background:
        linear-gradient(
            115deg,
            rgba(18, 107, 163, .13),
            transparent 43%
        ),
        var(--night);

    text-decoration: none;

    transition: background-color .2s ease;
}

.top-ten-card .eyebrow {
    margin-bottom: .3rem;

    color: #8bd2f4;
}

.top-ten-card h2,
.top-ten-card h3 {
    max-width: 700px;

    margin: 0;

    font:
        500 clamp(1.55rem, 2.5vw, 2.25rem)/1
        Georgia,
        serif;

    letter-spacing: -.035em;
}

.top-ten-card div:last-child > p {
    margin: 0;

    color: #c8d3df;

    font-size: .8rem;
    line-height: 1.45;
}

@media (hover: hover) and (pointer: fine) {

    .top-ten-card:hover {
        background:
            linear-gradient(
                115deg,
                rgba(28, 126, 182, .2),
                transparent 45%
            ),
            #0b1d34;
    }
}


/* ============================================================
   HOME — INTERLUDES INSTITUTIONNELS
   ============================================================ */

.editorial-interlude {
    min-height: 150px;

    margin-block: .9rem;

    padding:
        clamp(1.35rem, 2.8vw, 2rem)
        clamp(1.35rem, 3vw, 2rem);

    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;

    gap: clamp(1.5rem, 4vw, 3rem);

    align-items: center;

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.editorial-interlude > div {
    grid-column: 1 / -1;

    width: 100%;
    max-width: none;

    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;

    column-gap: clamp(1.5rem, 4vw, 3rem);
    row-gap: 0;

    align-items: center;
}

.editorial-interlude .eyebrow,
.editorial-interlude h2,
.editorial-interlude h3,
.editorial-interlude .interlude-copy {
    grid-column: 1;
}

.editorial-interlude .eyebrow {
    margin-bottom: .3rem;

    font-size: .61rem;
    letter-spacing: .15em;
}

.editorial-interlude h2,
.editorial-interlude h3 {
    margin: 0;

    font:
        500 clamp(1.65rem, 2.75vw, 2.3rem)/1.02
        Georgia,
        serif;

    letter-spacing: -.032em;
}

.editorial-interlude .interlude-copy {
    max-width: 640px;
    max-height: none;

    margin: .42rem 0 0;

    overflow: visible;

    color: var(--ink-soft);

    font-size: .82rem;
    line-height: 1.47;
}

.editorial-interlude .text-link {
    min-height: 44px;

    padding: .62rem .9rem;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    color: var(--ink);
    background: var(--white);

    border: 1px solid var(--line-dark);

    font-size: .73rem;
    font-weight: 800;

    text-decoration: none;
    white-space: nowrap;

    transition:
        color .15s ease,
        background-color .15s ease,
        border-color .15s ease;
}

/* Supporte les deux structures de template :
   CTA directement dans l'interlude ou à l'intérieur du bloc principal. */
.editorial-interlude > .text-link {
    grid-column: 2;
    grid-row: 1;

    justify-self: end;
}

.editorial-interlude > div > .text-link {
    grid-column: 2;
    grid-row: 1 / span 4;

    align-self: center;
    justify-self: end;

    margin-left: 1rem;
}

.editorial-interlude .text-link:hover {
    color: var(--white);
    background: var(--blue-dark);
    border-color: var(--blue-dark);
}

.interlude-focus {
    min-height: clamp(190px, 20vw, 240px);

    color: var(--white);

    background:
        radial-gradient(
            70% 140% at 100% 0%,
            rgba(63, 166, 218, .24),
            transparent 60%
        ),
        linear-gradient(
            115deg,
            #0d385f 0%,
            #0b2947 68%,
            #081f37 100%
        );

    border: 0;
}

.interlude-focus .eyebrow {
    color: #9bdaf5;
}

.interlude-focus h2,
.interlude-focus h3 {
    max-width: 780px;

    font-size: clamp(2.15rem, 4vw, 3.35rem);
    line-height: .98;
    letter-spacing: -.04em;
}

.interlude-focus .interlude-copy {
    max-width: 660px;

    color: #d7e4ee;

    font-size: .86rem;
}

.interlude-focus .text-link {
    min-width: 150px;
    min-height: 48px;

    padding: .72rem 1.08rem;

    color: var(--night);
    background: var(--white);

    border-color: var(--white);

    font-size: .78rem;
}

.interlude-focus .text-link:hover {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, .75);
}

.interlude-method {
    background: rgba(255, 255, 255, .64);
}

.interlude-pro {
    background: #f0f2f4;
}


/* ============================================================
   HOME — SOCIAL / PARTAGE
   ============================================================ */

.social-interlude {
    margin-block: 1rem;

    padding:
        clamp(1.4rem, 3vw, 2.15rem)
        clamp(.25rem, 1vw, .75rem);

    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;

    gap: clamp(2rem, 6vw, 5rem);

    align-items: center;

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.social-interlude-copy {
    max-width: 620px;
}

.social-interlude .eyebrow {
    margin-bottom: .35rem;
}

.social-interlude h2 {
    margin-bottom: .4rem;

    font-size: clamp(1.75rem, 3.25vw, 2.65rem);
    line-height: 1;
}

.social-interlude-copy > p:last-child {
    max-width: 38rem;

    margin: 0;

    color: var(--ink-soft);

    font-size: .88rem;
    line-height: 1.45;
}

.social-interlude-actions {
    display: flex;
    align-items: center;

    gap: 1.35rem;
}

.public-social-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: .8rem;
}

.public-social-links a {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    color: inherit;

    text-decoration: none;

    transition:
        opacity .15s ease,
        transform .15s ease;
}

.public-social-links img {
    width: 38px;
    height: 38px;

    object-fit: contain;
}

.home-share {
    position: relative;

    display: flex;
    align-items: center;

    gap: .5rem;
}

.home-share-trigger {
    min-height: 44px;

    padding: .55rem 0 .55rem 1.1rem;

    color: var(--blue-dark);
    background: transparent;

    border: 0;
    border-left: 1px solid var(--line);

    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .035em;

    cursor: pointer;

    white-space: nowrap;
}

.home-share-trigger:hover {
    color: var(--blue);
}

.home-share .share-options > summary {
    position: absolute;

    width: 1px;
    height: 1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);
}

.home-share .share-options-menu {
    right: 0;
}

.home-share .article-action-status {
    position: absolute;

    top: calc(100% + .2rem);
    right: 0;

    white-space: nowrap;
}

@media (hover: hover) and (pointer: fine) {

    .public-social-links a:hover {
        opacity: .68;

        transform: translateY(-2px);
    }
}


/* ============================================================
   HOME — FIN D'ÉDITION
   ============================================================ */

.edition-end.edition-end {
    padding-block: 2.3rem 4rem;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 2rem;

    border-top: 3px solid var(--ink);
}

.edition-end p:first-child {
    font-family: Georgia, serif;
    font-size: 1.5rem;
}

.edition-end p:last-child {
    color: var(--ink-soft);

    font-size: .84rem;
}

.after-edition {
    margin-bottom: clamp(4rem, 8vw, 7rem);

    padding: clamp(2rem, 5vw, 4rem);

    display: grid;
    grid-template-columns: 1fr .8fr;

    gap: 4rem;

    align-items: end;

    background: var(--white);

    border: 1px solid var(--line);
}

.after-edition h2 {
    margin: 0;

    font-size: clamp(2rem, 4vw, 3.8rem);
}

.after-edition div:last-child p {
    color: var(--ink-soft);
}

.home-editorial-empty {
    padding-block: clamp(3rem, 8vw, 7rem);

    text-align: center;
}

.home-editorial-empty h2 {
    max-width: 760px;

    margin-inline: auto;

    font-size: clamp(2rem, 5vw, 4rem);
}

.home-editorial-empty p {
    max-width: 620px;

    margin-inline: auto;

    color: var(--ink-soft);
}


/* ============================================================
   ÉDITION DATÉE
   ============================================================ */

.editorial-masthead {
    padding: clamp(2.4rem, 6vw, 4.8rem) 0;

    color: var(--white);

    background:
        radial-gradient(
            70% 110% at 14% 10%,
            rgba(18, 107, 163, .24),
            transparent 60%
        ),
        var(--night);
}

.editorial-masthead h1 {
    margin: .2rem 0;

    color: var(--white);

    font-size: clamp(3rem, 7vw, 5.8rem);
}

.editorial-flow,
.editorial-detail,
.editorial-briefs,
.editorial-archives,
.editorial-empty {
    padding-block: clamp(2.2rem, 5vw, 4.5rem);
}

.editorial-flow {
    max-width: 940px;

    display: grid;

    gap: clamp(1.6rem, 4vw, 3.2rem);
}

.editorial-story-summary {
    padding-bottom: 1.8rem;

    border-bottom: 1px solid var(--line);
}

.editorial-story-summary h2,
.editorial-signal-summary h2,
.editorial-briefs-callout h2 {
    margin: .3rem 0 .65rem;

    font-size: clamp(1.8rem, 4vw, 2.85rem);
}

.editorial-story-summary h2 a,
.editorial-signal-summary h2 a {
    color: inherit;

    text-decoration: none;
}

.story-summary-edition.story-sequence-lead {
    padding-top: 1rem;

    border-top: 3px solid var(--ink);
}

.editorial-signal-summary {
    margin-left: clamp(0rem, 7vw, 5rem);

    padding:
        1.15rem
        0
        1.15rem
        clamp(1rem, 3vw, 1.8rem);

    border-left: 2px solid var(--blue);
}

.editorial-briefs-callout {
    padding: 1.35rem 0;

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.editorial-kicker {
    color: var(--blue-dark);

    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.editorial-kicker span {
    margin-right: .5rem;

    color: var(--ink-soft);
}

.editorial-standfirst {
    max-width: 720px;

    color: #4f5d72;

    font-size: clamp(1.02rem, 1.7vw, 1.24rem);
    line-height: 1.55;
}

.editorial-metrics {
    color: #738096;

    font-size: .76rem;
}

.editorial-read-link {
    display: inline-block;

    margin-top: .7rem;

    font-weight: 750;
}

.editorial-satellite-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 0 1.5rem;

    margin: 1rem 0 0;
    padding: 0;

    list-style: none;

    font-size: .88rem;
}

.editorial-satellite-links li {
    border-top: 1px solid var(--line);
}

.editorial-satellite-links a {
    display: block;

    padding: .68rem 0;

    color: inherit;

    text-decoration: none;
}


/* ============================================================
   ARCHIVES LEGACY
   ============================================================ */

.editorial-edition-nav {
    display: flex;
    justify-content: space-between;

    gap: 1rem;

    padding-top: 1.5rem;

    border-top: 1px solid var(--line);
}

.editorial-archives-link {
    text-align: center;
}

.editorial-archives ul {
    display: grid;

    gap: 1px;

    padding: 0;

    background: var(--line);

    list-style: none;
}

.editorial-archives li {
    background: var(--white);
}

.editorial-archives a {
    display: flex;
    justify-content: space-between;

    gap: 1rem;

    padding: 1.25rem;

    color: inherit;

    text-decoration: none;
}


/* ============================================================
   STORY / SIGNAL — LONG-FORM
   ============================================================ */

.editorial-detail {
    width: min(calc(100% - 2rem), 780px);
    max-width: none;
}

.editorial-detail > header {
    padding-bottom: 2.25rem;

    border-bottom: 1px solid var(--line);
}

.editorial-detail h1 {
    max-width: 760px;

    margin-bottom: 1.15rem;

    font-size: clamp(2.7rem, 6vw, 4.85rem);
    line-height: .98;
}

.editorial-context {
    display: flex;
    justify-content: space-between;

    gap: 1rem;

    margin-bottom: 2.1rem;

    color: #68758a;

    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.editorial-context p {
    margin: 0;
}

.editorial-detail p:not(.editorial-kicker):not(.editorial-metrics):not(.editorial-standfirst),
.editorial-article-body p,
.editorial-panorama p,
.editorial-satellite p {
    font-size: 1.02rem;
    line-height: 1.72;
}

.editorial-panorama,
.editorial-satellite,
.editorial-article-body {
    margin-block: 2.7rem;
}

.editorial-panorama h2,
.editorial-satellite h2 {
    margin-bottom: 1rem;

    font-size: clamp(1.55rem, 2.8vw, 2.15rem);
    line-height: 1.08;
}

.editorial-panorama {
    padding: 0;
}

.editorial-satellite {
    padding-top: 2rem;

    border-top: 1px solid var(--line);
}


/* ============================================================
   STORY / SIGNAL — ACTIONS
   ============================================================ */

.article-actions {
    position: relative;

    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 1.1rem;

    padding-block: .9rem;

    border-bottom: 1px solid var(--line);
}

.article-action,
.share-options summary,
.share-options-menu button,
.share-options-menu a {
    color: var(--ink);

    background: transparent;

    border: 0;

    font-size: .82rem;
    font-weight: 700;

    cursor: pointer;
}

.article-action,
.share-options summary {
    padding: .25rem 0;

    color: #536176;

    font-size: .76rem;
    font-weight: 750;
}

.article-action:hover,
.share-options summary:hover {
    color: var(--blue-dark);
}

.share-options {
    position: relative;
}

.share-options summary {
    list-style: none;
}

.share-options summary::-webkit-details-marker {
    display: none;
}

.share-options-menu {
    position: absolute;
    z-index: 20;

    top: calc(100% + .4rem);
    left: 0;

    min-width: 180px;

    padding: .55rem;

    display: grid;

    gap: .15rem;

    background: var(--white);

    border: 1px solid var(--line);

    box-shadow:
        0 10px 28px
        rgba(9, 23, 42, .12);
}

.share-options-menu button,
.share-options-menu a {
    width: 100%;

    padding: .42rem .45rem;

    text-align: left;
    text-decoration: none;
}

.share-options-menu button:hover,
.share-options-menu a:hover {
    color: var(--blue-dark);

    background: var(--tint);
}

.article-action-status {
    min-height: 1em;

    margin: 0;

    color: var(--ink-soft);

    font-size: .75rem;
}


/* ============================================================
   STORY — INCISE
   ============================================================ */

.editorial-intervention {
    margin:
        -.35rem
        0
        3rem
        clamp(.5rem, 5vw, 3rem);

    padding:
        .15rem
        0
        .15rem
        1.15rem;

    color: #34425a;

    border-left: 1px solid rgba(18, 107, 163, .75);

    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.05rem, 1.7vw, 1.2rem);
    font-style: italic;
    line-height: 1.58;
}

.editorial-intervention p:last-child {
    margin-bottom: 0;
}


/* ============================================================
   STORY — BLOC SIGNATURE MÉDIANALYSE
   ============================================================ */

.editorial-media-analysis {
    width: min(900px, calc(100vw - 2rem));

    margin:
        clamp(3rem, 7vw, 5rem)
        50%;

    padding: clamp(1.6rem, 4vw, 2.6rem);

    transform: translateX(-50%);

    color: #eef5f9;

    background:
        radial-gradient(
            80% 120% at 92% -10%,
            rgba(36, 145, 199, .22),
            transparent 58%
        ),
        var(--night);
}

.editorial-media-analysis header {
    margin-bottom: .85rem;
}

.editorial-media-analysis .editorial-kicker {
    color: #8bd2f4;
}

.editorial-media-analysis h2 {
    max-width: 650px;

    margin-bottom: 0;

    color: var(--white);

    font-size: clamp(1.85rem, 3.8vw, 3rem);
    line-height: 1.02;
}

.editorial-observations {
    display: grid;

    gap: 0;

    margin-top: 1.4rem;
}

.editorial-observations article {
    padding-block: 1.05rem;

    border-top: 1px solid rgba(255, 255, 255, .16);
}

.editorial-media-analysis .editorial-observations p {
    max-width: 720px;

    margin-bottom: .65rem;

    color: #d8e4ec;

    font-size: .98rem;
    line-height: 1.62;
}

.editorial-media-analysis .editorial-observations p:last-child {
    margin-bottom: 0;
}


/* ============================================================
   STORY / SIGNAL — SOUTIEN
   ============================================================ */

.article-support {
    margin-block: clamp(2.5rem, 6vw, 4rem);

    padding: 1.5rem 0;

    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;

    gap: 2rem;

    align-items: end;

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.article-support h2 {
    max-width: 560px;

    margin-bottom: .4rem;

    font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.article-support .cms-copy {
    max-width: 600px;
}

.article-support .cms-copy p {
    margin-bottom: 0;

    color: var(--ink-soft);

    font-size: .86rem;
    line-height: 1.5;
}

.article-support .button {
    min-width: 158px;
    min-height: 46px;

    padding-inline: 1.05rem;

    background: var(--blue-dark);
    border-color: var(--blue-dark);

    font-size: .8rem;
}

.article-support .button:hover {
    color: var(--blue-dark);
    background: transparent;
}

.article-support-compact {
    padding-block: 1.15rem;
}


/* ============================================================
   SIGNAL DETAIL
   ============================================================ */

.signal-detail-header {
    position: relative;

    padding:
        clamp(1rem, 3vw, 1.6rem)
        0
        clamp(1.5rem, 4vw, 2.2rem)
        clamp(1rem, 4vw, 1.8rem);

    border-left: 2px solid var(--blue);

    background:
        linear-gradient(
            90deg,
            rgba(18, 107, 163, .045),
            transparent 58%
        );
}


/* ============================================================
   TAGS
   ============================================================ */

.editorial-tags {
    display: flex;
    flex-wrap: wrap;

    gap: .45rem;

    margin-top: 2rem;
    padding: 0;

    list-style: none;
}

.editorial-tags li {
    color: #7b8798;

    font-size: .7rem;
}

.editorial-tags li + li::before {
    content: "·";

    margin-right: .45rem;
}


/* ============================================================
   SOURCES
   ============================================================ */

.editorial-sources {
    margin-top: 2.2rem;

    border-top: 1px solid var(--line);
}

.editorial-sources summary {
    position: relative;

    padding: 1rem .15rem;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 1rem;

    color: var(--ink);

    font-size: .84rem;
    font-weight: 800;

    list-style: none;

    cursor: pointer;

    transition:
        color .15s ease,
        background-color .15s ease;
}

.editorial-sources summary::-webkit-details-marker {
    display: none;
}

.editorial-sources summary::after {
    content: "+";

    flex: 0 0 auto;

    color: var(--blue);

    font: 500 1.35rem/1 Georgia, serif;
}

.editorial-sources[open] summary::after {
    content: "–";
}

.editorial-sources summary:hover {
    color: var(--blue-dark);

    background: rgba(18, 107, 163, .025);
}

.editorial-source-groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 1.5rem 2.4rem;

    padding-block: .6rem 1.8rem;
}

.editorial-source-group {
    min-width: 0;
}

.editorial-source-group h3,
.editorial-source-group h2 {
    margin-bottom: .55rem;

    font-size: .96rem;
}

.editorial-source-group h3 span,
.editorial-source-group h2 span {
    color: #8590a0;

    font:
        400 .68rem/1
        Inter,
        sans-serif;
}

.editorial-source-group ul {
    display: grid;

    gap: .55rem;

    margin: 0;
    padding: 0;

    list-style: none;
}

.editorial-source-group li {
    display: grid;

    gap: .12rem;
}

.editorial-source-group a {
    color: #354259;

    font-size: .78rem;
    line-height: 1.36;

    text-decoration-thickness: 1px;
    text-underline-offset: .18em;
}

.editorial-source-group time,
.editorial-source-group small {
    color: #8b95a3;

    font-size: .65rem;
}


/* ============================================================
   TOP 10 — PAGE
   ============================================================ */

.briefs-page-header {
    padding-block: clamp(2.5rem, 6vw, 4.5rem);
}

.briefs-page-header h1 {
    max-width: 900px;

    margin-bottom: .6rem;

    font-size: clamp(3rem, 7vw, 5.8rem);
}

.editorial-briefs {
    max-width: 820px;
}

.editorial-briefs-list {
    border-top: 2px solid var(--ink);
}

.editorial-brief {
    display: grid;
    grid-template-columns: 54px 1fr;

    gap: 1.1rem;

    padding-block: clamp(1.25rem, 2.6vw, 1.85rem);

    border-bottom: 1px solid var(--line);
}

.brief-position {
    margin: .12rem 0 0;

    color: var(--blue);

    font:
        500 1.12rem/1
        Georgia,
        serif;
}

.editorial-brief .editorial-kicker {
    margin-bottom: .15rem;

    font-size: .61rem;
}

.editorial-brief h2 {
    margin: .18rem 0 .45rem;

    font-size: clamp(1.35rem, 2.6vw, 1.95rem);
    line-height: 1.08;
}

.editorial-brief p:not(.brief-position):not(.editorial-kicker) {
    margin-bottom: .35rem;

    color: #536176;

    font-size: .88rem;
    line-height: 1.52;
}

.briefs-source-recap {
    margin-top: 2.7rem;
}


/* ============================================================
   PAGES INSTITUTIONNELLES — HERO
   ============================================================ */

.page-hero {
    padding-block: clamp(3.5rem, 8vw, 6.5rem);

    border-bottom: 1px solid var(--line);
}

.page-hero h1 {
    max-width: 920px;

    margin-bottom: 1.5rem;

    font-size: clamp(3rem, 6vw, 5.6rem);
}

.intro-copy {
    max-width: 720px;

    color: var(--ink-soft);

    font-size: clamp(1.1rem, 1.8vw, 1.4rem);
    line-height: 1.5;
}

.page-hero-dark {
    color: var(--white);
    background: var(--blue-dark);

    border: 0;
}

.page-hero-dark .eyebrow {
    color: #8bd2f4;
}

.page-hero-dark h1 {
    margin: 0;

    font-size: clamp(3rem, 6.5vw, 5.8rem);
}


/* ============================================================
   FOCUS
   ============================================================ */

.focus-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;

    gap: clamp(3rem, 9vw, 8rem);

    align-items: end;
}

.focus-copy {
    margin-bottom: 1.7rem;

    color: #d8e6f0;

    font-size: clamp(1.1rem, 1.7vw, 1.35rem);
}

.status-label {
    display: inline-block;

    padding-top: 1rem;

    color: #d8e6f0;

    border-top: 1px solid rgba(255, 255, 255, .45);

    font-size: .85rem;
}

.focus-page-hero {
    padding-block: clamp(3rem, 7vw, 5.5rem);

    color: var(--white);
    background: var(--night);
}

.focus-page-hero h1 {
    max-width: 850px;

    margin-bottom: 1rem;

    font-size: clamp(2.9rem, 6vw, 5.5rem);
}

.focus-page-intro {
    max-width: 720px;

    margin: 0;

    color: #d8e6f0;

    font-size: clamp(1.05rem, 2vw, 1.3rem);
    line-height: 1.5;
}

.focus-page {
    padding-block: clamp(2rem, 6vw, 5rem);
}

.focus-current {
    padding: clamp(1.6rem, 4vw, 2.7rem);

    display: grid;
    grid-template-columns:
        minmax(0, 1.2fr)
        minmax(240px, .65fr);

    gap: clamp(1.5rem, 5vw, 4rem);

    align-items: end;

    color: var(--white);

    background: var(--blue-dark);
}

.focus-current .eyebrow {
    color: #8bd2f4;
}

.focus-current h2 {
    max-width: 760px;

    margin-bottom: .75rem;

    font-size: clamp(2.2rem, 4.5vw, 4rem);
}

.focus-current .cms-copy {
    color: #d8e6f0;
}

.focus-current .text-link {
    color: var(--white);
}

.focus-access-status,
.focus-development-status {
    display: inline-block;

    margin: 0;
    padding: .35rem .6rem;

    border: 1px solid currentColor;

    font-size: .75rem;
    font-weight: 750;
}

.focus-hebdo {
    padding-block: clamp(2.8rem, 6vw, 4.5rem);

    display: grid;
    grid-template-columns:
        minmax(220px, .55fr)
        minmax(0, 1fr);

    gap: clamp(2rem, 7vw, 6rem);

    border-bottom: 1px solid var(--line);
}

.focus-hebdo h2 {
    margin-bottom: .8rem;

    font-size: clamp(2.25rem, 4.5vw, 3.8rem);
}

.focus-development-status {
    color: var(--blue-dark);
}

.focus-hebdo-copy {
    max-width: 680px;
}

.focus-hebdo-copy ul {
    margin: 1.25rem 0 0;
    padding: 0;

    list-style: none;

    border-top: 1px solid var(--line);
}

.focus-hebdo-copy li {
    padding-block: .8rem;

    border-bottom: 1px solid var(--line);

    font-family: Georgia, serif;
    font-size: clamp(1.15rem, 2vw, 1.4rem);
}

.focus-support {
    padding-block: clamp(2rem, 5vw, 3.5rem);

    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;

    gap: 2rem;

    align-items: end;
}

.focus-support h2 {
    margin-bottom: .6rem;

    font-size: clamp(1.9rem, 4vw, 3rem);
}

.focus-support .cms-copy {
    max-width: 700px;

    color: var(--ink-soft);
}


/* ============================================================
   PAGES INSTITUTIONNELLES — MÉTHODE / LIENS
   ============================================================ */

.pro-hero {
    background: var(--tint);
}

.support-hero {
    background: var(--white);
}

.method-grid {
    padding-block: clamp(3.5rem, 7vw, 6rem);

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: clamp(2rem, 5vw, 5rem);
}

.method-grid article {
    padding-top: 1.5rem;

    border-top: 2px solid var(--ink);
}

.method-grid article > span {
    color: var(--blue);

    font-family: Georgia, serif;
}

.method-grid h2 {
    margin-top: 2.2rem;

    font-size: 2.1rem;
}

.method-grid p,
.prose-preview p,
.placeholder-edition > p:not(.eyebrow) {
    color: var(--ink-soft);
}

.related-links {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 1px;

    margin-bottom: 4.5rem;

    background: var(--line);

    border: 1px solid var(--line);
}

.related-links a {
    padding: 2rem;

    background: var(--white);

    font:
        500 1.6rem/1.25
        Georgia,
        serif;

    text-decoration: none;
}

.related-links span {
    display: block;

    margin-bottom: .5rem;

    color: var(--blue);

    font:
        800 .7rem/1.2
        Inter,
        sans-serif;

    letter-spacing: .12em;
    text-transform: uppercase;
}

.prose-preview,
.form-shell {
    max-width: var(--reading);

    padding-block: 4.5rem;
}

.prose-preview h2 {
    font-size: 2.5rem;
}

.placeholder-edition {
    padding-block: 4.5rem;
}

.placeholder-edition > h2 {
    max-width: 780px;

    font-size: clamp(2.5rem, 5vw, 4.8rem);
}

.placeholder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 2rem;

    margin-top: 3rem;
}

.placeholder-grid article {
    padding-top: 1rem;

    border-top: 1px solid var(--ink);
}

.placeholder-grid span {
    color: var(--blue);
}


/* ============================================================
   FORMULAIRES
   ============================================================ */

.public-form {
    display: grid;

    gap: 1.25rem;

    padding: clamp(1.5rem, 4vw, 3rem);

    background: var(--white);

    border: 1px solid var(--line);
}

.public-form label,
.public-form legend {
    display: grid;

    gap: .45rem;

    font-size: .85rem;
    font-weight: 750;
}

.public-form label span,
.form-help {
    color: var(--ink-soft);

    font-weight: 400;
}

.public-form input,
.public-form textarea {
    width: 100%;

    padding: .8rem .9rem;

    color: var(--ink);
    background: var(--paper);

    border: 1px solid #bfc7d2;
    border-radius: var(--radius);
}

.public-form textarea {
    resize: vertical;
}

.public-form input:focus,
.public-form textarea:focus {
    border-color: var(--blue);

    outline: 2px solid rgba(18, 107, 163, .18);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 1rem;
}

.check-row {
    display: flex !important;
    align-items: flex-start;

    gap: .7rem !important;

    font-weight: 500 !important;
}

.check-row input {
    width: auto;

    margin-top: .3rem;
}

.form-status {
    min-height: 1.5rem;

    margin: 0;

    color: var(--blue-dark);

    font-weight: 650;
}


/* ============================================================
   SOUTENIR
   ============================================================ */

.support-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;

    gap: clamp(3rem, 8vw, 8rem);

    padding-block: 4.5rem;

    align-items: start;
}

.support-layout > div h2 {
    font-size: clamp(2.3rem, 4vw, 4rem);
}

.support-layout > div p {
    color: var(--ink-soft);
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: .5rem;
}

.amount-grid label {
    position: relative;
}

.amount-grid input {
    position: absolute;

    opacity: 0;
}

.amount-grid span {
    display: block;

    padding: .85rem;

    color: var(--ink) !important;
    background: var(--paper);

    border: 1px solid var(--line);

    text-align: center;

    font-weight: 800 !important;

    cursor: pointer;
}

.amount-grid input:checked + span {
    color: var(--white) !important;
    background: var(--blue-dark);

    border-color: var(--blue-dark);
}

.amount-grid input:focus-visible + span {
    outline: 3px solid var(--focus);
    outline-offset: 3px;
}


/* ============================================================
   FOOTER
   ============================================================ */

.public-footer {
    padding-top: 4.5rem;

    color: #dbe2eb;
    background: var(--night);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 2rem;

    padding-bottom: 3rem;
}

.footer-grid section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: .6rem;
}

.footer-grid h2 {
    margin-bottom: .6rem;

    color: #8bd2f4;

    font:
        800 .7rem/1.2
        Inter,
        sans-serif;

    letter-spacing: .14em;
    text-transform: uppercase;
}

.footer-grid a {
    color: #dbe2eb;

    font-size: .9rem;

    text-decoration: none;
}

.footer-grid a:hover {
    color: var(--white);

    text-decoration: underline;
    text-underline-offset: .25em;
}


/* ============================================================
   FOOTER — SOCIAL
   ============================================================ */

.footer-socials {
    display: flex;
    flex-wrap: wrap;

    gap: .4rem;

    margin-top: .55rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    color: inherit;

    text-decoration: none;

    transition: opacity .15s ease;
}

.footer-socials img {
    width: 28px;
    height: 28px;

    object-fit: contain;
}

.footer-socials a:hover {
    opacity: .7;

    text-decoration: none;
}


/* ============================================================
   FOOTER — PWA
   ============================================================ */

.pwa-controls {
    padding-block: 1rem;

    border-top: 1px solid rgba(255, 255, 255, .18);
}

.pwa-controls [hidden] { display: none !important; }

.pwa-install,
.pwa-update button {
    padding: .45rem 0;

    color: #dbe2eb;
    background: transparent;

    border: 0;

    font:
        700 .82rem/1.3
        Inter,
        sans-serif;

    text-decoration: underline;
    text-underline-offset: .25em;

    cursor: pointer;
}

.pwa-install:hover,
.pwa-update button:hover {
    color: var(--white);
}

.pwa-install-help {
    max-width: 34rem;

    margin: .55rem 0 0;

    color: #aeb9c9;

    font-size: .78rem;
}

.push-consent {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .45rem 1rem;
    margin-top: .55rem;
    color: #dbe2eb;
    font-size: .82rem;
}

.push-consent button {
    padding: .4rem .65rem;
    color: var(--night);
    background: var(--white);
    border: 1px solid var(--white);
    cursor: pointer;
    font-size: .78rem;
    font-weight: 750;
}

.push-consent button:disabled { cursor: not-allowed; opacity: .55; }
.push-consent-status { color: #aeb9c9; font-size: .76rem; }

.pwa-update {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 1rem;

    color: #dbe2eb;

    font-size: .82rem;
}


/* ============================================================
   PAGE OFFLINE
   ============================================================ */

.offline-page {
    min-height: 58vh;

    padding-block: clamp(4rem, 10vw, 8rem);
}

.offline-page h1 {
    max-width: 760px;

    font-size: clamp(2.8rem, 7vw, 5.5rem);
}

.offline-page > p:not(.eyebrow) {
    max-width: 620px;

    color: var(--ink-soft);
}


/* ============================================================
   FOOTER — BAS DE PAGE
   ============================================================ */

.footer-bottom {
    display: flex;
    justify-content: space-between;

    gap: 1rem;

    padding-block: 1.5rem;

    color: #aeb9c9;

    border-top: 1px solid rgba(255, 255, 255, .18);

    font-size: .82rem;
}

.footer-bottom strong {
    color: var(--white);
}


/* ============================================================
   TABLETTE — NAVIGATION
   ============================================================ */

@media (max-width: 900px) {

    .menu-toggle {
        display: block;
    }

    .public-navigation {
        position: absolute;

        inset:
            var(--header-height)
            0
            auto;

        min-height:
            calc(100vh - var(--header-height));

        display: none;
        flex-direction: column;
        align-items: stretch;

        gap: 0;

        padding: 1rem;

        color: var(--white);
        background: var(--night);

        border-top: 1px solid rgba(255, 255, 255, .14);
    }

    .public-navigation.is-open {
        display: flex;
    }

    .public-navigation a {
        padding: 1.05rem .2rem;

        border-bottom: 1px solid rgba(255, 255, 255, .14);

        font-family: Georgia, serif;
        font-size: 1.55rem;
        font-weight: 500;
    }

    .public-navigation .nav-support {
        margin-top: 1rem;

        padding: 1rem;

        text-align: center;

        font-family: inherit;
        font-size: 1rem;
    }

    .menu-toggle[aria-expanded="true"] span:nth-of-type(2) {
        transform:
            translateY(7px)
            rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-of-type(3) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-of-type(4) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }

    .support-layout {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   TABLETTE — HOME
   ============================================================ */

@media (max-width: 1024px) {

    .edition-flow.public-container {
        width: 100%;
    }

    .story-sequence {
        padding-block: .5rem;
    }

    .story-cover {
        min-height: 205px;
    }

    .story-sequence-lead .story-cover {
        min-height: 255px;
    }

    .story-body {
        padding-inline: 1rem;
    }

    .satellite-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 0 1rem;

        margin-top: .38rem;
    }

    .fokon.signal-cover,
    .editorial-interlude,
    .top-ten-card {
        margin-block: .5rem;

        border-radius: 0;
    }
}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 700px) {

    .public-container {
        width:
            min(
                calc(100% - 1.5rem),
                var(--width)
            );
    }


    /* --------------------------------------------------------
       Mobile — Hero Quotidienne
       -------------------------------------------------------- */

    .edition-opening {
        padding-block: .9rem .65rem;
    }

    .edition-titleline {
        grid-template-columns: 1fr;

        gap: .45rem;
    }

    .edition-titleline h1 {
        font-size: clamp(2.9rem, 13vw, 3.9rem);
        line-height: .88;
    }

    .edition-meta {
        padding: 0;

        text-align: left;
    }

    .edition-meta time {
        font-size: 1.02rem;
        font-weight: 600;
    }

    .edition-tagline {
        font-size: clamp(1.55rem, 7.4vw, 2.05rem);
        line-height: 1.07;
    }

    .edition-promise-copy {
        font-size: .84rem;
    }

    .edition-masthead-copy,
    .edition-masthead-note {
        display: block;

        padding-top: .5rem;
    }

    .edition-masthead-note p {
        margin-bottom: .18rem;
    }

    .edition-masthead-note .text-link,
    .edition-masthead-copy .text-link {
        display: inline-block;

        margin: 0;
    }


    /* --------------------------------------------------------
       Mobile — Home Stories
       -------------------------------------------------------- */

    .edition-flow.public-container {
        width: 100%;
    }

    .story-sequence {
        padding-block: .4rem;
    }

    .story-cover {
        min-height: 175px;

        padding: .9rem 1rem;
    }

    .story-sequence-lead .story-cover {
        min-height: 225px;
    }

    .story-cover h2,
    .story-cover h3 {
        margin-top: 1.35rem;
        padding: 0;

        font-size: clamp(1.55rem, 7vw, 2.05rem);
        line-height: 1;
    }

    .story-sequence-lead .story-cover h2,
    .story-sequence-lead .story-cover h3 {
        margin-top: 1.8rem;

        font-size: clamp(1.9rem, 8.5vw, 2.55rem);
    }

    .story-kicker {
        gap: .55rem;

        font-size: .58rem;
    }

    .story-kicker strong {
        min-width: 29px;
        min-height: 29px;

        font-size: .57rem;
    }

    .story-body {
        grid-template-columns: 1fr;

        gap: .3rem;

        padding: .58rem 1rem .05rem;
    }

    .story-summary {
        font-size: .86rem;
        line-height: 1.42;
    }

    .story-metadata {
        justify-content: flex-start;

        padding: 0;

        font-size: .62rem;
    }


    /* --------------------------------------------------------
       Mobile — Satellites
       -------------------------------------------------------- */

    .satellite-grid {
        grid-template-columns: 1fr;

        gap: 0;

        margin-top: .25rem;
    }

    .satellite-grid a {
        padding: .64rem 1rem;
    }

    .satellite-grid strong {
        font-size: .96rem;
        font-weight: 600;
        line-height: 1.24;
    }


    /* --------------------------------------------------------
       Mobile — Fokon
       -------------------------------------------------------- */

    .fokon.signal-cover {
        min-height: 0;

        padding: 1rem;
    }

    .fokon.signal-cover h2,
    .fokon.signal-cover h3 {
        max-width: 84%;

        font-size: clamp(1.4rem, 6.7vw, 1.85rem);
    }

    .fokon.signal-cover div > p:last-child {
        max-width: 86%;

        font-size: .8rem;
    }

    .fokon-mark {
        right: -.25rem;

        width: 110px;
    }


    /* --------------------------------------------------------
       Mobile — Top 10
       -------------------------------------------------------- */

    .top-ten-card {
        grid-template-columns: 1fr;

        gap: .55rem;

        padding: 1rem;
    }

    .top-ten-card h2,
    .top-ten-card h3 {
        font-size: clamp(1.55rem, 7.5vw, 2.05rem);
    }


    /* --------------------------------------------------------
       Mobile — Interludes
       -------------------------------------------------------- */

    .editorial-interlude {
        min-height: 0;

        padding: 1.05rem 1rem;

        grid-template-columns: 1fr;

        gap: .9rem;
    }

    .editorial-interlude > div {
        grid-template-columns: 1fr;

        gap: 0;
    }

    .editorial-interlude h2,
    .editorial-interlude h3 {
        font-size: clamp(1.45rem, 7vw, 1.95rem);
    }

    .editorial-interlude .interlude-copy {
        margin-top: .38rem;

        font-size: .77rem;
    }

    .editorial-interlude > .text-link,
    .editorial-interlude > div > .text-link {
        grid-column: 1;
        grid-row: auto;

        justify-self: start;

        margin: .75rem 0 0;
    }

    .interlude-focus {
        min-height: 185px;

        padding: 1.25rem 1rem;
    }

    .interlude-focus h2,
    .interlude-focus h3 {
        font-size: clamp(1.85rem, 9vw, 2.5rem);
    }

    .interlude-focus .text-link {
        min-width: 0;
    }


    /* --------------------------------------------------------
       Mobile — Social
       -------------------------------------------------------- */

    .social-interlude {
        grid-template-columns: 1fr;

        gap: 1.15rem;

        padding:
            1.2rem
            1rem;
    }

    .social-interlude h2 {
        font-size: clamp(1.55rem, 7vw, 2rem);
    }

    .social-interlude-actions {
        align-items: flex-start;
        flex-direction: column;

        gap: .8rem;
    }

    .public-social-links {
        gap: .45rem;
    }

    .public-social-links a {
        width: 44px;
        height: 44px;
    }

    .public-social-links img {
        width: 32px;
        height: 32px;
    }

    .home-share-trigger {
        padding:
            .5rem
            .75rem
            .5rem
            0;

        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .home-share .share-options-menu {
        right: auto;
        left: 0;
    }

    .home-share .article-action-status {
        right: auto;
        left: 0;
    }


    /* --------------------------------------------------------
       Mobile — Article
       -------------------------------------------------------- */

    .editorial-signal-summary {
        margin-left: 0;
    }

    .editorial-edition-nav,
    .editorial-archives a,
    .editorial-context {
        flex-direction: column;
    }

    .editorial-satellite-links {
        grid-template-columns: 1fr;
    }

    .editorial-detail {
        width:
            min(
                calc(100% - 1.5rem),
                780px
            );
    }

    .editorial-detail h1 {
        font-size: clamp(2.5rem, 11vw, 3.65rem);
    }

    .article-actions {
        gap: .85rem;
    }

    .editorial-media-analysis {
        width: 100vw;

        padding-inline: 1rem;
    }

    .editorial-source-groups {
        grid-template-columns: 1fr;

        gap: 1.35rem;
    }

    .editorial-intervention {
        margin-left: .2rem;
    }

    .article-support {
        display: block;
    }

    .article-support > a {
        display: inline-block;

        margin-top: .85rem;
    }

    .article-support .button {
        min-width: 0;
    }

    .editorial-sources summary {
        min-height: 48px;

        padding-inline: .1rem;
    }


    /* --------------------------------------------------------
       Mobile — Briefs
       -------------------------------------------------------- */

    .editorial-brief {
        grid-template-columns: 34px 1fr;

        gap: .7rem;
    }

    .brief-position {
        font-size: .95rem;
    }


    /* --------------------------------------------------------
       Mobile — Pages institutionnelles
       -------------------------------------------------------- */

    .after-edition,
    .focus-grid,
    .method-grid,
    .placeholder-grid,
    .related-links,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .after-edition {
        gap: 1.5rem;
    }

    .page-hero {
        padding-block: 3rem;
    }

    .page-hero h1,
    .page-hero-dark h1 {
        font-size: clamp(2.8rem, 13vw, 4.6rem);
    }

    .method-grid {
        gap: 3rem;

        padding-block: 3.5rem;
    }

    .form-row,
    .amount-grid {
        grid-template-columns: 1fr;
    }


    /* --------------------------------------------------------
       Mobile — Focus
       -------------------------------------------------------- */

    .focus-current,
    .focus-hebdo,
    .focus-support {
        grid-template-columns: 1fr;
    }

    .focus-page-hero {
        padding-block: 2.75rem;
    }

    .focus-current h2 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .focus-hebdo {
        gap: 1.6rem;
    }


    /* --------------------------------------------------------
       Mobile — Footer / PWA
       -------------------------------------------------------- */

    .footer-bottom {
        flex-direction: column;
    }

    .pwa-update {
        align-items: flex-start;
        flex-direction: column;
    }
}


/* ============================================================
   RÉDUCTION DES ANIMATIONS
   ============================================================ */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        transition-duration: .01ms !important;

        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}
