/* Styles limited to news content; shared header and footer are preserved. */
.news-page {
    --news-ink: #142f55;
    --news-muted: #536888;
    --news-gold: #c69a48;
    color: var(--news-ink);
    background: radial-gradient(ellipse at 5% 0%, #faf1e9 0, transparent 35%), radial-gradient(ellipse at 100% 15%, #f0eff9 0, transparent 40%), #fbfcff;
    min-height: 65vh;
    padding: clamp(32px, 5vw, 64px) 0 clamp(52px, 7vw, 96px);
    line-height: 1.6;
    overflow-wrap: anywhere;
}
.news-page:not(.news-page--article) {
    position: relative;
    isolation: isolate;
    background: radial-gradient(ellipse 58% 95% at 50% 42%, #fffdf8 0%, #fffdf8eb 28%, #fffdf800 100%), linear-gradient(110deg, #cce4f5, #e8eff8 48%, #c8e1f4);
}
/* Decorative layers stay behind content and inside the news list bounds. */
.news-page:not(.news-page--article)::before,
.news-page:not(.news-page--article)::after {
    content: '';
    position: absolute;
    pointer-events: none;
    z-index: -1;
}
.news-page:not(.news-page--article)::before {
    --moon-size: clamp(320px, 36vw, 540px);
    inset: 0;
    opacity: .6;
    background-image:
        radial-gradient(ellipse 12% 9% at 40% 38%, #b9cfe53d, #d6e4ef14 70%, #ffffff00 100%),
        radial-gradient(ellipse 8% 12% at 58% 54%, #b4cce033, #ffffff00 100%),
        radial-gradient(ellipse 16% 10% at 36% 62%, #c0d3e538, #ffffff00 100%),
        radial-gradient(circle at 50% 50%, #f9fcffd9 0%, #edf5fbb3 43%, #ffffffcc 49.3%, #ffffff00 50%),
        radial-gradient(circle at 50% 50%, #ffffff40 48%, #ffffff1a 58%, #ffffff00 70%);
    background-size: var(--moon-size) var(--moon-size);
    background-position: right -100px bottom -90px;
    background-repeat: no-repeat;
}
.news-page:not(.news-page--article)::after {
    inset: 0;
    background:
        radial-gradient(ellipse 2px 6px at 8% 150px, #ffffffb3 35%, #ffffff00 100%),
        radial-gradient(ellipse 6px 2px at 8% 150px, #ffffffb3 35%, #ffffff00 100%),
        radial-gradient(ellipse 2px 5px at 92% 440px, #ffffff99 35%, #ffffff00 100%),
        radial-gradient(ellipse 5px 2px at 92% 440px, #ffffff99 35%, #ffffff00 100%),
        radial-gradient(ellipse 2px 9px at 88% 110px, #ffffffbf 20%, #ffffff00 100%),
        radial-gradient(ellipse 9px 2px at 88% 110px, #ffffffbf 20%, #ffffff00 100%),
        radial-gradient(circle 16px at 88% 110px, #ffffff38, #ffffff00 100%),
        radial-gradient(ellipse 2px 7px at 96% 65%, #ffffffa6 20%, #ffffff00 100%),
        radial-gradient(ellipse 7px 2px at 96% 65%, #ffffffa6 20%, #ffffff00 100%),
        radial-gradient(circle 13px at 96% 65%, #ffffff30, #ffffff00 100%),
        radial-gradient(ellipse 1.5px 5px at 83% 82%, #ffffff99 20%, #ffffff00 100%),
        radial-gradient(ellipse 5px 1.5px at 83% 82%, #ffffff99 20%, #ffffff00 100%),
        radial-gradient(ellipse 2px 6px at 6% 78%, #ffffff99 20%, #ffffff00 100%),
        radial-gradient(ellipse 6px 2px at 6% 78%, #ffffff99 20%, #ffffff00 100%),
        radial-gradient(ellipse 115% 105% at -12% -12%, #ffffff00 calc(100% - 1px), #ffffffb3 100%, #ffffff00 calc(100% + 1px)),
        radial-gradient(ellipse 125% 115% at -15% -15%, #ffffff00 calc(100% - 1px), #ffffff8c 100%, #ffffff00 calc(100% + 1px)),
        radial-gradient(ellipse 140% 125% at -20% -18%, #ffffff00 calc(100% - 1px), #ffffff73 100%, #ffffff00 calc(100% + 1px));
}
@media (max-width: 980px) {
    .news-page:not(.news-page--article)::before { --moon-size: 340px; opacity: .46; }
    .news-page:not(.news-page--article)::after { opacity: .6; }
}
@media (max-width: 640px) {
    .news-page:not(.news-page--article)::before { --moon-size: 240px; opacity: .38; background-position: right -60px bottom -55px; }
    .news-page:not(.news-page--article)::after { opacity: .45; }
}
.news-page .news-shell { width: min(calc(100% - 64px), var(--container)); margin-inline: auto; }
.news-page .news-heading { text-align: center; margin-bottom: 28px; }
.news-page h1 { margin: 0; color: var(--news-ink); font-family: var(--serif); font-size: clamp(36px, 4.5vw, 56px); line-height: 1.12; font-weight: 700; letter-spacing: -.025em; }
.news-page .news-heading p { margin: 16px auto 0; max-width: 650px; color: var(--news-muted); font-size: 17px; line-height: 1.55; }
.news-page .news-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 36px; }
.news-page .news-filters a { display: inline-flex; justify-content: center; align-items: center; min-height: 42px; padding: 9px 22px; border: 1px solid transparent; border-radius: 999px; background: #eff1f7; font-size: 14px; font-weight: 600; transition: background .2s, border-color .2s, color .2s; }
.news-page .news-filters a:hover { border-color: var(--lunar-silver-blue); background: #e6ebf4; }
.news-page .news-filters a[aria-current="page"] { color: var(--lunar-pearl); background: var(--news-ink); box-shadow: 0 3px 9px #142f5520; }
.news-page a:focus-visible { outline: 3px solid var(--news-gold); outline-offset: 4px; }
.news-page .news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.news-page .news-card { display: flex; flex-direction: column; min-width: 0; overflow: hidden; border: 1px solid #e7ebf3; border-radius: 12px; background: #fff; box-shadow: 0 5px 20px #16355b09; transition: box-shadow .2s, border-color .2s; }
.news-page .news-card:hover { border-color: #d2dce9; box-shadow: 0 10px 26px #16355b12; }
.news-page .news-media { position: relative; aspect-ratio: 1.9; overflow: hidden; background: var(--surface-2); }
.news-page .news-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.news-page .news-placeholder { --placeholder-glow: #cba365; position: absolute; inset: 0; display: grid; place-items: center; overflow: hidden; background: radial-gradient(ellipse at 72% 20%, #cba36535, transparent 50%), linear-gradient(145deg, #243e59, var(--lunar-night)); }
.news-page .news-placeholder--conseils { --placeholder-glow: #e5bc84; background: radial-gradient(ellipse at 65% 15%, #e7c8a250, transparent 60%), linear-gradient(135deg, #847a91, #333f5b 65%, #172840); }
.news-page .news-placeholder--infos-pratiques { background: radial-gradient(ellipse at 75% 5%, #b9c9dc55, transparent 55%), linear-gradient(135deg, #597480, #1b354b 70%, #112139); }
.news-page .news-placeholder--evenements { background: radial-gradient(ellipse at 65% 10%, #d0a77755, transparent 55%), linear-gradient(135deg, #72677f, #30394f 70%, #16243b); }
.news-page .news-placeholder::before, .news-page .news-placeholder::after { content: ''; position: absolute; width: 65%; aspect-ratio: 1; border: 1px solid #e3d0aa22; border-radius: 50%; }
.news-page .news-placeholder::before { left: -20%; bottom: -75%; }
.news-page .news-placeholder::after { right: -18%; top: -75%; }
.news-page .news-placeholder__orbit { width: 104px; aspect-ratio: 1; border: 1px solid #e3d0aa70; border-radius: 50%; box-shadow: 0 0 0 12px #e3d0aa09, 0 0 55px #e3d0aa13; transform: rotate(-25deg); }
.news-page .news-placeholder__orbit::after { content: ''; position: absolute; width: 7px; height: 7px; top: 10px; left: 14px; background: var(--placeholder-glow); border-radius: 50%; box-shadow: 0 0 14px #e3d0aa88; }
.news-page .news-placeholder__star { position: absolute; color: #f0dcaf; font-family: var(--serif); font-size: 70px; line-height: 1; text-shadow: 0 0 25px #e3d0aa44; }
.news-page .news-card__body { display: flex; flex: 1; flex-direction: column; align-items: flex-start; padding: 20px 22px 22px; }
.news-page .news-badge { display: inline-block; width: fit-content; max-width: 100%; padding: 3px 12px; border-radius: 999px; background: var(--news-ink); color: #fff; font-size: 12px; font-weight: 600; line-height: 1.5; }
.news-page .news-card h2 { margin: 12px 0 9px; font-size: 21px; line-height: 1.3; font-weight: 700; }
.news-page .news-card h2 a:hover { text-decoration: underline; text-decoration-color: var(--news-gold); text-underline-offset: 4px; }
.news-page .news-card__excerpt { margin: 0 0 24px; color: var(--news-muted); font-size: 15px; line-height: 1.6; }
.news-page .news-card__footer { margin-top: auto; display: grid; gap: 8px; }
.news-page time { color: var(--news-muted); font-size: 13px; }
.news-page .news-read { display: inline-flex; align-items: center; gap: 10px; width: fit-content; min-height: 32px; color: #234b7a; font-size: 15px; font-weight: 600; }
.news-page .news-read:hover { text-decoration: underline; text-underline-offset: 4px; }
.news-page .news-read span { color: var(--gold-deep); }
.news-page .news-pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin-top: 36px; }
.news-page .news-pagination a { padding: 10px 18px; border: 1px solid #dce3ef; border-radius: 24px; background: #fff; }
.news-page .news-empty { padding: 36px 24px; border: 1px solid #e5e9f2; border-radius: 12px; text-align: center; background: #fff; }
.news-page--article .news-shell { max-width: 860px; }
.news-page .news-breadcrumb { display: flex; align-items: baseline; flex-wrap: wrap; gap: 5px 9px; color: var(--news-muted); font-size: 13px; margin-bottom: 24px; }
.news-page .news-breadcrumb a:hover { text-decoration: underline; }
.news-page .news-breadcrumb [aria-current] { color: var(--news-ink); }
.news-page .news-media--hero {
    aspect-ratio: auto;
    border-radius: 12px;
}

.news-page .news-media--hero img {
    height: auto;
    object-fit: contain;
}
.news-page .news-article__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin: 24px 0 16px; }
.news-page .news-article h1 { font-size: clamp(24px, 2vw, 26px); line-height: 1.15; font-weight: 600; letter-spacing: -.01em; max-width: 800px; }
.news-page .news-editorial { margin-top: 24px; color: #354f70; font-size: 18px; line-height: 1.8; }
.news-page .news-editorial p { margin: 0 0 1.2em; text-align: justify; }
.news-page .news-editorial h2, .news-page .news-editorial h3 { color: var(--news-ink); font-family: var(--serif); line-height: 1.25; margin: 1.3em 0 .6em; }
.news-page .news-editorial h2 { font-size: 30px; }
.news-page .news-editorial h3 { font-size: 25px; }
.news-page .news-editorial ul { list-style: none; padding: 0; margin: 24px 0; }
.news-page .news-editorial ul > li { position: relative; padding-left: 36px; margin: 12px 0; }
.news-page .news-editorial ul > li::before { content: '✓'; position: absolute; left: 0; top: .35em; display: grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; color: #fff; background: #b98220; font-size: 14px; line-height: 1; }
.news-page .news-editorial ol { padding-left: 28px; }
.news-page .news-editorial ol > li { margin: 10px 0; padding-left: 6px; }
.news-page .news-editorial ol > li::marker { color: var(--gold-deep); font-weight: 700; }
.news-page .news-editorial a { color: #234b7a; text-decoration: underline; text-underline-offset: 3px; }
.news-page .news-editorial strong { color: var(--news-ink); }

/* Video displayed inside a publication article. */
.news-page .news-article__video {
    width: min(100%, 340px);
    margin-top: 28px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    border-radius: 12px;
    background: #0c1624;
}

.news-page .news-article__video video {
    display: block;
    width: 100%;
    max-height: 760px;
    background: #000;
}

.news-page .news-article__video--tiktok {
    width: min(100%, 340px);
    margin-left: auto;
    margin-right: auto;
    aspect-ratio: 9 / 16;
}

.news-page .news-article__video--tiktok iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.news-page .news-article__video-link {
    margin-top: 28px;
}

.news-page .news-article__action { margin-top: 28px; }
.news-page .news-article__action .news-read { padding: 12px 20px; border: 1px solid #d4b56a; border-radius: 999px; background: #17365f; color: #fff; text-decoration: none; box-shadow: 0 8px 20px rgba(23, 54, 95, .14); transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.news-page .news-article__action .news-read:hover { background: #102b4d; color: #fff; text-decoration: none; transform: translateY(-1px); box-shadow: 0 10px 24px rgba(23, 54, 95, .2); }

.news-page .news-article__share {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid #e5dfd2;
}

.news-page .news-share__title {
    margin: 0 0 14px;
    color: var(--news-ink);
    font-size: 16px;
    font-weight: 700;
}

.news-page .news-share__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.news-page .news-share__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 9px 15px;
    border: 1px solid #d8dee8;
    border-radius: 999px;
    background: #fff;
    color: #234b7a;
    font: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.news-page .news-share__button:hover {
    background: #f7f9fc;
    border-color: #c7d0dc;
    text-decoration: none;
    transform: translateY(-1px);
}

.news-page .news-share__button--copy {
    background: #f1f3f5;
    border-color: #d9dee4;
}

.news-page .news-share__button--facebook {
    background: #e8f1ff;
    border-color: #bfd4f2;
}

.news-page .news-share__button--whatsapp {
    background: #e7f8ee;
    border-color: #bfe8cf;
}

.news-page .news-share__button--snapchat {
    background: #fff9cc;
    border-color: #eee39a;
}

.news-page .news-share__status {
    min-height: 1.4em;
    margin: 10px 0 0;
    color: var(--news-muted);
    font-size: 13px;
}
.news-page .news-article__return { margin-top: 36px; padding-top: 24px; border-top: 1px solid #e5dfd2; }
@media (max-width: 980px) {
    .news-page .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
}
@media (max-width: 640px) {
    .news-page .news-shell { width: calc(100% - 34px); }
    .news-page .news-editorial {
        font-size: 17px;
        line-height: 1.65;
    }
    .news-page .news-editorial p { text-align: left; }
    .news-page .news-article__video,
    .news-page .news-article__video--tiktok {
        width: min(100%, 280px);
    }
    .news-page--article .news-article h1 { font-size: 22px; line-height: 1.25; }
    .news-page .news-grid { grid-template-columns: minmax(0, 1fr); }
    .news-page .news-heading__break { display: none; }
    .news-page .news-heading p { font-size: 16px; }
    .news-page .news-filters { gap: 8px; margin-bottom: 26px; }
    .news-page .news-filters a { padding: 8px 15px; }
    .news-page .news-card__body { padding: 18px 20px 20px; }
    .news-page .news-editorial { font-size: 17px; }
}
@media (prefers-reduced-motion: reduce) {
    .news-page .news-card, .news-page .news-filters a { transition: none; }
}

.news-page .news-newsletter { display: flex; align-items: flex-start; gap: 22px; margin-top: 32px; padding: clamp(22px, 3vw, 34px); border: 1px solid #e4e5f0; border-radius: 12px; background: radial-gradient(ellipse at 95% 0%, #fbf1dd80, transparent 45%), linear-gradient(120deg, #f1f3fc, #fafaff); box-shadow: 0 4px 18px #16355b05; scroll-margin-top: 90px; }
.news-page .news-newsletter__symbol { color: var(--gold-deep); font-size: 46px; line-height: 1; margin-top: 4px; }
.news-page .news-newsletter__content { flex: 1; min-width: 0; }
.news-page .news-newsletter h2 { margin: 0 0 7px; font-family: var(--serif); font-size: clamp(24px, 2.5vw, 32px); line-height: 1.2; }
.news-page .news-newsletter p { margin: 0 0 18px; color: var(--news-muted); font-size: 14px; }
.news-page .news-newsletter__fields { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr) auto; gap: 14px; align-items: end; }
.news-page .news-newsletter__fields label { display: grid; gap: 5px; font-size: 13px; color: var(--news-muted); }
.news-page .news-newsletter__fields input { width: 100%; min-width: 0; min-height: 46px; padding: 11px 14px; border: 1px solid #dce2ee; border-radius: 7px; background: #fff; color: var(--news-ink); font: inherit; font-size: 15px; }
.news-page .news-newsletter__submit { min-height: 46px; padding: 12px 24px; border: 1px solid #d1a14c; border-radius: 7px; background: linear-gradient(125deg, #f4dc9f, #dcad4e); color: #322609; font: inherit; font-size: 15px; font-weight: 700; cursor: pointer; }
.news-page .news-newsletter__submit:hover { background: #f0cf85; }
.news-page .news-newsletter__consent { display: flex; align-items: flex-start; gap: 8px; margin-top: 14px; font-size: 13px; color: var(--news-muted); cursor: pointer; }
.news-page .news-newsletter__consent input { flex: 0 0 auto; margin-top: 4px; accent-color: var(--news-ink); }
.news-page .news-newsletter .news-newsletter__privacy { font-size: 12px; margin: 8px 0 0; }
.news-page .news-newsletter__privacy a { text-decoration: underline; text-underline-offset: 3px; }
.news-page .news-newsletter .news-newsletter__message { padding: 12px 14px; background: #fff; border-left: 3px solid var(--news-gold); color: var(--news-ink); }
.news-page .news-newsletter__confirmation { display: flex; align-items: flex-start; gap: 18px; margin: 22px 0; padding: clamp(20px, 3vw, 28px); border: 1px solid #c69a4870; border-radius: 12px; background: linear-gradient(125deg, #1c3656, var(--lunar-night)); box-shadow: 0 8px 24px #142f551a; }
.news-page .news-newsletter__confirmation-icon { display: grid; place-items: center; flex: 0 0 52px; height: 52px; border: 1px solid #e3c28270; border-radius: 50%; background: #e3c28212; color: #f0d395; font-size: 30px; line-height: 1; }
.news-page .news-newsletter__confirmation h3 { margin: 0 0 10px; color: #f0d395; font-family: var(--serif); font-size: clamp(24px, 2.6vw, 30px); line-height: 1.2; }
.news-page .news-newsletter__confirmation .news-newsletter__confirmation-main { margin: 0 0 10px; color: var(--lunar-pearl); font-size: 16px; line-height: 1.6; }
.news-page .news-newsletter__confirmation .news-newsletter__confirmation-note { margin: 0; color: #d0dbea; font-size: 14px; line-height: 1.6; }
@media (max-width: 640px) {
    .news-page .news-newsletter__confirmation { flex-direction: column; gap: 14px; }
    .news-page .news-newsletter__confirmation-icon { flex-basis: auto; width: 48px; height: 48px; }
}
.news-page .news-newsletter__trap { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.news-page .news-newsletter input:focus-visible, .news-page .news-newsletter__submit:focus-visible { outline: 3px solid var(--news-gold); outline-offset: 3px; }
@media (max-width: 980px) {
    .news-page .news-newsletter__fields { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .news-page .news-newsletter__fields .news-newsletter__submit { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
    .news-page .news-newsletter { gap: 12px; }
    .news-page .news-newsletter__symbol { display: none; }
    .news-page .news-newsletter__fields { grid-template-columns: minmax(0, 1fr); }
}

.news-article__signature-feather {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 58px;
    margin: -52px 18px 4px 0;
    pointer-events: none;
}

.news-article__signature-feather img {
    display: block;
    width: 120px;
    height: auto;
    opacity: .82;
    filter: drop-shadow(0 0 8px rgba(205, 163, 74, .16));
    transform: rotate(-5deg);
}
