@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Schibsted+Grotesk:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

/* ”€”€ Variables ”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€ */
:root {
  --ink: #d05807;
  --ink-2: #c14a00;
  --ink-3: #000000;
  --paper:    #F8F5F0;
  --paper-2:  #EDE8E0;
  --paper-3:  #DDD6CA;
  --gold:     #D4A83A;
  --gold-l:   #E8C060;
  --red:      #C0392B;
  --blue:     #1A4A7A;
  --white:    #FFFFFF;
  --ff-head:  'Playfair Display', Georgia, serif;
  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-body:  'Schibsted Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --ff-mono:  'JetBrains Mono', monospace;
  --ff-ui:    system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --r:        4px;
  --shadow:   0 2px 16px rgba(0,0,0,.08);
  --shadow-l: 0 8px 40px rgba(0,0,0,.14);
  --trans:    .2s ease;
}

/* ”€”€ Reset ”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-head);
  font-weight: 900;
}
body.podcast-player-open { padding-bottom: 84px; }
img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
.icon { width: 1em; height: 1em; display: inline-block; vertical-align: -.14em; flex-shrink: 0; }
.inline-form { display: inline; }
.link-button {
  border: 0; padding: 0; background: transparent; color: inherit; cursor: pointer;
  font: inherit; text-align: left;
}

/* ”€”€ Masthead ”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€ */
.masthead {
  background: var(--ink);
  color: var(--paper);
  border-bottom: 3px solid var(--gold);
}
.masthead-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2rem;
  max-width: 1280px; margin: 0 auto;
  min-height: 64px;
}
.site-logo {
  font-family: var(--ff-head);
  font-size: 1.75rem; font-weight: 900;
  letter-spacing: -.02em;
  color: var(--paper);
}
.site-logo span { color: var(--gold); }
.masthead-actions { display: flex; gap: .75rem; align-items: center; }
.masthead-actions a {
  font-family: var(--ff-ui); font-size: .8rem; text-transform: none; letter-spacing: .01em;
  color: var(--paper-3);
  padding: .4rem .8rem; border-radius: var(--r);
  transition: var(--trans);
}
.masthead-actions .link-button {
  font-family: var(--ff-ui); font-size: .8rem; text-transform: none; letter-spacing: .01em;
  color: var(--paper-3); padding: .4rem .8rem; border-radius: var(--r); transition: var(--trans);
}
.masthead-actions .link-button:hover { color: var(--gold); }
.masthead-actions a:hover { color: var(--gold); }
.masthead-actions .btn-subscribe {
  background: var(--gold); color: var(--ink); font-weight: 600;
  padding: .45rem 1.1rem;
}
.masthead-actions .btn-subscribe:hover { background: var(--gold-l); color: var(--ink); }

.nav-strip {
  border-top: 1px solid rgba(255,255,255,.1);
  max-width: 1280px; margin: 0 auto;
  padding: 0 2rem;
  display: flex; gap: 0; overflow-x: auto;
}
.nav-strip a {
  font-family: var(--ff-ui); font-size: .78rem; font-weight: 500;
  text-transform: none; letter-spacing: .01em;
  color: var(--paper-3); white-space: nowrap;
  padding: .7rem 1rem; display: block;
  border-bottom: 2px solid transparent;
  transition: var(--trans);
}
.nav-strip a:hover, .nav-strip a.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ”€”€ Hero / Feature ”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€ */
.hero {
  background: var(--ink);
  position: relative; overflow: hidden;
}
.hero-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 520px;
}
.hero-content {
  padding: 4rem 3rem 4rem 2rem;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; z-index: 2;
}
.hero-cat {
  font-family: var(--ff-ui); font-size: .72rem; font-weight: 700;
  text-transform: none; letter-spacing: .01em; color: var(--gold);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: var(--ff-head); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900; line-height: 1.18; color: var(--white);
  margin-bottom: 1rem;
}
.hero-title a { color: inherit; }
.hero-title a:hover { color: var(--gold); }
.hero-excerpt { color: var(--paper-3); font-size: 1rem; margin-bottom: 1.5rem; }
.hero-meta {color: var(--paper);font-size: .82rem;font-family: var(--ff-ui);}
.hero-meta strong { color: var(--paper-3); }
.hero-img {
  position: relative; overflow: hidden;
}
.hero-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.hero:hover .hero-img img { transform: scale(1.03); }
.hero-img::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(26,20,16,.4) 0%, transparent 50%);
  z-index: 1;
}

/* ”€”€ Main layout ”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€ */
.container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.layout-main {
  display: grid; grid-template-columns: 1fr 320px;
  gap: 3rem; padding: 3rem 2rem;
  max-width: 1280px; margin: 0 auto;
}

/* ”€”€ Section heading ”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€ */
.section-head {
  display: flex; align-items: baseline; gap: 1rem;
  margin-bottom: 2rem; padding-bottom: .75rem;
  border-bottom: 2px solid var(--ink);
}
.section-head h2 {
  font-family: var(--ff-head); font-size: 1.35rem; font-weight: 900;
}
.section-head a {
  font-family: var(--ff-ui); font-size: .78rem; color: var(--gold);
  text-transform: none; letter-spacing: .01em; margin-left: auto;
}
.section-head a:hover { text-decoration: underline; }

/* ”€”€ Article cards ”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€ */
.article-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2rem;
}
.card {
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--trans), transform var(--trans);
  display: flex;
  flex-direction: column;
}
.card:hover { box-shadow: var(--shadow-l); transform: translateY(-3px); }
.card-img {
  aspect-ratio: 16/9; overflow: hidden; background: var(--paper-2);
}
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-img img { transform: scale(1.06); }
.card-img-placeholder {
  width: 100%; aspect-ratio: 16/9; background: var(--paper-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--ink-3); font-size: 2.5rem;
}
.card-img-placeholder .icon { width: 2.5rem; height: 2.5rem; }
.card-body { padding: 1.25rem 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.card-cat {
  font-family: var(--ff-ui);
  font-size: .7rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: .01em;
  margin-bottom: .5rem;
  color: #000;
}
.card-title {
  font-family: var(--ff-head); font-size: 1.15rem; font-weight: 900; line-height: 1.3;
  margin-bottom: .6rem;
}
.card-title a:hover {color: var(--ink-2);}
.card-excerpt { font-size: .88rem; color: var(--ink-2); flex: 1; margin-bottom: .75rem; }
.card-meta {
  font-family: var(--ff-ui); font-size: .75rem; color: var(--ink-3);
  display: flex; align-items: center; gap: .6rem; margin-top: auto;
}
.card-meta .dot { opacity: .4; }
/* ”€”€ Article page ”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€ */
.article-hero {
  background: var(--ink); color: var(--white);
  padding: 4rem 2rem 3rem;
}
.article-hero-inner { max-width: 780px; margin: 0 auto; }
.article-hero .article-cat {
  font-family: var(--ff-ui);
  font-size: .72rem;
  font-weight: 700;
  text-transform: none;
  background-color: var(--white);
  border-radius: 3px;
  padding: 3px;
  letter-spacing: .01em;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1rem;
}
.article-hero h1 {
  font-family: var(--ff-head); font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900; line-height: 1.2; margin-bottom: 1rem;
}
.article-hero .excerpt {
  font-size: 1.15rem; color: var(--paper-3); margin-bottom: 1.5rem; line-height: 1.6;
}
.article-hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--ff-ui);
  font-size: .82rem;
  color: var(--paper);
  flex-wrap: wrap;
}
.article-hero-meta strong { color: var(--paper-2); }
.article-hero-meta .sep { opacity: .3; }

.article-cover { max-height: 520px; overflow: hidden; }
.article-cover img { width: 100%; height: 100%; object-fit: cover; }

.article-wrap { max-width: 780px; margin: 0 auto; padding: 3rem 2rem 4rem; }
/* ”€”€ Article body €” covers all Quill-generated HTML ”€”€”€”€”€”€”€”€”€”€”€ */
.article-content {
  font-family: var(--ff-body);
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--ink-2);
}

/* Paragraphs */
.article-content p {
  margin-bottom: 1.4em;
}

/* Headings */
.article-content h1,
.article-content h2 {
  font-family: var(--ff-head);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--ink);
  margin: 1.3em 0 .6em;
  line-height: 1.2;
}
.article-content h3 {
  font-family: var(--ff-head);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--ink);
  margin: 1.6em 0 .5em;
  line-height: 1.25;
}
.article-content h4,
.article-content h5,
.article-content h6 {
  font-family: var(--ff-ui);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 1.4em 0 .4em;
  text-transform: none;
  letter-spacing: .01em;
}

/* Inline formatting */
.article-content strong, .article-content b { color: inherit; font-weight: 700; }
.article-content em, .article-content i     { color: inherit; font-style: italic; }
.article-content u                          { text-decoration: underline; text-underline-offset: 3px; }
.article-content s                          { text-decoration: line-through; opacity: .6; }

/* Links */
.article-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article-content a:hover { color: var(--gold); }
.article-content .article-glossary-term {
  position: relative; padding: 0 .04em; border-bottom: 1.5px dotted var(--blue); color: var(--ink);
  cursor: pointer; text-decoration: none; transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.article-content .article-glossary-term::after {
  position: relative; top: -.42em; margin-left: .1em; color: var(--blue);
  content: "i"; font-family: Georgia, serif; font-size: .62em; font-style: italic; font-weight: 800;
}
.article-content .article-glossary-term:hover, .article-content .article-glossary-term:focus-visible {
  border-bottom-color: var(--gold); background: rgba(0,118,168,.07); color: var(--blue); outline: none;
}
.article-glossary-popover {
  position: fixed; z-index: 80; padding: 1rem 1.1rem 1.05rem; border: 1px solid var(--paper-3);
  border-top: 4px solid var(--blue); background: #fff; box-shadow: 0 14px 38px rgba(24,34,45,.2);
}
.article-glossary-popover[hidden] { display: none; }
.article-glossary-popover-kicker { margin-bottom: .28rem; color: var(--blue); font-family: var(--ff-ui); font-size: .64rem; font-weight: 850; letter-spacing: .01em; text-transform: none; }
.article-glossary-popover strong { display: block; padding-right: 1.8rem; color: var(--ink); font-family: var(--ff-head); font-size: 1.18rem; line-height: 1.15; }
.article-glossary-popover p { margin: .62rem 0 0; color: var(--ink-2); font-family: var(--ff-body); font-size: .94rem; line-height: 1.55; white-space: pre-line; }
.article-glossary-popover-close {
  position: absolute; top: .58rem; right: .58rem; display: grid; width: 28px; height: 28px; place-items: center;
  border: 0; background: transparent; color: var(--ink-3); cursor: pointer;
}
.article-glossary-popover-close:hover { color: var(--blue); }
.article-glossary-popover-close .icon { width: 1rem; height: 1rem; }

/* Blockquote */
.article-content blockquote {
  position: relative;
  border-left: 4px solid var(--blue);
  padding: 0.8rem 1.2rem 0.8rem 2.8rem;
  margin: 2em 0;
  background: var(--paper-2);
  border-radius: 0 6px 6px 0;
  color: var(--ink);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.65;
}
.article-content blockquote::before {
  content: "\201C";
  position: absolute;
  top: 0.2rem;
  left: 0.75rem;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.35;
  pointer-events: none;
}
.article-content blockquote p { margin-bottom: 0; }

/* Lists */
.article-content ul,
.article-content ol {
  padding-left: 1.7em;
  margin-bottom: 1.3em;
}
.article-content li { margin-bottom: .45em; }
.article-content li[data-list="bullet"] { list-style-type: disc; }
.article-content li[data-list="ordered"] { list-style-type: decimal; }
.article-content ol li[data-list="bullet"] {
  list-style-type: disc;
}
.article-content ol li[data-list="bullet"]::marker {
  content: "\2022  ";
}
.article-content li > ul,
.article-content li > ol { margin-bottom: 0; margin-top: .3em; }

/* Code */
.article-content code {
  font-family: var(--ff-mono);
  font-size: .88em;
  background: var(--paper-2);
  padding: .15em .4em;
  border-radius: 3px;
  color: var(--ink);
}
.article-content pre {
  background: var(--ink);
  color: var(--paper);
  padding: 1.25rem 1.5rem;
  border-radius: var(--r);
  overflow-x: auto;
  margin: 1.5em 0;
  font-family: var(--ff-mono);
  font-size: .88rem;
  line-height: 1.6;
}
.article-content pre code {
  background: none;
  padding: 0;
  color: inherit;
  font-size: inherit;
}

/* Images */
.article-content img {
  border-radius: var(--r);
  max-width: 100%;
  display: block;
}

/* Horizontal rule */
.article-content hr {
  border: none;
  border-top: 2px solid var(--paper-3);
  margin: 2.5em 0;
}

/* Text alignment (Quill inline styles) */
.article-content [style*="text-align: center"],
.article-content .ql-align-center  { text-align: center; }
.article-content [style*="text-align: right"],
.article-content .ql-align-right   { text-align: right; }
.article-content [style*="text-align: justify"],
.article-content .ql-align-justify { text-align: justify; }

/* Quill text size formats */
.article-content .ql-size-small, .ql-editor .ql-size-small { font-size: 0.85em; }
.article-content .ql-size-large, .ql-editor .ql-size-large { font-size: 1.35em; }
.article-content .ql-size-huge,  .ql-editor .ql-size-huge  { font-size: 1.8em; }

/* Quill indentation */
.article-content .ql-indent-1 { padding-left: 2em; }
.article-content .ql-indent-2 { padding-left: 4em; }
.article-content .ql-indent-3 { padding-left: 6em; }

/* Quill code block */
.article-content .ql-code-block-container,
.article-content .ql-syntax {
  background: var(--ink);
  color: var(--paper);
  padding: 1.25rem 1.5rem;
  border-radius: var(--r);
  overflow-x: auto;
  margin: 1.5em 0;
  font-family: var(--ff-mono);
  font-size: .88rem;
  line-height: 1.6;
}

/* Empty paragraphs Quill sometimes inserts */
.article-content p:empty,
.article-content p br:only-child { display: none; }

/* Paywall overlay */
.paywall-fade {
  position: relative;
  overflow: hidden;
}
.paywall-fade::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(transparent, var(--paper));
}
.paywall-gate {
  background: var(--white); border: 1px solid var(--paper-3);
  border-radius: 12px; padding: 3rem; text-align: center;
  box-shadow: var(--shadow-l); max-width: 540px; margin: 2rem auto;
}
.paywall-gate .lock-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.paywall-gate .lock-icon .icon { width: 1em; height: 1em; }
.status-icon .icon { width: 1.5rem; height: 1.5rem; color: #059669; }
.empty-state-icon { margin-bottom: 1rem; color: var(--ink-3); }
.empty-state-icon .icon { width: 2.5rem; height: 2.5rem; }
.flash .icon { width: 1em; height: 1em; margin-right: .35rem; }
.paywall-gate h3 {
  font-family: var(--ff-head); font-size: 1.6rem; margin-bottom: .75rem;
}
.paywall-gate p { color: var(--ink-2); margin-bottom: 1.5rem; }

/* Tags row */
.tags-row { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 2rem; }
.tag-pill {
  font-family: var(--ff-ui); font-size: .75rem; font-weight: 500;
  padding: .3rem .75rem; border-radius: 2rem;
  background: var(--paper-2); color: var(--ink-2);
  transition: var(--trans);
}
.tag-pill:hover { background: var(--gold); color: var(--white); }

/* ”€”€ Sidebar ”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€ */
.sidebar { padding-top: .25rem; }
.sidebar-widget { margin-bottom: 2.5rem; }
.sidebar-widget h3 {
  font-family: var(--ff-head); font-size: 1.1rem; font-weight: 900;
  padding-bottom: .6rem; margin-bottom: 1rem;
  border-bottom: 2px solid var(--ink);
}
.sidebar-article {
  display: grid; grid-template-columns: 80px 1fr;
  gap: .75rem; margin-bottom: 1rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--paper-2);
}
.sidebar-article:last-child { border-bottom: none; }
.sidebar-article-img {
  width: 80px; height: 60px; object-fit: cover; border-radius: 3px;
  background: var(--paper-2);
}
.sidebar-article-title {
  font-family: var(--ff-head); font-size: 1.15rem; font-weight: 900; line-height: 1.3;
}
.sidebar-article-title a:hover { color: var(--gold); }
.sidebar-article-meta { font-family: var(--ff-ui); font-size: .72rem; color: var(--ink-3); margin-top: .25rem; }

.subscribe-box {
  background: var(--ink); color: var(--white);
  padding: 1.75rem; border-radius: var(--r); text-align: center;
}
.subscribe-box h3 { color: var(--white); border-color: rgba(255,255,255,.2); }
.subscribe-box p { color: var(--paper-3); font-size: .9rem; margin-bottom: 1.25rem; }

/* ”€”€ Buttons ”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€ */
.btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .65rem 1.5rem; border-radius: var(--r);
  font-family: var(--ff-ui); font-size: .85rem; font-weight: 600;
  text-transform: none; letter-spacing: .01em;
  cursor: pointer; border: 2px solid transparent;
  transition: var(--trans);
}
.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: #9A7115; border-color: #9A7115; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover { background: rgba(255,255,255,.1); }
.btn-sm { padding: .4rem .9rem; font-size: .78rem; }
.btn-block { width: 100%; justify-content: center; }

/* ”€”€ Forms ”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€ */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block; font-family: var(--ff-ui); font-size: .82rem; font-weight: 600;
  text-transform: none; letter-spacing: .01em; color: var(--ink-2);
  margin-bottom: .4rem;
}
.form-control {
  width: 100%; padding: .7rem 1rem;
  border: 1.5px solid var(--paper-3); border-radius: var(--r);
  font-family: var(--ff-body); font-size: 1rem; background: var(--white);
  color: var(--ink); transition: border-color var(--trans);
}
.form-control:focus { outline: none; border-color: var(--gold); }
.form-control::placeholder { color: var(--ink-3); }
.form-hint { font-family: var(--ff-ui); font-size: .78rem; color: var(--ink-3); margin-top: .3rem; }
.form-error { font-family: var(--ff-ui); font-size: .78rem; color: var(--red); margin-top: .3rem; }

/* ”€”€ Flash ”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€ */
.flash {
  padding: .9rem 1.25rem; border-radius: var(--r); margin-bottom: 1.25rem;
  font-family: var(--ff-ui); font-size: .9rem;
}
.flash-success { background: #ECFDF5; color: #065F46; border: 1px solid #6EE7B7; }
.flash-error   { background: #FEF2F2; color: #991B1B; border: 1px solid #FCA5A5; }
.flash-warning { background: #FFFBEB; color: #92400E; border: 1px solid #FDE68A; }
.flash-info    { background: #EFF6FF; color: #1E40AF; border: 1px solid #BFDBFE; }
.flash-close {
  float: right; display: inline-grid; place-items: center;
  width: 20px; height: 20px; margin: -.1rem -.2rem 0 .6rem; padding: 0;
  border: 0; border-radius: 50%; background: transparent;
  color: currentColor; opacity: .55; font-size: 1.05rem; line-height: 1;
  cursor: pointer; transition: opacity .15s, background .15s;
}
.flash-close:hover { opacity: 1; background: rgba(0,0,0,.06); }

/* ”€”€ Auth pages ”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€ */
.auth-body { min-height: 100vh; display: flex; flex-direction: column; }
.auth-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 2rem; background: var(--white); border-bottom: 1px solid var(--paper-3);
  flex: 0 0 auto;
}
.auth-topbar-back {
  display: flex; align-items: center; gap: .3rem;
  font-family: var(--ff-ui); font-size: .85rem; font-weight: 600; color: var(--ink-3);
  transition: color var(--trans);
}
.auth-topbar-back .icon { width: 1.2em; height: 1.2em; }
.auth-topbar-back:hover { color: var(--gold); }
.auth-topbar-logo { width: 128px; margin: 0; }
.auth-topbar-lang { font-size: .78rem; }
.auth-wrap {
  display: flex; flex: 1;
  background: var(--paper);
}
.auth-left {
  flex: 1; background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
  padding: 4rem; position: relative; overflow: hidden;
}
.auth-left::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,.015) 40px, rgba(255,255,255,.015) 80px);
}
.auth-left h2 {
  font-family: var(--ff-head); font-size: 2.8rem; font-weight: 900;
  color: var(--white); line-height: 1.2; margin-bottom: 1rem; position: relative;
}
.auth-left h2 em { color: var(--gold); font-style: italic; }
.auth-left p { color: var(--paper-3); font-size: 1.05rem; max-width: 420px; position: relative; }
.auth-brand-logo {
  display: inline-block;
  width: min(240px, 58vw);
  color: var(--site-logo-color, var(--gold));
  margin: 0 0 1.75rem;
  position: relative;
  z-index: 1;
}
.auth-brand-logo .site-logo-mark {
  width: 100%;
}
.auth-space-label {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin-bottom: 1rem;
  padding: .42rem .65rem;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  color: var(--gold-l);
  font-family: var(--ff-ui);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .01em;
  text-transform: none;
}
.redaction-auth-body .auth-left {
  background:
    radial-gradient(circle at 18% 18%, color-mix(in srgb, var(--gold) 18%, transparent), transparent 28rem),
    linear-gradient(135deg, var(--ink) 0%, #121820 100%);
}
.redaction-auth-body .auth-right {
  box-shadow: -18px 0 50px rgba(13, 20, 30, .14);
}
.auth-right {
  width: 480px; display: flex; flex-direction: column;
  justify-content: center; padding: 4rem;
  background: var(--white); box-shadow: -10px 0 40px rgba(0,0,0,.08);
}
.auth-right h1 {
  font-family: var(--ff-head); font-size: 2rem; font-weight: 900; margin-bottom: 2rem;
}
.auth-portal-note {
  margin: -1.2rem 0 1.35rem;
  font-family: var(--ff-ui);
  font-size: .88rem;
  line-height: 1.55;
  color: var(--ink-3);
}
.auth-wrap-solo { align-items: center; justify-content: center; padding: 2rem 1rem; }
.auth-wrap-solo .auth-right {
  width: 100%; max-width: 440px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(13, 20, 30, .12);
  padding: 3rem;
}
@media (max-width: 640px) {
  .auth-wrap-solo .auth-right { padding: 2.25rem 1.5rem; box-shadow: none; }
}
.auth-switch { margin-top: 1.5rem; text-align: center; font-family: var(--ff-ui); font-size: .88rem; color: var(--ink-3); }
.auth-switch a { color: var(--gold); font-weight: 600; }

/* Pill tab switcher (Se connecter / Créer un compte) */
.auth-tabs {
  display: flex; justify-content: center; margin: 0 auto 2rem;
  background: var(--paper-2); border-radius: 999px; padding: .3rem;
  width: fit-content; max-width: 100%;
}
.auth-tab {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .55rem 1.4rem; border-radius: 999px;
  font-family: var(--ff-ui); font-size: .85rem; font-weight: 700;
  color: var(--ink-3); white-space: nowrap; transition: var(--trans);
}
.auth-tab.active { background: var(--ink-3); color: var(--white); }
.auth-tab:not(.active):hover { color: var(--gold); }

/* Password field with show/hide toggle */
.form-control-wrap { position: relative; }
.form-control-wrap .form-control { padding-right: 2.8rem; }
.password-toggle {
  position: absolute; top: 50%; right: .6rem; transform: translateY(-50%);
  border: 0; background: transparent; padding: .3rem; cursor: pointer;
  color: var(--ink-3); display: flex; border-radius: var(--r);
}
.password-toggle:hover { color: var(--gold); }
.password-toggle .icon { width: 1.15em; height: 1.15em; }
.password-toggle .icon-eye-off { display: none; }
.password-toggle.is-visible .icon-eye { display: none; }
.password-toggle.is-visible .icon-eye-off { display: block; }

/* Dark submit button used on auth forms */
.btn-auth-submit { background: var(--ink-3); color: var(--white); border-color: var(--ink-3); }
.btn-auth-submit:hover { background: #2a2a2a; border-color: #2a2a2a; }
.auth-verification-resend { margin-top: 1.1rem; padding-top: .9rem; border-top: 1px solid var(--paper-3); font-family: var(--ff-ui); }
.auth-verification-resend summary { color: var(--gold); cursor: pointer; font-size: .82rem; font-weight: 700; }
.auth-verification-resend form { display: grid; gap: .55rem; margin-top: .8rem; }
.auth-verification-resend .btn { margin-top: .15rem; }

/* ”€”€ Plans / Pricing ”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€ */
.plans-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem; margin: 2rem 0;
}
.plan-card {
  background: var(--white); border: 2px solid var(--paper-3);
  border-radius: 12px; padding: 2rem; position: relative;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.plan-card.featured { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(212,168,58,.15); }
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--white);
  font-family: var(--ff-ui); font-size: .72rem; font-weight: 700;
  text-transform: none; letter-spacing: .01em; padding: .25rem .9rem; border-radius: 2rem;
}
.plan-name { font-family: var(--ff-head); font-size: 1.4rem; font-weight: 900; margin-bottom: .25rem; }
.plan-price {
  font-family: var(--ff-head); font-size: 3rem; font-weight: 900; line-height: 1;
  margin-bottom: 1rem; color: var(--ink);
}
.plan-price sup { font-size: 1.4rem; vertical-align: super; }
.plan-price .period { font-family: var(--ff-ui); font-size: .85rem; color: var(--ink-3); font-weight: 400; }
.plan-features { list-style: none; margin-bottom: 1.5rem; }
.plan-features li {
  display: flex; align-items: center; gap: .6rem;
  padding: .4rem 0; font-size: .9rem; color: var(--ink-2);
  border-bottom: 1px solid var(--paper-2);
}
.plan-features li::before {
  content: ''; width: .65rem; height: .35rem; flex-shrink: 0;
  border-left: 2px solid var(--gold); border-bottom: 2px solid var(--gold);
  transform: rotate(-45deg) translateY(-.08rem);
}

/* ”€”€ Account page ”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€ */
.account-wrap { max-width: 960px; margin: 0 auto; padding: 3rem 2rem; }
.account-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 3rem; }
.account-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--gold); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-size: 2rem; font-weight: 700; flex-shrink: 0;
}
.account-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--paper-2); margin-bottom: 2rem; }
.account-tabs a {
  font-family: var(--ff-ui); font-size: .85rem; font-weight: 600;
  text-transform: none; letter-spacing: .01em; color: var(--ink-3);
  padding: .75rem 1.25rem; border-bottom: 2px solid transparent;
  margin-bottom: -2px; transition: var(--trans);
}
.account-tabs a.active, .account-tabs a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.account-empty-card {
  max-width: 620px; padding: 2.2rem; border: 1px solid var(--paper-3); border-radius: 10px;
  background: var(--white); text-align: center;
}
.account-empty-card h3 { margin: .4rem 0 .5rem; font-family: var(--ff-head); font-size: 1.35rem; }
.account-empty-card p { color: var(--ink-3); }
.account-saved { max-width: 860px; }
.account-saved-list { display: grid; gap: .85rem; }
.account-saved-card {
  display: grid; grid-template-columns: 180px 1fr; gap: 1rem;
  padding: .85rem; border: 1px solid var(--paper-3); border-radius: 10px; background: var(--white);
}
.account-saved-cover { display: block; min-height: 128px; overflow: hidden; border-radius: 8px; background: var(--paper-2); }
.account-saved-cover img { width: 100%; height: 100%; object-fit: cover; }
.account-saved-body { min-width: 0; }
.account-saved-kicker {
  display: block; margin-bottom: .2rem; color: var(--blue);
  font-family: var(--ff-ui); font-size: .72rem; font-weight: 850;
}
.account-saved-card h3 { margin: 0; font-family: var(--ff-head); font-size: 1.25rem; line-height: 1.16; }
.account-saved-card h3 a { color: var(--ink); text-decoration: none; }
.account-saved-card h3 a:hover { color: var(--blue); }
.account-saved-card p { margin: .45rem 0 0; color: var(--ink-3); font-size: .86rem; line-height: 1.45; }
.account-saved-meta {
  display: flex; flex-wrap: wrap; gap: .5rem .8rem; align-items: center; margin-top: .75rem;
  color: var(--ink-3); font-family: var(--ff-ui); font-size: .76rem;
}
.account-saved-meta form { margin: 0; }
.account-saved-meta button {
  border: 0; background: transparent; color: var(--blue); cursor: pointer;
  font: inherit; font-weight: 750; padding: 0;
}
.account-saved-meta button:hover { color: var(--ink); }

/* ”€”€ Footer ”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€ */
footer {
  background: var(--ink); color: var(--paper-3);
  padding: 3rem 2rem 1.5rem; margin-top: 4rem;
}
.footer-inner { max-width: 1280px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 1.5rem;
}
.footer-brand .site-logo { font-size: 1.5rem; margin-bottom: .75rem; }
.footer-brand p { font-size: .88rem; max-width: 280px; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--ff-ui); font-size: .75rem; font-weight: 700;
  text-transform: none; letter-spacing: .01em; color: var(--white);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block; font-size: .88rem; color: var(--paper-3);
  margin-bottom: .5rem; transition: var(--trans);
}
.footer-col a:hover { color: var(--gold); }
.footer-col .link-button { font-size: .88rem; color: var(--paper-3); transition: var(--trans); }
.footer-col .link-button:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--ff-ui); font-size: .78rem; color: var(--ink-3); flex-wrap: wrap; gap: .5rem;
}

/* ”€”€ Category header ”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€ */
.cat-header {
  padding: 3rem 2rem 2.5rem; background: var(--ink); color: var(--white);
}
.cat-header-inner { max-width: 1280px; margin: 0 auto; }
.cat-header h1 { font-family: var(--ff-head); font-size: 2.5rem; font-weight: 900; }
.subcategory-pills { display: flex; flex-wrap: wrap; gap: .45rem; margin-top: 1rem; }
.subcategory-pills a {
  padding: .38rem .62rem; border: 1px solid rgba(255,255,255,.28); color: rgba(255,255,255,.88);
  font-family: var(--ff-ui); font-size: .75rem; font-weight: 700;
}
.subcategory-pills a:hover { border-color: #8ccde8; color: #8ccde8; }
.static-page-header { padding: 3rem 0 2rem; border-bottom: 1px solid var(--paper-3); background: #f6f8fa; }
.static-page-header h1 { max-width: 920px; color: var(--ink); font-family: var(--ff-head); font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900; line-height: 1.02; letter-spacing: -.045em; }
.static-page-header p { max-width: 760px; margin-top: 1rem; color: var(--ink-2); font-size: 1.08rem; line-height: 1.6; }
.static-page { max-width: 920px; padding-top: 2.5rem; padding-bottom: 4rem; }

/* ”€”€ Pagination ”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€ */
.pagination {
  display: flex; justify-content: center; gap: .5rem;
  margin: 3rem 0;
}
.pg-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 .75rem;
  border: 1.5px solid var(--paper-3); border-radius: var(--r);
  font-family: var(--ff-ui); font-size: .85rem; color: var(--ink-2);
  transition: var(--trans);
}
.pg-btn:hover, .pg-btn.active { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* ”€”€ Reading progress bar ”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€ */
#progress-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--gold); z-index: 9999; transition: width .1s linear;
  width: 0;
}

/* ”€”€ Responsive ”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€ */
@media (max-width: 1024px) {
  .layout-main { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-img { display: none; }
}
@media (max-width: 768px) {
  .masthead-top { padding: 0 1rem; }
  .auth-left { display: none; }
  .auth-right { width: 100%; }
  .redaction-auth-body .auth-right { padding: 2.5rem 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 2.5rem 1.5rem; }
  .article-wrap { padding: 2rem 1rem 3rem; }
}

/* ============================================================
   DAILY NEWSROOM THEME
   Inspired by the visual grammar of established French dailies:
   dense hierarchy, restrained color, fine rules and paper-like UI.
   ============================================================ */
:root {
  --ink: #1f2732;
  --ink-2: #454d57;
  --ink-3: #717984;
  --paper: #ffffff;
  --paper-2: #f5f6f7;
  --paper-3: #d5d9de;
  --gold: #026b9c;
  --gold-l: #e7f4fa;
  --red: #c64545;
  --blue: #026b9c;
  --white: #ffffff;
  --r: 0;
  --shadow: none;
  --shadow-l: none;
}

body { background: var(--white); color: var(--ink); line-height: 1.55; }

.masthead { background: var(--white); color: var(--ink); border-bottom: 0; }
.masthead-utility { border-bottom: 1px solid var(--paper-3); background: #f8f9fa; }
.masthead-utility-inner {
  max-width: 1180px; margin: 0 auto; padding: .42rem 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  color: var(--ink-3); font-family: var(--ff-ui); font-size: .7rem;
  text-transform: none; letter-spacing: .01em;
}
.masthead-utility a { color: var(--blue); font-weight: 700; }
.masthead-top {
  min-height: 104px; max-width: 1180px; padding: .75rem 1rem;
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 1rem;
}
.masthead-tagline {
  align-self: center; max-width: 210px; color: var(--ink-3);
  font-family: var(--ff-body); font-size: .8rem; font-style: italic; line-height: 1.35;
}
.site-logo {
  align-self: center; color: var(--ink); font-size: clamp(2.35rem, 5vw, 4rem);
  font-style: italic; font-weight: 900; letter-spacing: -.09em; line-height: .9;
}
.masthead-actions { align-self: center; justify-content: flex-end; gap: .2rem; }
.masthead-actions a, .masthead-actions .link-button {
  color: var(--ink-2); font-size: .7rem; letter-spacing: .04em; padding: .45rem .55rem;
}
.masthead-actions a:hover, .masthead-actions .link-button:hover { color: var(--blue); }
.masthead-actions .btn-subscribe {
  background: var(--blue); color: var(--white); border-radius: 2px; padding: .55rem .8rem;
}
.masthead-actions .btn-subscribe:hover { background: var(--theme-accent-hover, #00567e); color: var(--white); }
.masthead-actions .language-switch {
  border-left: 1px solid var(--paper-3); color: var(--blue); font-weight: 800;
}

.nav-shell { background: var(--ink); }
.nav-strip { max-width: 1180px; padding: 0 1rem; border-top: 0; }
.nav-strip a {
  color: rgba(255,255,255,.82); font-size: .7rem; font-weight: 700; letter-spacing: .055em;
  padding: .72rem .85rem; border-bottom: 3px solid transparent;
}
.nav-strip a:first-child { padding-left: 0; }
.nav-strip a:hover, .nav-strip a.active { color: var(--white); border-bottom-color: var(--blue); }

.live-header { border-bottom: 1px solid var(--paper-3); background: #fafbfc; }
.live-header-inner {
  max-width: 1180px; margin: 0 auto; padding: .72rem 1rem;
}
.live-header-tabs {
  display: flex; gap: .55rem; align-items: center; justify-content: center;
  min-width: 0; color: var(--ink); font-family: var(--ff-ui);
}
.live-header-tabs strong {
  display: inline-flex; gap: .42rem; align-items: center; margin-right: .18rem;
  font-size: .86rem; font-weight: 850; white-space: nowrap;
}
.live-header-dot {
  width: .52rem; height: .52rem; border-radius: 50%; background: #dc2f21;
  box-shadow: 0 0 0 0 rgba(220,47,33,.55); animation: live-header-pulse 1.5s ease-in-out infinite;
}
.live-header-tabs a {
  display: inline-flex; align-items: center; max-width: 280px; min-height: 34px;
  padding: .4rem .72rem; border: 1px solid #464b51; border-radius: 4px;
  background: var(--white); color: var(--ink); font-size: .8rem; font-weight: 750;
  text-decoration: none; transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.live-header-tabs a span { overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.live-header-tabs a:hover,
.live-header-tabs a.is-active { border-color: #34373b; background: #34373b; color: var(--white); }
@keyframes live-header-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(220,47,33,.48); }
  50% { box-shadow: 0 0 0 6px rgba(220,47,33,0); }
}

.newsline { border-bottom: 1px solid var(--paper-3); background: var(--white); }
.newsline-inner {
  max-width: 1180px; margin: 0 auto; padding: .48rem 1rem;
  display: flex; gap: .75rem; align-items: center;
  color: var(--ink-3); font-family: var(--ff-ui); font-size: .72rem;
}
.newsline strong { color: var(--blue); text-transform: none; letter-spacing: .01em; }
.newsline strong::after { content: ''; display: inline-block; width: 5px; height: 5px; margin-left: .6rem; border-radius: 50%; background: var(--red); vertical-align: .1em; }
.newsline-track { min-width: 0; flex: 1; overflow: hidden; }
.newsline-marquee { display: flex; width: max-content; animation: newsline-scroll 58s linear infinite; }
.newsline-items { display: flex; flex-shrink: 0; align-items: center; }
.newsline-items a { display: inline-flex; gap: .42rem; align-items: center; margin-right: 2.25rem; color: var(--ink-2); white-space: nowrap; }
.newsline-items a:hover { color: var(--blue); }
.newsline-live { display: inline-flex; gap: .23rem; align-items: center; color: #b42332; font-size: .64rem; font-weight: 850; letter-spacing: .01em; text-transform: none; }
.newsline-live .icon { width: .88rem; height: .88rem; }
.newsline:hover .newsline-marquee { animation-play-state: paused; }
.newsline-fallback { color: var(--ink-3); }
@keyframes newsline-scroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .newsline-marquee { width: auto; animation: none; }
  .newsline-items[aria-hidden="true"] { display: none; }
  .newsline-items { max-width: 100%; overflow-x: auto; }
}

.container { max-width: 1180px; padding-left: 1rem; padding-right: 1rem; }
.front-page { padding-top: 1.8rem; padding-bottom: 3.5rem; }
.front-kicker {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 4px solid var(--ink); border-bottom: 1px solid var(--ink);
  padding: .55rem 0 .5rem; margin-bottom: 1rem;
  font-family: var(--ff-ui); text-transform: none; letter-spacing: .01em;
  font-size: .78rem; font-weight: 800;
}
.front-kicker-date { color: var(--ink-3); font-size: .67rem; font-weight: 500; }
.category-home-page .front-kicker {
  border-top-color: var(--section-mark-color, var(--section-accent, var(--ink)));
}
.category-home-page .front-kicker > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--section-mark-color, var(--section-accent, var(--blue)));
}
.category-home-page .front-kicker .category-editorial-marker {
  width: .42em;
  height: .9em;
  margin-right: 0;
  background: currentColor;
}

.lead-grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(250px, .9fr); border-bottom: 1px solid var(--paper-3); margin-bottom: 2rem; }
.lead-grid-solo { display: block; }
.lead-story { padding-right: 1.35rem; padding-bottom: 1.3rem; }
.lead-image { position: relative; display: block; aspect-ratio: 16/8.7; overflow: hidden; margin-bottom: 1rem; background: var(--paper-2); }
.lead-image img { width: 100%; height: 100%; object-fit: cover; }
.lead-copy h1 { margin: .3rem 0 .6rem; font-family: var(--ff-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; line-height: 1.04; letter-spacing: -.04em; }
.lead-copy h1 a:hover, .rail-story h2 a:hover, .card-title a:hover { color: var(--blue); }
.has-section-identity .lead-copy h1 a:hover,
.has-section-identity .rail-story h2 a:hover,
.has-section-identity .card-title a:hover { color: var(--section-mark-color, var(--section-accent, var(--blue))); }
.lead-copy p { max-width: 740px; color: var(--ink-2); font-size: 1rem; line-height: 1.55; margin-bottom: .75rem; }
.story-section, .card-cat {
  color: var(--blue); font-family: var(--ff-ui); font-size: .68rem; font-weight: 800;
  text-transform: none; letter-spacing: .01em;
}
.story-meta, .card-meta { color: var(--ink-3); font-family: var(--ff-ui); font-size: .7rem; }

.lead-rail { border-left: 1px solid var(--paper-3); padding-left: 1.35rem; }
.rail-title {
  border-top: 3px solid var(--blue); padding: .55rem 0 .4rem;
  color: var(--ink); font-family: var(--ff-ui); font-size: .75rem; font-weight: 800;
  text-transform: none; letter-spacing: .01em;
}
.rail-story {
  padding: .92rem 0;
  border-top: 1px solid var(--paper-3);
}
.rail-story.has-thumb {
  display: grid;
  grid-template-columns: minmax(128px, 31%) minmax(0, 1fr);
  column-gap: .85rem;
  align-items: start;
}
.rail-story h2 { margin: .22rem 0 .32rem; font-family: var(--ff-head); font-size: 1.08rem; font-weight: 900; line-height: 1.08; }
.rail-story h2 a {
  display: inline;
  overflow: visible;
}
.rail-story.has-thumb .story-section,
.rail-story.has-thumb h2,
.rail-story.has-thumb .story-meta {
  grid-column: 2;
}

.front-content { display: grid; grid-template-columns: minmax(0, 1fr) minmax(330px, 360px); gap: 2.2rem; align-items: start; }
.front-content-sidebar-only { display: block; max-width: 300px; margin-left: auto; }
.category-home-latest { margin-top: 2rem; }
.category-home-page .section-head { border-top-color: var(--section-mark-color, var(--section-accent, var(--ink))); }
.category-home-page .section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.category-home-page .section-head > a {
  color: var(--section-mark-color, var(--section-accent, var(--blue)));
  font-family: var(--ff-ui);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .01em;
  text-transform: none;
}
.category-home-page .section-head h2 {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.category-home-page .section-head .category-editorial-marker {
  width: .42em;
  height: .9em;
  margin-right: 0;
  background: currentColor;
}
.section-head { border-top: 3px solid var(--ink); border-bottom: 1px solid var(--paper-3); margin: 0 0 .35rem; padding: .55rem 0 .45rem; }
.section-head h2 { font-family: var(--ff-ui); font-size: .78rem; font-weight: 800; letter-spacing: .01em; text-transform: none; }
.homepage-block + .homepage-block { margin-top: 2.25rem; padding-top: 1.35rem; border-top: 1px solid var(--paper-3); }
.homepage-callout-block {
  display: grid;
  gap: .85rem;
  padding: 1.15rem;
  border: 1px solid var(--paper-3);
  border-left: 4px solid var(--blue);
  background: var(--paper-2);
}
.homepage-callout-block p {
  margin: 0;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.55;
}
.homepage-callout-block .btn {
  justify-self: start;
}
.homepage-link-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: .7rem;
}
.homepage-link-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3rem;
  padding: .75rem .9rem;
  border: 1px solid var(--paper-3);
  background: #fff;
  color: var(--ink);
  font-family: var(--ff-ui);
  font-size: .78rem;
  font-weight: 850;
}
.homepage-link-list a:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.homepage-link-list a::after {
  content: "†’";
  color: var(--blue);
}
.homepage-category-list a {
  justify-content: flex-start;
  gap: .55rem;
}
.homepage-category-list a::after {
  margin-left: auto;
}
.homepage-block-daily_thread .section-head,
.homepage-block-magazine .section-head,
.homepage-block-object_story .section-head,
.homepage-block-timeline .section-head,
.homepage-block-territories .section-head,
.homepage-block-quote .section-head,
.homepage-block-formats .section-head {
  border-top-color: var(--blue);
}

.homepage-thread {
  display: grid;
  grid-template-columns: minmax(170px, .36fr) minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0 0;
}
.homepage-thread-intro {
  margin: 0;
  color: var(--ink-2);
  font-size: .92rem;
  line-height: 1.5;
}
.homepage-thread ol {
  list-style: none;
  counter-reset: thread;
  display: grid;
  gap: .65rem;
  margin: 0;
  padding: 0;
}
.homepage-thread li {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: .75rem;
  align-items: baseline;
  padding-bottom: .65rem;
  border-bottom: 1px solid var(--paper-3);
}
.homepage-thread li > span {
  color: var(--blue);
  font-family: var(--ff-ui);
  font-size: .82rem;
  font-weight: 850;
}
.homepage-thread a {
  font-family: var(--ff-head);
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.15;
}

.homepage-magazine-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(230px, .78fr);
  gap: 1.2rem;
  align-items: stretch;
}
.homepage-magazine-lead {
  padding: 1rem 0;
  border-bottom: 1px solid var(--paper-3);
}
.homepage-magazine-image {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  margin-bottom: .9rem;
  overflow: hidden;
  background: var(--paper-2);
}
.homepage-magazine-image img,
.homepage-object-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homepage-magazine-lead h3 {
  margin: .35rem 0 .45rem;
  font-family: var(--ff-head);
  font-size: clamp(2rem, 4.4vw, 3.35rem);
  line-height: .95;
  letter-spacing: -.055em;
}
.homepage-magazine-lead p {
  color: var(--ink-2);
  font-size: .94rem;
  line-height: 1.55;
}
.homepage-magazine-side {
  display: grid;
  align-content: start;
}
.homepage-magazine-side article {
  padding: 1rem 0;
  border-bottom: 1px solid var(--paper-3);
}
.homepage-magazine-side h4 {
  margin: .3rem 0 .35rem;
  font-family: var(--ff-head);
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1.08;
}

.homepage-object-story {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(230px, 1fr);
  gap: 1.2rem;
  align-items: center;
  padding: 1rem;
  border: 1px solid var(--paper-3);
  background: linear-gradient(135deg, rgba(199,71,37,.08), rgba(255,255,255,0) 58%);
}
.homepage-object-copy h3 {
  margin: .4rem 0 .55rem;
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3.6vw, 2.8rem);
  line-height: .98;
  letter-spacing: -.05em;
}
.homepage-object-copy p {
  color: var(--ink-2);
  font-size: .92rem;
  line-height: 1.55;
}
.homepage-object-image {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-2);
}

.homepage-timeline {
  position: relative;
  display: grid;
  gap: 0;
  padding-left: 1rem;
}
.homepage-timeline::before {
  content: '';
  position: absolute;
  left: .22rem;
  top: 1rem;
  bottom: .7rem;
  width: 2px;
  background: var(--paper-3);
}
.homepage-timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: .9rem;
  padding: .9rem 0 .9rem;
  border-bottom: 1px solid var(--paper-3);
}
.homepage-timeline article::before {
  content: '';
  position: absolute;
  left: -.96rem;
  top: 1.2rem;
  width: .54rem;
  height: .54rem;
  border-radius: 50%;
  background: var(--blue);
}
.homepage-timeline time {
  color: var(--blue);
  font-family: var(--ff-head);
  font-size: 1.35rem;
  font-weight: 760;
  line-height: 1;
}
.homepage-timeline h3 {
  margin: .25rem 0;
  font-family: var(--ff-head);
  font-size: 1.14rem;
  font-weight: 900;
  line-height: 1.12;
}
.homepage-timeline p {
  margin: 0;
  color: var(--ink-3);
  font-family: var(--ff-ui);
  font-size: .72rem;
}

.homepage-territories {
  padding: 1rem;
  border: 1px solid var(--paper-3);
  background: var(--paper);
}
.homepage-territories p {
  max-width: 620px;
  margin: 0 0 .9rem;
  color: var(--ink-2);
  line-height: 1.5;
}
.homepage-territories > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .45rem .8rem;
}
.homepage-territories a {
  display: inline-flex;
  gap: .45rem;
  align-items: center;
  padding: .55rem 0;
  border-top: 1px solid var(--paper-3);
  color: var(--ink);
  font-family: var(--ff-ui);
  font-weight: 800;
}

.homepage-quote-block {
  position: relative;
  margin: .8rem 0 0;
  padding: 1.2rem 1.3rem 1.15rem 3.1rem;
  border: 1px solid var(--paper-3);
  border-left: 5px solid var(--blue);
  background: #fff;
}
.homepage-quote-block::before {
  content: '\201C';
  position: absolute;
  left: .9rem;
  top: .4rem;
  color: var(--blue);
  font-family: var(--ff-head);
  font-size: 3.8rem;
  line-height: 1;
  opacity: .35;
  pointer-events: none;
}
.homepage-quote-block blockquote {
  margin: 0;
  font-family: var(--ff-head);
  font-size: clamp(1.25rem, 2.7vw, 2rem);
  font-weight: 900;
  line-height: 1.12;
}
.homepage-quote-block figcaption {
  margin-top: .75rem;
  color: var(--ink-3);
  font-family: var(--ff-ui);
  font-size: .75rem;
  font-weight: 800;
}
.homepage-quote-block a {
  display: inline-block;
  margin-top: .8rem;
  color: var(--blue);
  font-family: var(--ff-ui);
  font-size: .72rem;
  font-weight: 850;
}

.homepage-format-wall {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
  padding-top: .8rem;
}
.homepage-format-wall a {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  gap: .25rem .75rem;
  padding: .9rem;
  border: 1px solid var(--paper-3);
  background: #fff;
}
.homepage-format-wall .icon {
  grid-row: 1 / span 2;
  width: 2rem;
  height: 2rem;
  color: var(--blue);
}
.homepage-format-wall strong {
  font-family: var(--ff-head);
  font-size: 1.22rem;
  font-weight: 900;
  line-height: 1;
}
.homepage-format-wall span {
  color: var(--ink-3);
  font-family: var(--ff-ui);
  font-size: .72rem;
}

.article-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 1.2rem; }
.homepage-block-list .homepage-block-grid,
.homepage-block-compact .homepage-block-grid { grid-template-columns: 1fr; }
.card {
  display: grid;
  grid-template-columns: 138px minmax(0, 1fr);
  gap: .9rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--paper-3);
  overflow: visible;
  box-shadow: none;
  transition: none;
}
.homepage-block-list .card,
.homepage-block-compact .card { grid-template-columns: 148px minmax(0, 1fr); align-items: start; }
.homepage-block-compact .card { grid-template-columns: minmax(118px, 30%) minmax(0, 1fr); gap: .85rem; }
.homepage-block-compact .card-img,
.homepage-block-compact .card-img-placeholder { aspect-ratio: 16 / 10; }
.homepage-block-compact .card-excerpt,
.homepage-block-compact .card-meta .dot,
.homepage-block-compact .card-meta span:first-child { display: none; }
.homepage-block-compact .card-title { font-size: 1.02rem; line-height: 1.08; }
.homepage-block-list .card-title a,
.homepage-block-compact .card-title a {
  display: inline;
  overflow: visible;
}
.card:hover { transform: none; box-shadow: none; }
.card-media { display: block; }
.card-img, .card-img-placeholder { aspect-ratio: 4/3; background: var(--paper-2); }
.card-img { position: relative; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card:hover .card-img img { transform: none; }
.card-img-placeholder { color: var(--ink-3); }
.card-video-badge,
.video-cover-badge {
  position: absolute; right: .5rem; bottom: .5rem; display: inline-flex; align-items: center; gap: .3rem;
  padding: .32rem .48rem; background: rgba(20,28,36,.92); color: #fff;
  font-family: var(--ff-ui); font-size: .58rem; font-weight: 800; letter-spacing: .01em; text-transform: none;
  z-index: 2; border-radius: 3px;
}
.card-video-badge .icon,
.video-cover-badge .icon { width: .88rem; height: .88rem; }
.card-live-badge {
  position: absolute; right: .42rem; bottom: .42rem; display: inline-flex; gap: .24rem; align-items: center;
  max-width: calc(100% - .84rem);
  padding: .26rem .42rem; background: #59636e; color: #fff;
  font-family: var(--ff-ui); font-size: .54rem; font-weight: 850; letter-spacing: .01em; line-height: 1; text-transform: none;
  white-space: nowrap;
}
.card-live-badge.is-closed { background: #59636e; }
.card-live-badge.is-live-dot-only {
  right: .48rem;
  bottom: .48rem;
  width: .76rem;
  height: .76rem;
  padding: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.78);
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
}
.card-live-dot {
  width: .46rem;
  height: .46rem;
  margin: auto;
  border-radius: 50%;
  background: #d93025;
  box-shadow: 0 0 0 0 rgba(217,48,37,.45);
  animation: live-header-pulse 1.5s ease-in-out infinite;
}
.live-status-dot { width: .52rem; height: .52rem; border-radius: 50%; background: currentColor; }
.article-title-media-icon {
  display: inline-grid;
  place-items: center;
  width: .58em;
  height: .58em;
  margin-right: .46em;
  color: var(--blue);
  line-height: 1;
  vertical-align: -.09em;
}
.article-title-media-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: .35em;
  color: var(--blue);
  vertical-align: -.05em;
  line-height: 1;
}
.article-title-video-icon,
.article-title-podcast-icon,
.article-title-photo-icon { color: var(--blue); }
.article-title-media-icon .icon { width: 1em; height: 1em; stroke-width: 2.25; }
.article-title-podcast-icon .icon { width: 1em; height: 1em; }
.article-hero h1 .article-title-media-icon { margin-right: .35em; vertical-align: -.05em; }
.article-title-live-prefix {
  display: inline-flex;
  gap: .28em;
  align-items: center;
  margin-right: .4em;
  background-color: #dc2626;
  color: #ffffff;
  padding: .22em .6em;
  border-radius: 4px;
  font-family: var(--ff-ui, sans-serif);
  font-size: .48em;
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1;
  vertical-align: .15em;
  white-space: nowrap;
}
.article-title-live-prefix > span {
  width: .52em; height: .52em; border-radius: 50%; background: currentColor;
  box-shadow: 0 0 0 0 rgba(220,38,38,.5); animation: live-header-pulse 1.5s ease-in-out infinite;
}
.article-hero h1 .article-title-live-prefix {
  font-size: .44em;
  vertical-align: .16em;
  padding: .25em .65em;
}
.article-hero h1 .article-title-live-prefix > span { width: .5em; height: .5em; }
.card-title .article-title-live-prefix,
.rail-story .article-title-live-prefix,
.story-title .article-title-live-prefix {
  gap: .22em;
  margin-right: .32em;
  padding: .22em .5em;
  border-radius: 3px;
  font-size: .68em;
  letter-spacing: .02em;
  vertical-align: .1em;
}
.homepage-block-compact .card-title .article-title-live-prefix,
.sidebar-article-card h4 .article-title-live-prefix {
  font-size: .75em;
  padding: .22em .48em;
  vertical-align: .09em;
}
.card-title .article-title-live-prefix > span,
.rail-story .article-title-live-prefix > span,
.story-title .article-title-live-prefix > span {
  width: .48em;
  height: .48em;
}
.article-title-live-prefix.is-closed { color: #ffffff; background-color: #475569; }
.article-title-live-prefix.is-closed > span { animation: none; }
.premium-badge { display: inline-flex; align-items: baseline; line-height: 1; }
.access-badge-subscriber { color: var(--access-badge-subscriber, #d9a400); }
.access-badge-registered { color: var(--access-badge-registered, #4e6f91); }
.premium-badge-meta { margin-left: .32em; vertical-align: -.05em; }
.editorial-icon { display: block; width: .38em; height: 1em; flex-shrink: 0; background: currentColor; -webkit-mask: var(--site-mark-image, url('/assets/icons/icone.svg')) center / contain no-repeat; mask: var(--site-mark-image, url('/assets/icons/icone.svg')) center / contain no-repeat; }
.video-placeholder { color: var(--blue); }
.video-listing-header h1 .icon { width: .82em; height: .82em; color: var(--blue); }
.card-body { min-width: 0; padding: 0; display: block; }
.card-cat { margin-bottom: .35rem; }
.card-title { margin: 0 0 .6rem; font-family: var(--ff-head); font-size: 1.15rem; font-weight: 900; line-height: 1.3; letter-spacing: -.015em; }
.card-excerpt { margin-bottom: .5rem; color: var(--ink-2); font-size: .78rem; line-height: 1.45; }
.card-meta { display: flex; flex-wrap: wrap; gap: .35rem; align-items: center; }

.front-sidebar { border-left: 1px solid var(--paper-3); padding-left: 1.25rem; }
.sidebar-widget { margin-bottom: 1.7rem; }
.sidebar-widget h3 { border-bottom: 0; margin: 0 0 .65rem; padding: 0; font-size: 1.18rem; line-height: 1.15; }
.sidebar-eyebrow { margin-bottom: .5rem; color: var(--blue); font-family: var(--ff-ui); font-size: .65rem; font-weight: 800; letter-spacing: .01em; text-transform: none; }
.subscribe-box { background: #f2f7fa; color: var(--ink); padding: 1.15rem; border-top: 4px solid var(--blue); text-align: left; }
.subscribe-box h3 { color: var(--ink); }
.subscribe-box p { color: var(--ink-2); font-size: .82rem; }
.subscribe-box .btn { margin: .9rem 0 .7rem; }
.subscribe-signin { color: var(--blue); font-family: var(--ff-ui); font-size: .7rem; font-weight: 700; }
.topic-box { border-top: 3px solid var(--ink); padding-top: .6rem; }
.topic-box h3 { font-family: var(--ff-ui); font-size: .74rem; font-weight: 800; letter-spacing: .01em; text-transform: none; }
.topic-box a { display: flex; align-items: center; gap: .5rem; padding: .55rem 0; border-top: 1px solid var(--paper-3); font-family: var(--ff-ui); font-size: .78rem; font-weight: 700; }
.topic-box a:hover { color: var(--blue); }
.sidebar-articles-box {
  border-top: 3px solid var(--blue);
  padding-top: .6rem;
}
.sidebar-articles-box h3 {
  font-family: var(--ff-ui);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .01em;
  text-transform: none;
}
.sidebar-quote-box,
.sidebar-callout-box {
  padding: 1rem;
  border-top: 3px solid var(--blue);
  background: #fff;
}
.sidebar-quote-box h3,
.sidebar-formats-box h3,
.sidebar-callout-box h3,
.sidebar-link-list-box h3 {
  font-family: var(--ff-ui);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .01em;
  text-transform: none;
}
.sidebar-callout-box p {
  margin: .65rem 0 .85rem;
  color: var(--ink-2);
  font-size: .88rem;
  line-height: 1.5;
}
.sidebar-quote-box blockquote {
  margin: .65rem 0;
  font-family: var(--ff-head);
  font-size: 1.16rem;
  font-weight: 900;
  line-height: 1.16;
}
.sidebar-quote-box p {
  margin: 0;
  color: var(--ink-3);
  font-family: var(--ff-ui);
  font-size: .72rem;
  font-weight: 800;
}
.sidebar-formats-box,
.sidebar-link-list-box {
  border-top: 3px solid var(--ink);
  padding-top: .6rem;
}
.sidebar-formats-box a,
.sidebar-link-list-box a {
  display: flex;
  gap: .55rem;
  align-items: center;
  padding: .65rem 0;
  border-top: 1px solid var(--paper-3);
  font-family: var(--ff-ui);
  font-size: .78rem;
  font-weight: 800;
}
.sidebar-link-list-box a::after {
  content: "†’";
  margin-left: auto;
  color: var(--blue);
}
.sidebar-formats-box .icon {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--blue);
}
.sidebar-article-card {
  display: grid;
  grid-template-columns: minmax(132px, 38%) minmax(0, 1fr);
  gap: .8rem;
  padding: .95rem 0;
  border-top: 1px solid var(--paper-3);
}
.sidebar-article-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper-2);
}
.sidebar-article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sidebar-article-card h4 {
  margin: .15rem 0 .35rem;
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.3;
}
.sidebar-article-card h4 a {
  display: inline;
  overflow: visible;
}
.sidebar-article-card h4 a:hover { color: var(--blue); }
.category-editorial-marker {
  display: inline-block; width: .48em; height: 1em; margin-right: .42rem; flex-shrink: 0;
  background: var(--section-mark-color, var(--section-accent, var(--site-mark-color, #111))); vertical-align: -.12em;
  -webkit-mask: var(--site-mark-image, url('/assets/icons/icone.svg')) center / contain no-repeat;
  mask: var(--site-mark-image, url('/assets/icons/icone.svg')) center / contain no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}
.category-editorial-marker.has-custom-icon,
.category-home-page .front-kicker .category-editorial-marker.has-custom-icon,
.category-home-page .section-head .category-editorial-marker.has-custom-icon,
.section-subheader .category-editorial-marker.has-custom-icon,
.section-subheader-nav .category-editorial-marker.has-custom-icon {
  width: 1.15em !important;
  height: 1.15em !important;
  background-color: transparent !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  -webkit-mask: none !important;
  mask: none !important;
  vertical-align: -.18em !important;
}
.category-editorial-marker.is-subcategory { background: var(--ink-3); }
.cat-header-marker { width: .52em; height: .96em; margin-right: .48rem; }
.cat-header-marker.has-custom-icon { width: 1.15em !important; height: 1.15em !important; }
.subcategory-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .72rem .82rem;
  margin-top: 1.35rem;
}
.subcategory-pills a {
  display: inline-flex;
  min-height: 3.05rem;
  align-items: center;
  padding: .78rem 1.05rem;
  border: 1px solid var(--paper-3);
  background: var(--white);
  color: var(--ink-2);
  font-family: var(--ff-ui);
  font-size: .9rem;
  font-weight: 850;
  line-height: 1.1;
}
.subcategory-pills a:hover {
  border-color: var(--section-accent, var(--blue));
  color: var(--section-accent, var(--blue));
}
.subcategory-pills .category-editorial-marker { margin-right: .08rem; }

.cat-header { padding: 1.7rem 1rem 1.25rem; background: var(--white); color: var(--ink); border-bottom: 1px solid var(--paper-3); }
.cat-header-inner { max-width: 1180px; }
.category-breadcrumb { display: flex; flex-wrap: wrap; gap: .38rem; align-items: center; margin-bottom: .55rem; font-family: var(--ff-ui); font-size: .74rem; font-weight: 750; }
.category-breadcrumb a, .category-breadcrumb span { display: inline-flex; gap: .28rem; align-items: center; }
.category-breadcrumb a { color: var(--blue); }
.category-breadcrumb a:hover { text-decoration: underline; text-underline-offset: .18em; }
.category-breadcrumb > span { color: var(--ink-3); }
.category-breadcrumb .category-editorial-marker { width: .42em; height: .9em; margin-right: .08rem; }
.cat-kicker { color: var(--blue); font-family: var(--ff-ui); font-size: .7rem; font-weight: 800; letter-spacing: .01em; text-transform: none; }
.cat-header h1 { margin-top: .2rem; font-size: 2.65rem; letter-spacing: -.045em; }
.cat-header p { max-width: 680px; margin-top: .35rem; color: var(--ink-3); font-size: .9rem; }
.editorial-topic-header {
  padding: 2.75rem 1rem 2.3rem;
  border-bottom: 0;
  background: var(--paper);
}
.editorial-topic-header .cat-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding-bottom: 2.15rem;
  border-bottom: 4px solid var(--ink);
}
.cat-context-line {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  margin-bottom: .85rem;
  color: var(--section-mark-color, var(--section-accent, var(--blue)));
  font-family: var(--ff-ui);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .01em;
  line-height: 1.2;
  text-transform: none;
}
.cat-context-line a {
  color: inherit;
}
.cat-context-line a:hover {
  text-decoration: underline;
  text-underline-offset: .18em;
}
.cat-context-line span[aria-hidden="true"] {
  color: var(--ink-3);
  opacity: .6;
}
.editorial-topic-header .cat-kicker {
  display: none;
}
.editorial-topic-header h1 {
  max-width: 1050px;
  margin: 0;
  font-family: var(--ff-head-condensed, var(--ff-head));
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: -.055em;
  line-height: .96;
  text-transform: none;
}
.editorial-topic-header p {
  max-width: 1080px;
  margin: 1rem 0 0;
  color: var(--ink-2);
  font-size: clamp(0.9rem, 1.25vw, 1.15rem);
  line-height: 1.42;
}
.listing-page { padding-top: 1.5rem; padding-bottom: 3rem; }
.listing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.listing-content { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 320px); gap: 2.2rem; align-items: start; }
.listing-content .listing-grid { margin: 0; }
.listing-sidebar { position: sticky; top: 96px; align-self: start; display: grid; gap: 2rem; }
.empty-copy { padding: 2rem 0; color: var(--ink-3); font-style: italic; }

.category-identity-hero {
  padding: 2rem 1rem 1.4rem;
  border-bottom: 1px solid var(--paper-3);
  background:
    linear-gradient(135deg, var(--section-accent-light, var(--gold-l)) 0%, rgba(255,255,255,.92) 44%, var(--paper) 100%);
}
.category-identity-hero-inner { max-width: 1180px; margin: 0 auto; }
.category-identity-hero h1 {
  margin: .15rem 0 .45rem;
  font-family: var(--ff-head);
  font-size: clamp(2.7rem, 6vw, 5.2rem);
  line-height: .95;
  letter-spacing: -.06em;
}
.category-identity-hero p {
  max-width: 760px;
  margin: 0 0 1rem;
  color: var(--ink-2);
  font-size: 1rem;
  line-height: 1.55;
}
.category-identity-page { padding-top: 2rem; padding-bottom: 3.2rem; }
.category-identity-section { margin-bottom: 2.2rem; }
.category-identity-section .section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .95rem;
  padding-top: .75rem;
  border-top: 4px solid var(--section-accent, var(--ink));
}
.category-identity-section h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--ff-ui);
  font-size: .92rem;
  font-weight: 900;
  letter-spacing: .01em;
  text-transform: none;
}
.section-heading-link h2 { display: inline-flex; align-items: center; gap: .25rem; }
.section-heading-link a {
  color: var(--section-accent, var(--blue));
  font-family: var(--ff-ui);
  font-size: .72rem;
  font-weight: 850;
  text-transform: none;
  letter-spacing: .01em;
}
.category-identity-lead-grid,
.category-identity-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.35rem;
}
.category-identity-card {
  display: grid;
  grid-template-columns: minmax(150px, 240px) minmax(0, 1fr);
  gap: .9rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--paper-3);
}
.category-identity-card.is-lead {
  grid-column: span 2;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1fr);
  gap: 1.25rem;
}
.category-identity-card-media {
  position: relative;
  display: block;
  min-height: 150px;
  overflow: hidden;
  background: var(--paper-2);
}
.category-identity-card-media.is-missing::after,
.category-identity-card-media .card-img-placeholder {
  content: '';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--section-mark-color, var(--section-accent, var(--ink-3)));
  background: linear-gradient(135deg, var(--paper) 0%, var(--paper-2) 100%);
}
.category-identity-card-media.is-missing::after {
  -webkit-mask: var(--site-mark-image, url('/assets/icons/icone.svg')) center / 2.2rem auto no-repeat;
  mask: var(--site-mark-image, url('/assets/icons/icone.svg')) center / 2.2rem auto no-repeat;
  background: var(--section-mark-color, var(--section-accent, var(--ink-3)));
  inset: 35%;
}
.category-identity-card-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.category-identity-card.is-lead .category-identity-card-media img { aspect-ratio: 16 / 9; }
.category-identity-card-body h2 {
  margin: .1rem 0 .45rem;
  font-family: var(--ff-head);
  font-size: clamp(1.2rem, 2.25vw, 2rem);
  line-height: 1.04;
  letter-spacing: -.035em;
  text-transform: none;
}
.category-identity-card.is-lead h2 { font-size: clamp(2rem, 4.5vw, 3.7rem); }
.category-identity-card-body h2 a:hover { color: var(--section-accent, var(--blue)); }
.category-identity-card-body p {
  margin: 0 0 .65rem;
  color: var(--ink-2);
  line-height: 1.5;
}
.category-identity-dossiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: .75rem;
}
.category-identity-dossier {
  display: flex;
  align-items: center;
  gap: .75rem;
  min-height: 70px;
  padding: .85rem;
  border: 1px solid var(--paper-3);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 750;
  line-height: 1.08;
}
.category-identity-dossier:hover { border-color: var(--section-accent, var(--blue)); color: var(--section-accent, var(--blue)); }
.category-identity-dossier img {
  width: 2.9rem;
  height: 2.9rem;
  object-fit: contain;
  flex: 0 0 auto;
}

.article-hero { padding: 2.7rem 1rem 1.6rem; background: var(--white); color: var(--ink); border-bottom: 1px solid var(--paper-3); }
.article-hero-inner { max-width: 880px; }
.article-hero .article-cat { margin-bottom: .65rem; padding: 0; background: transparent; color: var(--blue); font-size: .72rem; }
.article-hero h1 { margin-bottom: .85rem; font-family: var(--ff-head); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.04; letter-spacing: -.055em; }
.article-hero .excerpt { max-width: 790px; margin-bottom: 1.1rem; color: var(--ink-2); font-size: 1.18rem; line-height: 1.5; }
.article-hero-meta { gap: .5rem; color: var(--ink-3); font-size: .82rem; }
.article-hero-meta strong { color: var(--ink-2); }
.article-cover { position: relative; max-width: 1080px; max-height: none; margin: 0 auto; overflow: visible; background: var(--paper-2); }
.article-cover img { width: 100%; max-height: 620px; object-fit: cover; }
.article-cover figcaption { display: block; padding: .65rem .8rem; border-bottom: 1px solid var(--paper-3); background: #f7f9fa; color: var(--ink-3); font-family: var(--ff-ui); font-size: .85rem; line-height: 1.45; }
.article-video { max-width: 1080px; margin: 0 auto; background: #111820; }

.article-kicker-line {
  display: flex;
  flex-wrap: wrap;
  gap: .42rem .7rem;
  align-items: center;
  margin: 0 0 1rem;
  color: var(--section-mark-color, var(--section-accent, var(--blue)));
  font-family: var(--ff-ui);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .01em;
  line-height: 1.2;
  text-transform: none;
}
.article-kicker-line .article-cat,
.article-kicker-line .editorial-kicker-list {
  margin: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}
.article-kicker-line .editorial-kicker-list {
  gap: .48rem;
}
.article-kicker-line .editorial-kicker-separator {
  color: var(--ink-3);
  opacity: .65;
}
.article-type-kicker {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 0;
  border-left: 0;
  background: transparent;
  color: var(--ink-3);
  font-family: var(--ff-head);
  font-size: .85rem;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none;
}
.article-type-kicker::before {
  content: "·";
  margin-right: .55rem;
  color: var(--ink-3);
  font-style: normal;
  opacity: .6;
}
.article-type-kicker:first-child::before {
  content: none;
  margin-right: 0;
}
.article-access-notice {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: .95rem 0 .25rem;
  color: var(--ink-3);
  font-family: var(--ff-ui);
  font-size: .82rem;
  font-weight: 650;
  letter-spacing: .01em;
}
.article-access-notice .editorial-icon {
  display: inline-grid;
  place-items: center;
  width: 1.08rem;
  height: 1.08rem;
  border-radius: 3px;
  background: var(--access-badge-color, #d9a400);
  -webkit-mask: none;
  mask: none;
}
.article-access-notice-subscriber { --access-badge-color: var(--access-badge-subscriber, #d9a400); }
.article-access-notice-registered { --access-badge-color: var(--access-badge-registered, #4e6f91); }
.article-access-notice .editorial-icon::before {
  content: '';
  display: block;
  width: .44rem;
  height: .82rem;
  background: var(--white);
  -webkit-mask: var(--site-mark-image, url('/assets/icons/icone.svg')) center / contain no-repeat;
  mask: var(--site-mark-image, url('/assets/icons/icone.svg')) center / contain no-repeat;
}
.article-photo-gallery {
  max-width: 1120px;
  margin: 1.4rem auto 0;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .7rem;
}
.article-photo-gallery figure {
  margin: 0;
  background: var(--paper);
  border: 1px solid var(--paper-3);
}
.article-photo-gallery img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.article-photo-gallery figcaption {
  padding: .58rem .68rem;
  color: var(--ink-3);
  font-family: var(--ff-ui);
  font-size: .85rem;
  line-height: 1.4;
}
.rail-story-thumb {
  position: relative;
  display: block;
  grid-row: 1 / span 3;
  margin: .12rem 0 0;
  overflow: hidden;
  border: 1px solid var(--paper-3);
  background: var(--paper-2);
}
.rail-story-thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.rail-story-thumb .card-video-badge,
.rail-story-thumb .video-cover-badge,
.sidebar-article-thumb .card-video-badge,
.sidebar-article-thumb .video-cover-badge {
  position: absolute;
  right: .24rem;
  bottom: .24rem;
  gap: .22rem;
  padding: .22rem .32rem;
  font-size: .5rem;
  line-height: 1;
  border-radius: 3px;
  z-index: 2;
}
.rail-story-thumb .card-video-badge .icon,
.rail-story-thumb .video-cover-badge .icon,
.sidebar-article-thumb .card-video-badge .icon,
.sidebar-article-thumb .video-cover-badge .icon {
  width: .72rem;
  height: .72rem;
  flex: 0 0 auto;
}
.rail-story-thumb .card-video-badge span,
.rail-story-thumb .video-cover-badge span,
.sidebar-article-thumb .card-video-badge span,
.sidebar-article-thumb .video-cover-badge span {
  display: inline-flex;
  align-items: center;
}
.front-page .story-meta,
.front-page .card-meta { font-size: .7rem; }
.article-video-frame { position: relative; aspect-ratio: 16/9; }
.article-video iframe, .article-video video { display: block; width: 100%; height: 100%; border: 0; }
.article-video-thumbnail { position: relative; display: block; width: 100%; height: 100%; padding: 0; overflow: hidden; border: 0; background: #111820; cursor: pointer; }
.article-video-thumbnail img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease, opacity .25s ease; }
.article-video-thumbnail:hover img, .article-video-thumbnail:focus-visible img { opacity: .86; transform: scale(1.015); }
.article-video-play { position: absolute; inset: 50% auto auto 50%; display: grid; width: 68px; height: 68px; place-items: center; border-radius: 50%; background: var(--blue); color: var(--white); transform: translate(-50%, -50%); }
.article-video-play .icon { width: 30px; height: 30px; margin-left: 4px; }
.article-video-locked-image, .article-video-locked-placeholder { display: block; width: 100%; height: 100%; object-fit: cover; }
.article-video-locked-placeholder { display: grid; place-items: center; background: #202a35; color: rgba(255,255,255,.7); }
.article-video-locked-placeholder .icon { width: 4rem; height: 4rem; }
.article-video-lock-overlay { position: absolute; inset: 0; display: grid; place-items: center; padding: 1rem; background: rgba(13,18,24,.38); }
.article-video-lock-card { max-width: 430px; padding: 1.15rem 1.25rem; background: rgba(17,24,32,.92); color: #fff; text-align: center; }
.article-video-lock-card .lock-icon { margin-bottom: .4rem; color: #fff; font-size: 1.35rem; }
.article-video-lock-card strong { display: block; font-family: var(--ff-head); font-size: 1.35rem; line-height: 1.1; }
.article-video-lock-card p { margin: .5rem 0 .85rem; color: rgba(255,255,255,.86); font-family: var(--ff-ui); font-size: .76rem; line-height: 1.45; }
.article-video-lock-card .btn { padding: .58rem .85rem; font-size: .7rem; }
.article-video figcaption { padding: .65rem .8rem; border-bottom: 1px solid var(--paper-3); background: #f7f9fa; color: var(--ink-3); font-family: var(--ff-ui); font-size: .85rem; line-height: 1.45; }
.article-video-details { max-width: 880px; margin: 0 auto; padding: 1.25rem 1rem 0; }
.article-video-details .excerpt { max-width: 790px; margin-bottom: 1.1rem; color: var(--ink-2); font-size: 1.18rem; font-weight: 700; line-height: 1.5; }
.article-layout-large .article-cover-top,
.article-layout-diop .article-cover-top {
  max-width: min(1700px, calc(100vw - 2rem));
  margin: 0 auto 1.2rem;
}
.article-layout-large .article-cover-top img,
.article-layout-diop .article-cover-top img {
  max-height: 90vh;
  object-fit: cover;
}
.article-layout-large .article-hero,
.article-layout-diop .article-hero {
  padding-top: .9rem;
  text-align: center;
  border-bottom: 0;
}
.article-layout-large .article-hero-inner,
.article-layout-diop .article-hero-inner {
  max-width: 960px;
  margin-inline: auto;
}
.article-layout-large .article-kicker-line,
.article-layout-diop .article-kicker-line {
  justify-content: center;
  margin-bottom: 1.05rem;
  color: var(--ink-3);
  font-size: .72rem;
  letter-spacing: .075em;
}
.article-layout-large .article-hero h1,
.article-layout-diop .article-hero h1 {
  max-width: 940px;
  margin-inline: auto;
  font-family: var(--ff-ui-condensed, var(--ff-head));
  font-size: clamp(2.6rem, 5.8vw, 4.1rem);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.055em;
}
.article-layout-large .article-hero-meta,
.article-layout-diop .article-hero-meta {
  justify-content: center;
}
.article-layout-large .article-hero .excerpt,
.article-layout-diop .article-hero .excerpt {
  margin-inline: auto;
}
.article-wrap { max-width: 740px; padding: 2.2rem 1rem 3rem; }
.article-wrap.has-sidebar {
  max-width: calc(1080px + 2rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
  column-gap: 2.5rem;
  align-items: start;
}
.article-wrap.has-sidebar > :not(.article-sidebar) {
  grid-column: 1;
}
.article-sidebar {
  grid-column: 2;
  grid-row: 1 / span 8;
  position: sticky;
  top: 96px;
  align-self: start;
}
.article-sidebar-inner {
  display: grid;
  gap: 2rem;
}
.article-sidebar .article-side-ctas-inner {
  display: grid;
  gap: .75rem;
}
.article-sidebar .sidebar-widget { margin-bottom: 0; }
.article-side-cta {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: .72rem;
  padding: .88rem;
  border: 1px solid var(--paper-3);
  border-top: 3px solid var(--section-mark-color, var(--section-accent, var(--blue)));
  background: var(--white);
  box-shadow: 0 12px 30px rgba(31, 39, 50, .05);
}
.article-side-cta-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: color-mix(in srgb, var(--section-mark-color, var(--section-accent, var(--blue))) 12%, var(--white));
  color: var(--section-mark-color, var(--section-accent, var(--blue)));
}
.article-side-cta-icon .icon {
  width: 1.05rem;
  height: 1.05rem;
}
.article-side-cta h2 {
  margin: 0 0 .25rem;
  color: var(--ink);
  font-family: var(--ff-head);
  font-size: 1.02rem;
  line-height: 1.12;
}
.article-side-cta p {
  margin: 0 0 .65rem;
  color: var(--ink-3);
  font-family: var(--ff-ui);
  font-size: .72rem;
  line-height: 1.45;
}
.article-side-cta-link {
  color: var(--section-mark-color, var(--section-accent, var(--blue)));
  font-family: var(--ff-ui);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .01em;
  text-transform: none;
}
.article-content { color: #303741; font-size: 1.15rem; line-height: 1.8; }
.article-content h1, .article-content h2, .article-content h3 { color: var(--ink); letter-spacing: -.025em; }
.article-content blockquote { border-left-color: var(--blue); color: var(--ink); }
.article-content a { color: var(--blue); }
.article-inline-block { margin: 1.8rem 0; font-family: var(--ff-ui); }
.article-inline-read-more { padding: .9rem 1rem 1rem; border-top: 3px solid var(--blue); border-bottom: 1px solid var(--paper-3); background: #f7f9fa; }
.article-inline-read-more-card { display: flex; flex-direction: row; gap: .75rem; align-items: flex-start; }
.article-inline-read-more-thumb { display: block; width: 90px; height: 60px; overflow: hidden; flex-shrink: 0; background: var(--paper-2); }
.article-inline-read-more-thumb img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.article-inline-read-more-body { display: flex; flex-direction: column; gap: .2rem; min-width: 0; }
.article-inline-read-more-body .article-inline-label { margin-bottom: 0; }
.article-inline-read-more .article-inline-title { display: block !important; font-family: var(--ff-head); font-size: 1.15rem; font-weight: 900; line-height: 1.3; }
.article-inline-label { display: flex; gap: .38rem; align-items: center; margin-bottom: .42rem; color: var(--blue); font-size: .66rem; font-weight: 800; letter-spacing: .01em; text-transform: none; }
.article-inline-label .icon { width: .95rem; height: .95rem; }
.article-inline-title { display: inline; color: var(--ink) !important; font-family: var(--ff-head); font-size: 1.15rem; font-weight: 900; line-height: 1.3; text-decoration: none !important; }
.article-inline-title:hover { color: var(--blue) !important; }
.article-inline-deep-dive { margin: 2rem 0; }
.article-inline-deep-dive-card { display: grid; gap: .85rem; padding: .85rem; border: 1px solid var(--paper-3); color: var(--ink) !important; text-decoration: none !important; }
.article-inline-deep-dive-media { display: block; overflow: hidden; aspect-ratio: 16/8.5; background: var(--paper-2); }
.article-inline-deep-dive-media img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .22s ease; }
.article-inline-deep-dive-copy { display: grid; gap: .45rem; }
.article-inline-deep-dive-copy strong { color: var(--ink); font-family: var(--ff-head); font-size: 1.48rem; line-height: 1.12; }
.article-inline-deep-dive-copy small { color: var(--ink-3); font-family: var(--ff-ui); font-size: .72rem; font-weight: 700; }
.article-inline-deep-dive-card:hover { border-color: var(--blue); }
.article-inline-deep-dive-card:hover img { transform: scale(1.025); }
.article-inline-watch-media { position: relative; display: block; margin: 0 0 .72rem; aspect-ratio: 16/8.5; overflow: hidden; background: var(--paper-2); }
.article-inline-watch-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.article-inline-callout {
  --callout-accent: var(--blue);
  position: relative; padding: 1.05rem 1.15rem 1.1rem; border: 1px solid var(--paper-3);
  border-left: 5px solid var(--callout-accent); background: #f2f7fa; color: var(--ink-2);
  box-shadow: 0 10px 24px rgba(31,39,50,.05);
}
.article-inline-callout::before {
  position: absolute; top: .95rem; right: 1rem; width: .72rem; height: .72rem;
  border-radius: 50%; background: var(--callout-accent); content: ""; opacity: .82;
}
.article-inline-callout strong {
  display: block; max-width: calc(100% - 2rem); margin-bottom: .4rem; color: var(--ink);
  font-family: var(--ff-ui); font-size: .78rem; letter-spacing: .01em; text-transform: none;
}
.article-inline-callout p { margin: 0; font-family: var(--ff-body); font-size: 1rem; line-height: 1.62; }
.article-inline-callout-context { --callout-accent: #5f6d7a; background: #f7f7f5; }
.article-inline-callout-alert { --callout-accent: #b42332; background: #fff5f5; border-color: #efd3d3; }
.article-inline-callout-key { --callout-accent: #d89b00; background: #fff8e3; border-color: #f1dfac; }
.article-inline-callout-dark { --callout-accent: #8ccde8; background: #1f2630; border-color: #1f2630; color: rgba(255,255,255,.86); box-shadow: none; }
.article-inline-callout-dark strong { color: #fff; }
.article-inline-callout-dark p { color: rgba(255,255,255,.86); }
.article-inline-quote { position: relative; margin: 2.1rem 0; padding: 1rem 1.4rem 1rem 3.2rem; border-left: 5px solid var(--blue); background: var(--paper-2); border-radius: 0 6px 6px 0; }
.article-inline-quote::before { position: absolute; top: 0.15rem; left: 0.75rem; color: var(--blue); content: "\201C"; font-family: Georgia, serif; font-size: 3.6rem; font-weight: 700; line-height: 1; opacity: .35; pointer-events: none; }
.article-inline-quote blockquote { margin: 0; border: 0; padding: 0; color: var(--ink); font-family: var(--ff-head); font-size: 1.45rem; font-weight: 700; line-height: 1.25; letter-spacing: -.015em; }
.article-inline-quote figcaption { display: grid; gap: .08rem; margin-top: .75rem; color: var(--ink-3); font-family: var(--ff-ui); font-size: .85rem; }
.article-inline-quote figcaption strong { color: var(--blue); font-size: .92rem; }
.article-inline-dossier {
  padding: 0;
  border: 1px solid var(--paper-3);
  border-top: 4px solid var(--blue);
  background: #fff;
  box-shadow: 0 12px 28px rgba(31,39,50,.05);
}
.article-inline-dossier a {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  color: inherit;
  text-decoration: none !important;
}
.article-inline-dossier-icon {
  display: inline-flex;
  width: 94px;
  height: 94px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--paper-2);
  color: var(--blue);
}
.article-inline-dossier-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.article-inline-dossier-icon .icon {
  width: 44%;
  height: 44%;
}
.article-inline-dossier-copy {
  display: grid;
  gap: .28rem;
}
.article-inline-dossier-copy small {
  color: var(--blue);
  font-family: var(--ff-ui);
  font-size: .68rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: .01em;
  text-transform: none;
}
.article-inline-dossier-copy strong {
  color: var(--ink);
  font-family: var(--ff-head);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.02;
}
.article-inline-dossier-copy em {
  color: var(--ink-3);
  font-family: var(--ff-body);
  font-size: .95rem;
  font-style: normal;
  line-height: 1.45;
}
.article-inline-dossier a:hover .article-inline-dossier-copy strong {
  color: var(--blue);
}
.article-inline-key-points { padding: 1rem 1.1rem; border-top: 3px solid var(--ink); border-bottom: 1px solid var(--paper-3); background: #f7f9fa; }
.article-inline-key-points strong { display: block; margin-bottom: .45rem; color: var(--ink); font-size: .74rem; letter-spacing: .01em; text-transform: none; }
.article-inline-key-points ul { margin: 0; padding-left: 1.15rem; }
.article-inline-key-points li { margin: .32rem 0; color: var(--ink-2); font-family: var(--ff-body); font-size: .98rem; line-height: 1.48; }
.article-inline-image { margin: 2rem 0; }
.article-inline-image img { display: block; width: 100%; height: auto; }
.article-inline-image figcaption, .article-inline-embed figcaption { padding: .45rem .1rem 0; color: var(--ink-3); font-family: var(--ff-ui); font-size: .84rem; line-height: 1.45; }
.article-inline-embed { margin: 2rem 0; }
.article-inline-embed iframe { display: block; width: 100%; max-width: 100%; border: 0; background: #f7f9fa; }
.article-inline-social-embed { padding: 1rem; border: 1px solid var(--paper-3); background: #f7f9fa; }
.article-social-embed-frame { display: grid; min-height: 260px; place-items: center; }
.article-inline-social-embed blockquote { max-width: 100%; margin: 0 auto !important; }
.article-inline-social-twitter .twitter-tweet { color: var(--ink-2); font-family: var(--ff-ui); }
.article-video-social { max-width: 820px; margin: 0 auto 1.25rem; background: #fff; }
.article-video-social .article-social-embed-frame { min-height: 360px; }
.article-inline-divider { width: 92px; margin: 2.2rem auto; border: 0; border-top: 3px solid var(--blue); }
.article-inline-video { margin: 2rem 0; background: #111820; }
.article-inline-video-frame { position: relative; aspect-ratio: 16/9; }
.article-inline-video iframe, .article-inline-video video { display: block; width: 100%; height: 100%; border: 0; }
.article-inline-video-placeholder { display: grid; width: 100%; height: 100%; place-items: center; color: rgba(255,255,255,.75); }
.article-inline-video-placeholder .icon { width: 3.5rem; height: 3.5rem; }
.article-inline-video-heading { display: flex; gap: .42rem; align-items: center; padding: .68rem .8rem .2rem; color: #fff; font-family: var(--ff-ui); font-size: .78rem; font-weight: 750; }
.article-inline-video-heading .icon { width: 1rem; height: 1rem; }
.article-inline-video figcaption { padding: .25rem .8rem .7rem; color: rgba(255,255,255,.74); font-family: var(--ff-ui); font-size: .84rem; line-height: 1.45; }
.live-meta-label { color: #b42332; font-weight: 800; }
.live-page-state {
  display: inline-flex; gap: .42rem; align-items: center; margin: .45rem 0 .28rem; padding: .3rem .48rem;
  background: #b42332; color: #fff; font-family: var(--ff-ui); font-size: .66rem; font-weight: 850;
  letter-spacing: .01em; text-transform: none;
}
.live-page-state:not(.is-closed) .live-status-dot { animation: live-pulse 1.5s ease-in-out infinite; }
.live-page-state.is-closed { background: #59636e; }
.live-coverage { margin-top: -.4rem; }
.live-coverage-head { display: flex; justify-content: space-between; gap: 1rem; align-items: end; margin-bottom: 1rem; padding-bottom: .8rem; border-bottom: 3px solid var(--ink); }
.live-coverage-head h2 { margin-top: .38rem; font-family: var(--ff-head); font-size: 1.42rem; font-weight: 900; line-height: 1.12; }
.live-coverage-status { display: inline-flex; gap: .42rem; align-items: center; color: #b42332; font-family: var(--ff-ui); font-size: .7rem; font-weight: 650; letter-spacing: .01em; text-transform: none; }
.live-coverage-status:not(.is-closed) .live-status-dot { animation: live-pulse 1.5s ease-in-out infinite; }
.live-coverage-status.is-closed { color: var(--ink-3); }
.live-auto-refresh { color: var(--ink-3); font-family: var(--ff-ui); font-size: .66rem; }
.live-summary-panel {
  margin: 0 0 1.15rem;
  border: 1px solid var(--paper-3);
  border-left: 5px solid var(--blue);
  background: #fff;
  box-shadow: 0 8px 24px rgba(24,34,45,.06);
}
.live-summary-panel summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: .65rem;
  align-items: center;
  padding: .85rem 1rem;
  cursor: pointer;
  list-style: none;
}
.live-summary-panel summary::-webkit-details-marker { display: none; }
.live-summary-panel summary > span {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  color: var(--blue);
  font-family: var(--ff-ui);
  font-size: .72rem;
  font-weight: 650;
  letter-spacing: .02em;
  text-transform: none;
}
.live-summary-panel summary > span::before {
  content: "";
  flex: 0 0 auto;
  width: .38rem;
  height: .38rem;
  border-radius: 50%;
  background: currentColor;
}
.live-summary-panel summary strong {
  color: var(--ink);
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1.12;
}
.live-summary-panel summary time {
  color: var(--ink-3);
  font-family: var(--ff-ui);
  font-size: .68rem;
  font-weight: 750;
  white-space: nowrap;
}
.live-summary-panel summary .icon {
  width: 1rem;
  height: 1rem;
  color: var(--ink-3);
  transition: transform .18s ease;
}
.live-summary-panel[open] summary .icon { transform: rotate(180deg); }
.live-summary-content {
  padding: 0 1rem 1rem;
  color: #303741;
  font-size: 1rem;
  line-height: 1.68;
}
.live-summary-content p { margin-bottom: .8em; }
.live-summary-content p:last-child { margin-bottom: 0; }
.live-summary-content ul,
.live-summary-content ol,
.live-entry-content ul,
.live-entry-content ol {
  margin: .75rem 0 1rem;
  padding-left: 1.25rem;
}
.live-summary-content li,
.live-entry-content li {
  margin: .22rem 0;
  padding-left: .12rem;
}
.live-summary-content ol li[data-list="bullet"],
.live-entry-content ol li[data-list="bullet"] {
  list-style-type: disc;
}
.live-summary-content ol li[data-list="bullet"]::marker,
.live-entry-content ol li[data-list="bullet"]::marker {
  content: "\2022  ";
}
.live-entry-list { display: grid; }
.live-entry { display: grid; grid-template-columns: 86px minmax(0,1fr); gap: .85rem; padding: 1rem 0 1.1rem; border-bottom: 1px solid var(--paper-3); }
.live-entry.is-pinned { margin: .45rem 0; padding: 1rem .9rem 1.1rem; border: 1px solid var(--paper-3); border-left: 4px solid var(--blue); background: #f7fbfd; box-shadow: 0 7px 22px rgba(24,34,45,.05); }
.live-entry-time { color: #b42332; font-family: var(--ff-ui); font-size: .72rem; font-weight: 650; line-height: 1.3; letter-spacing: .01em; text-transform: none; }
.live-entry-pinned { display: inline-flex; gap: .34rem; align-items: center; margin-bottom: .45rem; color: var(--blue); font-family: var(--ff-ui); font-size: .66rem; font-weight: 650; letter-spacing: .01em; text-transform: none; }
.live-entry-pinned .icon { width: .82rem; height: .82rem; }
.live-entry-eyebrow {
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: .48rem;
  color: var(--live-entry-accent, var(--blue));
  font-family: var(--ff-ui);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .01em;
  text-transform: none;
}
.live-entry-eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: .38rem;
  height: .38rem;
  border-radius: 50%;
  background: currentColor;
}
.live-entry.is-recap { margin: 1rem 0; padding: 1.15rem 1rem 1.2rem; border: 1px solid var(--paper-3); border-left: 5px solid #b42332; background: #fff; box-shadow: 0 8px 24px rgba(24,34,45,.06); }
.live-entry.is-recap .live-entry-time { color: var(--ink); }
.live-entry.is-recap .live-entry-body h2 { font-size: 1.55rem; font-weight: 900; }
.live-entry-body h2 { margin-bottom: .45rem; color: var(--ink); font-family: var(--ff-head); font-size: 1.28rem; font-weight: 900; line-height: 1.16; }
.live-entry-content { color: #303741; font-size: 1rem; line-height: 1.68; }
.live-entry-content p { margin-bottom: .8em; }
.live-entry-content p:last-child { margin-bottom: 0; }

/* Newsletter */
.newsletter-page { max-width: 980px; padding-top: 2.2rem; padding-bottom: 4rem; }
.newsletter-page-form { display: grid; gap: 1.15rem; }
.newsletter-email-label { display: grid; gap: .35rem; max-width: 520px; color: var(--ink-3); font-family: var(--ff-ui); font-size: .76rem; font-weight: 750; }
.newsletter-list-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: .75rem; }
.newsletter-list-card { display: flex; gap: .7rem; align-items: flex-start; padding: 1rem; border: 1px solid var(--paper-3); background: var(--white); cursor: pointer; }
.newsletter-list-card input { margin-top: .25rem; accent-color: var(--blue); }
.newsletter-list-card strong, .newsletter-list-card small { display: block; }
.newsletter-list-card strong { color: var(--ink); font-family: var(--ff-head); font-size: 1.08rem; font-weight: 900; line-height: 1.25; }
.newsletter-list-card small { margin-top: .25rem; color: var(--ink-3); font-family: var(--ff-ui); font-size: .72rem; line-height: 1.45; }
.newsletter-reward-copy { color: var(--ink-3); font-size: .84rem; }
.newsletter-account-link { margin-left: .75rem; color: var(--blue); font-family: var(--ff-ui); font-size: .78rem; font-weight: 700; }
.newsletter-signup { display: grid; grid-template-columns: auto minmax(0, 1fr) minmax(210px, auto); gap: .8rem 1rem; align-items: center; margin: 1.6rem 0; padding: 1rem; border-top: 4px solid var(--blue); background: #edf4f8; }
.newsletter-signup-icon { display: grid; width: 2rem; height: 2rem; place-items: center; color: var(--blue); }
.newsletter-signup-icon .icon { width: 1.5rem; height: 1.5rem; }
.newsletter-signup-copy strong { color: var(--ink); font-family: var(--ff-head); font-size: 1.1rem; }
.newsletter-signup-copy p { margin: .14rem 0 0; color: var(--ink-3); font-family: var(--ff-ui); font-size: .73rem; line-height: 1.42; }
.newsletter-signup form { display: flex; gap: .42rem; }
.newsletter-signup input[type=email] { min-width: 0; padding: .52rem .58rem; border: 1px solid var(--paper-3); background: #fff; font: .76rem var(--ff-ui); }
.newsletter-signup .btn { white-space: nowrap; }
.newsletter-signup-more { grid-column: 2 / -1; color: var(--blue); font-family: var(--ff-ui); font-size: .7rem; font-weight: 750; }
.account-newsletters { max-width: 760px; }
.account-newsletter-head { display: flex; flex-wrap: wrap; gap: .5rem 1rem; align-items: baseline; margin-bottom: .85rem; }
.account-newsletter-head h2 { font-family: var(--ff-head); }
.account-newsletter-head span { color: var(--blue); font-family: var(--ff-ui); font-size: .74rem; font-weight: 750; }
.account-newsletters .btn { margin-top: 1rem; }
.newsletter-unsubscribe-page { display: grid; min-height: 54vh; place-items: center; padding-top: 3rem; padding-bottom: 3rem; }
.newsletter-unsubscribe-card { max-width: 620px; padding: 2rem; border-top: 4px solid var(--blue); background: #fff; box-shadow: var(--shadow); text-align: center; }
.newsletter-unsubscribe-card > .icon { width: 2rem; height: 2rem; color: var(--blue); }
.newsletter-unsubscribe-card h1 { margin: .7rem 0 .4rem; font-family: var(--ff-head); }
.newsletter-unsubscribe-card p { margin-bottom: 1rem; color: var(--ink-3); }
.newsletter-unsubscribe-card form { display: flex; flex-wrap: wrap; gap: .55rem; justify-content: center; }
@media (max-width: 760px) {
  .newsletter-signup { grid-template-columns: auto 1fr; }
  .newsletter-signup form, .newsletter-signup-more { grid-column: 1 / -1; }
}
.live-entry-author { display: inline-flex; gap: .42rem; align-items: center; margin-top: .68rem; color: var(--ink-3); font-family: var(--ff-ui); font-size: .66rem; }
.live-entry-author-avatar { width: 26px; height: 26px; flex: 0 0 26px; border-radius: 50%; object-fit: cover; background: var(--paper-3); }
.live-entry-author a { color: var(--blue); font-weight: 750; }
.byline-author-item { display: inline-flex; align-items: center; gap: .45rem; vertical-align: middle; }
.byline-author-avatar { width: 26px; height: 26px; flex: 0 0 26px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(0, 0, 0, 0.12); background: var(--paper-2); }
.byline-author-item a { color: inherit; text-decoration: underline; text-decoration-color: rgba(0, 0, 0, 0.22); text-underline-offset: 3px; font-weight: 600; }
.byline-author-item a:hover { color: var(--blue); text-decoration-color: var(--blue); }
.live-empty { padding: 1rem 0; color: var(--ink-3); font-style: italic; }
@keyframes live-pulse { 50% { opacity: .35; } }
.paywall-gate { border: 1px solid var(--paper-3); border-top: 4px solid var(--blue); border-radius: 0; box-shadow: none; }
.tags-row { padding-top: .8rem; border-top: 1px solid var(--paper-3); }
.tag-pill { border-radius: 0; background: var(--paper-2); color: var(--blue); }
.tag-pill:hover { background: var(--blue); color: var(--white); }
.article-authors { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 1.6rem 2rem; margin-top: 1rem; padding-top: 1.15rem; border-top: 1px solid var(--paper-3); }
.author-box { display: flex; flex: 1 1 300px; gap: 1.2rem; align-items: flex-start; padding: 0; border-bottom: 0; min-width: 260px; }
.author-box:only-child { flex: 1 1 100%; max-width: 100%; }
.author-box > div:last-child { flex: 1; min-width: 0; }
.author-avatar { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border-radius: 50%; background: var(--blue); color: var(--white); font-family: var(--ff-head); font-size: 1.1rem; font-weight: 900; margin-top: .15rem; }
.author-avatar img, .author-page-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.author-label { color: var(--blue); font-family: var(--ff-ui); font-size: .62rem; font-weight: 800; letter-spacing: .01em; text-transform: none; }
.author-name { font-family: var(--ff-head); font-size: 1.1rem; font-weight: 900; }
.author-name a:hover, .story-meta a:hover, .card-meta a:hover { color: var(--blue); }
.founder-badge {
  display: inline-flex; height: .68em; align-items: center; margin-left: .24em;
  color: var(--blue); vertical-align: .02em;
}
.founder-badge-logo {
  display: block; width: .7em; height: .7em; background: currentColor;
  -webkit-mask: url('/assets/icons/icone.svg') center / contain no-repeat;
  mask: url('/assets/icons/icone.svg') center / contain no-repeat;
}
.author-box p { margin-top: .2rem; color: var(--ink-2); font-size: .85rem; }
.author-website { display: inline-flex; align-items: center; gap: .3rem; margin-top: .45rem; color: var(--blue); font-family: var(--ff-ui); font-size: .7rem; font-weight: 700; text-transform: none; letter-spacing: .01em; }
.author-social-links { display: flex; flex-wrap: wrap; gap: .42rem; margin-top: .65rem; font-family: var(--ff-ui); }
.author-social-links a {
  display: inline-flex; gap: .32rem; align-items: center; padding: .32rem .55rem;
  border: 1px solid var(--paper-3); border-radius: 999px; color: var(--ink-2);
  font-size: .7rem; font-weight: 750; text-decoration: none;
}
.author-social-links a:hover { border-color: var(--blue); color: var(--blue); }
.author-social-links .icon { width: .85rem; height: .85rem; }
.author-page-header { padding: 2.2rem 1rem; border-bottom: 1px solid var(--paper-3); background: var(--paper-2); }
.author-page-inner { display: flex; gap: 1.4rem; align-items: center; max-width: 880px; margin: 0 auto; }
.author-page-avatar { width: 96px; height: 96px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border-radius: 50%; background: var(--blue); color: var(--white); font-family: var(--ff-head); font-size: 2rem; font-weight: 900; }
.author-page-header h1 { margin: .15rem 0 .35rem; font-family: var(--ff-head); font-size: clamp(2.1rem, 4vw, 3rem); font-weight: 900; letter-spacing: -.04em; }
.author-page-header p { max-width: 680px; color: var(--ink-2); font-size: .95rem; line-height: 1.6; }
.related-block { margin-top: 2rem; }

.btn { border-radius: 2px; }
.btn-primary { background: var(--blue); border-color: var(--blue); }
.btn-primary:hover { background: var(--theme-accent-hover, #00567e); border-color: var(--theme-accent-hover, #00567e); }
.btn-outline { color: var(--blue); border-color: var(--blue); }
.btn-outline:hover { background: var(--blue); color: var(--white); }
.form-control:focus { border-color: var(--blue); }

footer { margin-top: 0; background: var(--ink); }
.footer-brand .site-logo { color: var(--white); font-size: 2rem; }
.footer-col a:hover, .footer-col .link-button:hover { color: #8ccde8; }
.footer-col .icon { margin-right: .25rem; }

.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;
}
.header-search {
  display: flex; align-items: center; height: 30px; margin-right: .35rem;
  border: 1px solid var(--paper-3); background: var(--white);
}
.header-search input {
  width: 112px; border: 0; outline: 0; padding: 0 .45rem;
  color: var(--ink); font-family: var(--ff-ui); font-size: .7rem;
}
.header-search button {
  display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 100%;
  border: 0; background: transparent; color: var(--ink-2); cursor: pointer;
}
.header-search button:hover { color: var(--blue); }
.search-page-form { display: flex; gap: .65rem; max-width: 650px; margin-top: 1rem; }
.search-page-form .form-control { flex: 1; min-width: 0; background: var(--white); }
.search-results-count {
  margin-bottom: .5rem; padding-bottom: .7rem; border-bottom: 1px solid var(--paper-3);
  color: var(--ink-3); font-family: var(--ff-ui); font-size: .74rem;
}
.popular-box { border-top: 3px solid var(--blue); padding-top: .6rem; }
.popular-box h3 {
  font-family: var(--ff-ui); font-size: .82rem; font-weight: 850;
  letter-spacing: .01em; text-transform: none;
}
.popular-box ol { list-style: none; counter-reset: popular; }
.popular-box li { counter-increment: popular; }
.popular-article-card {
  position: relative;
  grid-template-columns: minmax(132px, 38%) minmax(0, 1fr);
  padding-left: 2.15rem;
}
.popular-rank {
  position: absolute;
  left: 0;
  top: 1rem;
  display: block;
  width: 1.45rem;
  pointer-events: none;
}
.popular-rank::before {
  content: counter(popular);
  color: var(--blue);
  font-family: var(--ff-head);
  font-size: 1.38rem;
  font-weight: 750;
  line-height: 1;
}
.story-type {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 0;
    border-left: 0;
    color: var(--ink-2);
    font-family: var(--ff-head);
    font-size: .85rem;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1;
    text-transform: none;
}

.card-kickers {
  display: flex;
  flex-wrap: wrap;
  gap: .2rem .35rem;
  align-items: baseline;
  margin-bottom: .28rem;
}
.card-kickers .card-cat {
  margin: 0;
}
.dossier-header {
  border-bottom: 1px solid var(--paper-3);
  background: linear-gradient(180deg, #fff 0%, var(--paper) 100%);
}
.dossier-header-inner {
  padding-top: 2.6rem;
  padding-bottom: 2.25rem;
}
.dossier-kicker {
  margin-bottom: .65rem;
  color: var(--blue);
  font-family: var(--ff-ui);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .01em;
  text-transform: none;
}
.dossier-title-row {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.dossier-title-row h1 {
  margin: 0;
  color: var(--ink);
  font-family: var(--ff-head);
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.045em;
}
.dossier-icon {
  width: clamp(64px, 8vw, 112px);
  height: clamp(64px, 8vw, 112px);
  object-fit: contain;
}
.dossier-index-icon {
  display: inline-flex;
  width: clamp(54px, 7vw, 96px);
  height: clamp(54px, 7vw, 96px);
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
.dossier-index-icon .icon {
  width: 100%;
  height: 100%;
}
.dossier-header p {
  max-width: 780px;
  margin: .85rem 0 0;
  color: var(--ink-3);
  font-size: 1.08rem;
  line-height: 1.6;
}
.dossier-description-more {
  max-width: 820px;
  margin-top: 1rem;
  color: var(--ink-3);
  font-size: 1.08rem;
  line-height: 1.6;
}
.dossier-description-more summary {
  display: block;
  cursor: pointer;
  list-style: none;
}
.dossier-description-more summary::-webkit-details-marker { display: none; }
.dossier-description-more summary span {
  display: inline-flex;
  margin-left: .35rem;
  color: var(--blue);
  font-family: var(--ff-ui);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .01em;
  text-transform: none;
}
.dossier-description-more[open] summary { display: none; }
.dossier-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.homepage-dossier-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}
.dossier-card {
  border: 1px solid var(--paper-3);
  background: #fff;
}
.homepage-dossier-card {
  border: 1px solid var(--paper-3);
  border-top: 3px solid var(--blue);
  background: #fff;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.homepage-dossier-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--blue) 42%, var(--paper-3));
  box-shadow: 0 14px 34px rgba(31, 39, 50, .08);
}
.dossier-card-link {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  min-height: 148px;
  padding: 1rem;
  color: inherit;
}
.homepage-dossier-card a {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: .85rem;
  min-height: 128px;
  padding: .9rem;
  color: inherit;
}
.dossier-card-link.no-dossier-image,
.homepage-dossier-card a.no-dossier-image {
  grid-template-columns: 1fr;
  min-height: 0;
}
.homepage-dossier-card a.no-dossier-image {
  padding: 1rem;
}
.homepage-dossier-card a.no-dossier-image .homepage-dossier-kicker,
.homepage-dossier-card a.no-dossier-image .homepage-dossier-cta {
  display: none;
}
.dossier-card-featured .dossier-card-link.no-dossier-image {
  padding: 1.05rem 1rem;
}
.dossier-card-featured .dossier-card-link.no-dossier-image .dossier-card-kicker,
.dossier-card-featured .dossier-card-link.no-dossier-image p,
.dossier-card-featured .dossier-card-link.no-dossier-image small {
  display: none;
}
.dossier-card-featured {
  border-top: 4px solid var(--blue);
}
.dossier-card-icon {
  width: 92px;
  height: 92px;
  object-fit: contain;
}
.homepage-dossier-media {
  display: inline-flex;
  width: 82px;
  height: 82px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--paper-2);
}
.homepage-dossier-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.dossier-card-kicker {
  display: block;
  margin-bottom: .35rem;
  color: var(--blue);
  font-family: var(--ff-ui);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .01em;
  text-transform: none;
}
.homepage-dossier-kicker {
  display: block;
  margin-bottom: .35rem;
  color: var(--blue);
  font-family: var(--ff-ui);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .01em;
  text-transform: none;
}
.dossier-card h2,
.homepage-dossier-card strong {
  display: block;
  margin: 0;
  color: var(--ink);
  font-family: var(--ff-head);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.02;
}
.homepage-dossier-card strong {
  font-size: clamp(1.18rem, 2vw, 1.7rem);
  line-height: 1.05;
}
.dossier-card p,
.homepage-dossier-card p {
  margin: .45rem 0 0;
  color: var(--ink-3);
  line-height: 1.45;
}
.homepage-dossier-card p {
  font-size: .92rem;
}
.homepage-dossier-cta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  margin-top: .75rem;
  color: var(--blue);
  font-family: var(--ff-ui);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .01em;
  text-transform: none;
}
.homepage-dossier-cta::after {
  content: "†’";
}
.dossier-card small {
  display: block;
  margin-top: .55rem;
  color: var(--ink-3);
  font-family: var(--ff-ui);
  font-size: .8rem;
}
.dossier-list-section + .dossier-list-section { margin-top: 2.25rem; }
.sidebar-dossier-link {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: .65rem;
  align-items: center;
  padding: .75rem 0;
  border-top: 1px solid var(--paper-3);
  color: var(--ink);
  font-family: var(--ff-head);
  font-size: 1.12rem;
  font-weight: 750;
  line-height: 1.06;
}
.sidebar-dossier-link img,
.sidebar-dossier-link .icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
}
.article-preview-banner {
  display: flex; align-items: center; justify-content: center; gap: .45rem;
  padding: .65rem 1rem; border-bottom: 1px solid #b8dce9; background: #eaf6fb;
  color: #005f89; font-family: var(--ff-ui); font-size: .75rem;
}
.article-preview-banner .icon { width: 1rem; height: 1rem; }

@media (max-width: 980px) {
  .front-content { grid-template-columns: 1fr; }
  .front-sidebar { display: grid; grid-template-columns: 1fr; gap: 1rem; border-left: 0; padding-left: 0; }
  .homepage-magazine-grid,
  .homepage-object-story { grid-template-columns: 1fr; }
  .listing-content { grid-template-columns: 1fr; }
  .listing-sidebar { position: static; }
}
@media (max-width: 760px) {
  .masthead-utility-inner { justify-content: center; }
  .masthead-utility-inner > :not(:first-child) { display: none; }
  .masthead-top { min-height: 82px; grid-template-columns: 1fr; text-align: center; }
  .masthead-tagline { display: none; }
  .masthead-actions { justify-content: center; }
  .header-search input { width: 92px; }
  .site-logo { font-size: 3rem; }
  .lead-grid, .article-grid, .listing-grid { grid-template-columns: 1fr; }
  .lead-story { padding-right: 0; }
  .lead-rail { border-left: 0; padding: 0 0 1rem; }
  .front-sidebar { grid-template-columns: 1fr; }
  .card,
  .homepage-block-list .card,
  .homepage-block-compact .card { grid-template-columns: 112px minmax(0, 1fr); }
  .sidebar-article-card,
  .popular-article-card { grid-template-columns: 112px minmax(0, 1fr); }
  .homepage-thread,
  .homepage-territories > div,
  .dossier-card-grid,
  .homepage-dossier-grid {
    grid-template-columns: 1fr;
  }
  .dossier-card-link,
  .homepage-dossier-card a {
    grid-template-columns: 72px minmax(0, 1fr);
    min-height: 118px;
  }
  .article-inline-dossier a {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: .8rem;
    padding: .85rem;
  }
  .dossier-card-icon,
  .homepage-dossier-icon,
  .article-inline-dossier-icon {
    width: 72px;
    height: 72px;
  }
  .homepage-format-wall { grid-template-columns: 1fr; }
  .homepage-timeline article { grid-template-columns: 3.7rem minmax(0, 1fr); }
  .popular-article-card { padding-left: 1.85rem; }
  .live-summary-panel summary { grid-template-columns: 1fr auto; }
  .live-summary-panel summary > span,
  .live-summary-panel summary strong,
  .live-summary-panel summary time { grid-column: 1; }
  .live-summary-panel summary .icon { grid-column: 2; grid-row: 1 / span 3; }
  .card-excerpt { display: none; }
  .article-hero { padding-top: 2rem; }
  .article-hero h1 { font-size: 2.45rem; }
  .author-page-inner { align-items: flex-start; }
  .author-page-avatar { width: 68px; height: 68px; font-size: 1.5rem; }
}

/* MEDIAPART-INSPIRED EDITORIAL THEME */
:root {
  --ink: #211d1a;
  --ink-2: #514a44;
  --ink-3: #7b7169;
  --paper: #fbf8f2;
  --paper-2: #f1ebe1;
  --paper-3: #d8cec0;
  --blue: #c74725;
  --gold: #c74725;
  --red: #c74725;
}
body { background: #fdfbf7; }
.masthead-utility { border-color: var(--paper-3); background: #f3eee6; }
.masthead-utility-inner { color: var(--ink-3); }
.masthead-utility-inner a { color: var(--blue); }
.masthead-top { min-height: 114px; background: #fdfbf7; }
.site-logo {
  display: block; width: clamp(146px, 17vw, 226px); color: var(--blue);
  font-size: 0; line-height: 0;
}
.site-logo-mark {
  display: block; width: 100%; aspect-ratio: 1853.34 / 766.44;
  color: inherit;
  background: currentColor;
  -webkit-mask: var(--site-logo-image, url('/assets/icons/logo-ifrikia.svg')) center / contain no-repeat;
  mask: var(--site-logo-image, url('/assets/icons/logo-ifrikia.svg')) center / contain no-repeat;
}
.site-logo-recolor .site-logo { color: var(--site-logo-color, var(--blue)); }
.site-logo-original .site-logo-mark {
  background: var(--site-logo-image, url('/assets/icons/logo-ifrikia.svg')) center / contain no-repeat;
  -webkit-mask: none; mask: none;
}
.masthead-actions { color: var(--ink-2); }
.header-search { height: 36px; border-color: #c8bdb0; background: #fff; }
.header-search input { width: 220px; padding: 0 .65rem; font-size: .76rem; background: #fff; }
.header-search button { width: 36px; }
.language-switcher {
  display: inline-flex; align-items: center; gap: .28rem;
  color: var(--ink-3); font-family: var(--ff-ui); font-size: .72rem; font-weight: 700;
  letter-spacing: .04em;
}
.language-switcher a { color: var(--ink-3); }
.language-switcher a:hover, .language-switcher a.active { color: var(--blue); }
.nav-shell { border-top: 1px solid #171411; border-bottom: 3px solid var(--blue); background: #25211e; }
.nav-strip a { padding-top: .93rem; padding-bottom: .83rem; }
.nav-strip a:hover, .nav-strip a.active { border-bottom-color: #f0a086; color: #fff; }
.newsline { background: #fdfbf7; }
.newsline strong, .story-section, .card-cat, .sidebar-eyebrow, .cat-kicker, .article-hero .article-cat { color: var(--blue); }
.lead-section { border-top-color: var(--ink); }
.subscribe-box { border-top-color: var(--blue); background: #f4e8dc; }
.btn-primary:hover { border-color: #a83c20; background: #a83c20; }
.footer-brand .site-logo { width: 154px; margin-bottom: .8rem; color: #f0a086; }
.footer-col a:hover, .footer-col .link-button:hover { color: #f0a086; }

.maintenance-body { min-height: 100vh; background: #f3eee6; }
.maintenance-page {
  min-height: 100vh; display: grid; place-items: center; padding: 2rem;
  background: linear-gradient(135deg, #f8f4ed 0%, #eee5d8 100%);
}
.maintenance-card {
  width: min(620px, 100%); padding: 3rem; border-top: 6px solid var(--blue);
  background: #fdfbf7; box-shadow: 0 18px 45px rgba(56, 42, 32, .12);
}
.maintenance-logo { width: min(245px, 72vw); margin-bottom: 2rem; }
.maintenance-kicker {
  margin-bottom: .65rem; color: var(--blue); font-family: var(--ff-ui);
  font-size: .72rem; font-weight: 800; letter-spacing: .01em; text-transform: none;
}
.maintenance-card h1 {
  margin-bottom: .85rem; color: var(--ink); font-family: var(--ff-head);
  font-size: clamp(2rem, 6vw, 3.2rem); line-height: 1.02; letter-spacing: -.045em;
}
.maintenance-card p:last-child { max-width: 510px; color: var(--ink-2); line-height: 1.65; }

@media (max-width: 760px) {
  .masthead-top { min-height: 96px; }
  .site-logo { width: 166px; margin-inline: auto; }
  .masthead-actions { gap: .6rem; }
  .header-search input { width: min(180px, 39vw); }
  .maintenance-card { padding: 2rem; }
  .category-identity-lead-grid,
  .category-identity-list-grid,
  .category-identity-card,
  .category-identity-card.is-lead { grid-template-columns: 1fr; }
  .category-identity-card.is-lead { grid-column: auto; }
  .category-identity-card-media { min-height: 0; }
  .category-identity-card-body h2,
  .category-identity-card.is-lead h2 { font-size: clamp(1.55rem, 8vw, 2.35rem); }
}

/* IFRIKIA HEADER MIX */
:root {
  --ink: #1f2732;
  --ink-2: #454d57;
  --ink-3: #717984;
  --paper: #ffffff;
  --paper-2: #f5f6f7;
  --paper-3: #d5d9de;
  --gold: #026b9c;
  --gold-l: #e7f4fa;
  --red: #c64545;
  --blue: #026b9c;
}
body { background: var(--paper); }
.masthead { border-bottom: 0; background: var(--paper); color: var(--ink); }
.masthead-top {
  min-height: 132px; max-width: 1320px; padding: 1rem 1.2rem;
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 1.35rem; background: var(--paper);
}
.masthead-context { align-self: center; font-family: var(--ff-ui); }
.masthead-context .language-switcher {
  margin-bottom: 1.7rem; color: var(--ink-3); font-size: .72rem; letter-spacing: .03em;
}
.language-switcher a { color: var(--ink-3); }
.language-switcher a:hover, .language-switcher a.active { color: var(--blue); }
.masthead-date { display: grid; gap: .08rem; color: var(--ink-3); font-size: .76rem; }
.masthead-date strong { color: var(--ink); font-size: .88rem; font-weight: 800; text-transform: capitalize; }
.site-logo {
  display: inline-grid;
  justify-items: center;
  gap: .28rem;
  width: clamp(150px, 16vw, 220px);
  color: var(--ink);
  text-decoration: none;
}
.site-logo-section {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .36rem;
  color: var(--blue);
  font-family: var(--ff-ui);
  font-size: clamp(.66rem, .85vw, .82rem);
  font-weight: 900;
  letter-spacing: .01em;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
}
.site-logo .site-logo-section { color: var(--blue); }
.site-logo-section-icon {
  width: 1.08em;
  height: 1.08em;
  flex: 0 0 auto;
  background: var(--section-logo-color, var(--blue));
  -webkit-mask: var(--section-logo-image) center / contain no-repeat;
  mask: var(--section-logo-image) center / contain no-repeat;
}
.site-logo-section-img {
  width: 1.18em;
  height: 1.18em;
  object-fit: contain;
}
.masthead-action-area { align-self: center; display: grid; justify-items: end; gap: .3rem; }
.editorial-access-link {
  color: var(--red); font-family: var(--ff-ui); font-size: .76rem; font-weight: 800;
}
.editorial-access-link:hover { color: #a92f2f; text-decoration: underline; }
.masthead-actions { align-self: center; display: flex; align-items: center; justify-content: flex-end; gap: .8rem; }
.masthead-actions a, .masthead-actions .link-button {
  padding: .45rem .35rem; color: var(--ink-2); font-size: .72rem; text-transform: none;
}
.masthead-actions a:hover, .masthead-actions .link-button:hover { color: var(--blue); }
.masthead-action-link {
  display: inline-grid; justify-items: center; gap: .28rem; min-width: 78px; white-space: nowrap; flex-shrink: 0;
}
.masthead-action-link span { white-space: nowrap; }
.masthead-action-link .icon { width: 1.35rem; height: 1.35rem; }
.masthead-actions .btn-subscribe {
  padding: .72rem 1rem; border-radius: 2px; background: var(--blue); color: var(--white);
  font-size: .77rem; font-weight: 700; white-space: nowrap; flex-shrink: 0;
}
.masthead-actions .btn-subscribe:hover { background: var(--theme-accent-hover, #00567e); color: var(--white); }
.logout-button {
  display: inline-flex; align-items: center; gap: .38rem; border: 1px solid currentColor;
  background: transparent; color: inherit; cursor: pointer; font-family: var(--ff-ui);
  font-size: .72rem; font-weight: 700; line-height: 1; transition: var(--trans);
}
.logout-button .icon { width: 1rem; height: 1rem; }
.logout-button-header {
  padding: .58rem .68rem; border-color: #c8d7df; border-radius: 2px; color: var(--ink-2); white-space: nowrap; flex-shrink: 0;
}
.logout-button-header:hover { border-color: var(--blue); background: var(--gold-l); color: var(--blue); }
.logout-button-footer {
  margin-top: .45rem; padding: .52rem .62rem; border-color: rgba(255,255,255,.36);
  border-radius: 2px; color: rgba(255,255,255,.82);
}
.logout-button-footer:hover { border-color: #8ccde8; color: #8ccde8; }
#nav-sticky-sentinel {
  position: absolute;
  height: 1px;
  width: 100%;
  pointer-events: none;
  visibility: hidden;
}
.nav-shell {
  position: relative;
  z-index: 990;
  border-top: 0;
  border-bottom: 2px solid var(--blue);
  background: var(--theme-nav, #111316);
  transition: background-color .3s ease, box-shadow .3s ease;
}
.nav-shell.is-sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  background: rgba(17, 19, 22, 0.96) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 22px rgba(0, 0, 0, 0.45);
}
.nav-shell-placeholder {
  display: none;
  height: 44px;
  width: 100%;
}
.nav-shell-placeholder.is-active {
  display: block;
}
.site-logo.nav-sticky-logo,
.site-logo-recolor .site-logo.nav-sticky-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  padding: 0;
  border-right: 0;
  pointer-events: none;
  color: #ffffff !important;
  text-decoration: none;
  will-change: width, opacity, transform;
}
.site-logo.nav-sticky-logo .site-logo-mark,
.nav-shell.is-sticky .nav-sticky-logo .site-logo-mark,
.site-logo-recolor .site-logo.nav-sticky-logo .site-logo-mark {
  width: 105px;
  min-width: 105px;
  height: auto;
  aspect-ratio: 1853.34 / 766.44;
  color: #ffffff !important;
  background-color: #ffffff !important;
  flex-shrink: 0;
}
.nav-shell.is-sticky .nav-sticky-logo {
  pointer-events: auto;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  width: auto;
  max-width: none;
  opacity: 1;
  padding: 0 0.85rem 0 0.75rem;
}
.nav-shell-inner {
  display: flex; align-items: stretch; max-width: 1320px; min-height: 44px; padding: 0 1rem 0 0; position: relative;
}
.nav-fixed-actions {
  display: flex; align-items: stretch; flex-shrink: 0;
}
.nav-scroll-left-group {
  display: flex; align-items: stretch; flex-shrink: 0;
}
.nav-scroll-left-group[hidden], .nav-scroll-next[hidden] {
  display: none !important;
}
.nav-scroll-wrap {
  display: flex; align-items: stretch; flex: 1; min-width: 0; position: relative; overflow: hidden;
}
.nav-scroll-wrap::after {
  content: ''; position: absolute; top: 0; right: 32px; width: 28px; height: 100%;
  background: linear-gradient(to right, rgba(17, 19, 22, 0), rgba(17, 19, 22, 0.95));
  pointer-events: none; opacity: 0; transition: opacity .2s ease;
}
.nav-scroll-wrap.has-scroll-right::after {
  opacity: 1;
}
.nav-scroll-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 0; color: rgba(255,255,255,.85);
  cursor: pointer; padding: 0 .4rem; flex-shrink: 0; height: 100%;
  transition: color .15s ease, transform .15s ease, opacity .2s ease; z-index: 2;
}
.nav-scroll-arrow:hover { color: #ffffff; }
.nav-scroll-next:hover { transform: translateX(2px); }
.nav-scroll-prev:hover { transform: translateX(-2px); }
.nav-menu-toggle {
  display: inline-flex; align-items: center; gap: .48rem; padding: 0 1rem 0 .75rem;
  border: 0; border-right: 1px solid rgba(255,255,255,.18);
  background: transparent; color: rgba(255,255,255,.92); cursor: pointer;
  font-family: var(--ff-ui); font-size: .74rem; font-weight: 700;
}
.nav-menu-toggle:hover { color: #8ccde8; }
.nav-menu-toggle .icon { width: 1.1rem; height: 1.1rem; }

.nav-kiosk-btn {
  display: none !important;
}
.nav-kiosk-btn:hover, .nav-kiosk-btn.active { color: #8ccde8; }
.nav-kiosk-btn .icon { width: 1.1rem; height: 1.1rem; }

.drawer-kiosk-btn {
  display: flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .65rem 1rem; border-radius: 6px;
  background: rgba(26, 74, 122, 0.12); color: var(--blue, #1A4A7A);
  font-family: var(--ff-ui); font-size: .88rem; font-weight: 700;
  text-decoration: none !important; width: 100%; margin-bottom: .65rem;
  transition: background .18s ease, color .18s ease;
}
.drawer-kiosk-btn:hover, .drawer-kiosk-btn.active {
  background: var(--blue, #1A4A7A); color: #ffffff;
}
.drawer-kiosk-btn .icon { width: 1.2rem; height: 1.2rem; }
.nav-shell .header-search {
  height: auto; margin: 0; border: 0; border-right: 1px solid rgba(255,255,255,.18);
  background: transparent;
}
.nav-shell .header-search button { width: 38px; color: rgba(255,255,255,.9); }
.nav-shell .header-search button:hover { color: #8ccde8; }
.nav-shell .header-search input {
  width: 210px; padding: 0 .75rem 0 0; background: transparent; color: var(--white); font-size: .74rem;
}
.nav-shell .header-search input::placeholder { color: rgba(255,255,255,.58); }
.nav-mobile-actions { display: none; }
.nav-shell .nav-strip { flex: 1; max-width: none; margin: 0; padding: 0; border: 0; overflow-x: auto; overflow-y: hidden; scrollbar-width: none; min-width: 0; flex-wrap: nowrap; scroll-behavior: smooth; overscroll-behavior-x: contain; }
.nav-shell .nav-strip::-webkit-scrollbar { display: none; }
.nav-shell .nav-strip a {
  display: flex; align-items: center; padding: 0 clamp(.45rem, .75vw, .8rem); border-bottom: 3px solid transparent;
  color: rgba(255,255,255,.88); font-size: clamp(.73rem, .85vw, .8rem); font-weight: 750;
  white-space: nowrap; flex-shrink: 0; transition: color .15s ease, border-color .15s ease;
}
.nav-shell .nav-strip a:first-child { padding-left: .45rem; }
.nav-shell .nav-strip a:hover, .nav-shell .nav-strip a.active { border-bottom-color: var(--blue); color: var(--white); }
.nav-shell .nav-strip a > .icon { width: .9rem; height: .9rem; margin-right: .3rem; flex: none; }
/* Icon-only links (Vidéos, Podcasts): show only icon */
.nav-shell .nav-strip a.nav-iconic { padding: 0 .55rem; }
.nav-shell .nav-strip a.nav-iconic > .icon { width: 1rem; height: 1rem; margin-right: 0; }
.nav-shell .nav-strip a.nav-iconic .nav-label { display: none; }
.nav-category-group { position: relative; display: flex; align-items: stretch; }
.nav-category-group > a .icon { width: .85rem; height: .85rem; margin-left: .18rem; transition: transform .18s ease; }
.nav-category-group:hover > a .icon, .nav-category-group:focus-within > a .icon { transform: rotate(180deg); }
.nav-subcategories {
  position: absolute; top: calc(100% - 2px); left: 0; z-index: 800; min-width: 230px;
  padding: .42rem 0; border-top: 2px solid var(--blue); background: var(--theme-nav-secondary, #171a1e);
  box-shadow: 0 14px 28px rgba(13,18,24,.28); opacity: 0; visibility: hidden;
  pointer-events: none; transform: translateY(7px);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
}
.nav-category-group:hover .nav-subcategories, .nav-category-group:focus-within .nav-subcategories {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
  transition-delay: 0s;
}
.nav-shell .nav-subcategories a {
  display: block; padding: .68rem .92rem; border-bottom: 0; color: rgba(255,255,255,.82);
  font-size: .76rem; line-height: 1.25; white-space: nowrap;
}
.nav-shell .nav-subcategories a:hover, .nav-shell .nav-subcategories a.active { border-bottom: 0; background: rgba(255,255,255,.07); color: #fff; }
.section-subheader {
  border-bottom: 1px solid var(--paper-3);
  background: color-mix(in srgb, var(--section-accent, var(--blue)) 8%, var(--paper));
}
.section-subheader-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 42px;
  overflow-x: auto;
  scrollbar-width: none;
}
.section-subheader-inner::-webkit-scrollbar { display: none; }
.section-subheader-home,
.section-subheader-nav a {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  min-height: 42px;
  color: var(--ink);
  font-family: var(--ff-ui);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .02em;
  text-decoration: none;
  white-space: nowrap;
}
.section-subheader-home {
  gap: .3rem;
  padding-right: 1rem;
  border-right: 1px solid color-mix(in srgb, var(--section-accent, var(--blue)) 24%, transparent);
}
.section-subheader-nav {
  display: flex;
  align-items: stretch;
  gap: .8rem;
}
.section-subheader-home:hover,
.section-subheader-home.active,
.section-subheader-nav a:hover,
.section-subheader-nav a.active { color: var(--section-mark-color, var(--section-accent, var(--blue))); }
.section-subheader .category-editorial-marker {
  width: .42em;
  height: .9em;
  margin-right: 0;
  background: currentColor;
}
.section-subheader-nav .category-editorial-marker { opacity: .62; }
.newsline { background: var(--paper); }
.newsline strong, .story-section, .card-cat, .sidebar-eyebrow, .cat-kicker, .article-hero .article-cat { color: var(--blue); }
.has-section-identity .story-section,
.has-section-identity .card-cat,
.has-section-identity .sidebar-eyebrow,
.has-section-identity .cat-kicker,
.has-section-identity .article-hero .article-cat { color: var(--section-mark-color, var(--section-accent, var(--blue))); }
.has-section-identity .rail-title { border-top-color: var(--section-mark-color, var(--section-accent, var(--blue))); }
.story-section, .card-cat, .article-hero .article-cat {
  text-transform: none; letter-spacing: .015em; font-weight: 750;
}
.nav-shell .nav-strip a { text-transform: none; letter-spacing: .015em; }
.subscribe-box { border-top-color: var(--blue); background: var(--gold-l); }
.btn-primary:hover { border-color: var(--theme-accent-hover, #00567e); background: var(--theme-accent-hover, #00567e); }
.footer-brand .site-logo { color: var(--white); }
.footer-col a:hover, .footer-col .link-button:hover { color: #8ccde8; }
.maintenance-body { background: #f4f6f8; }
.maintenance-page { background: linear-gradient(135deg, #f8f9fa 0%, #e8edf1 100%); }
.maintenance-card { border-top-color: var(--blue); background: var(--paper); box-shadow: 0 18px 45px rgba(31,39,50,.12); }
.article-share {
  display: flex; flex-wrap: wrap; gap: .75rem; align-items: center;
  margin: 0 0 1.35rem; padding: .55rem 0 1rem;
  font-family: var(--ff-ui);
}
.article-save-later form { margin: 0; }
.article-save-button,
.article-share-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--paper-3);
  background: color-mix(in srgb, var(--paper) 86%, var(--white));
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 750;
  transition: border-color .18s ease, color .18s ease, background .18s ease, box-shadow .18s ease;
}
.article-save-button {
  gap: .5rem; min-height: 44px; padding: .55rem 1rem;
  border-radius: 999px; text-decoration: none;
}
.article-save-button .icon { width: 1.15rem; height: 1.15rem; }
.article-save-button:hover,
.article-save-button.is-saved {
  border-color: var(--blue); color: var(--blue);
  box-shadow: 0 8px 18px rgba(0, 110, 160, .08);
}
.article-save-button:disabled { cursor: not-allowed; opacity: .58; box-shadow: none; }
.article-share-menu { position: relative; display: inline-flex; }
.article-share-trigger {
  width: 44px; height: 44px; border-radius: 50%;
  background: color-mix(in srgb, var(--paper) 86%, var(--white));
}
.article-share-trigger .icon { width: 1.18rem; height: 1.18rem; }
.article-share-trigger:hover,
.article-share-menu.is-open .article-share-trigger {
  border-color: var(--blue); color: var(--blue); background: var(--white);
}
.article-share-popover {
  position: absolute; top: calc(100% + .75rem); left: 50%; z-index: 40;
  display: flex; align-items: center; gap: .52rem;
  min-width: max-content; padding: .72rem .9rem;
  transform: translateX(-50%);
  border: 1px solid var(--paper-3); border-radius: 4px;
  background: var(--white); box-shadow: 0 16px 36px rgba(31, 39, 50, .16);
}
.article-share-popover[hidden] { display: none; }
.article-share-popover-arrow {
  position: absolute; top: -8px; left: 50%; width: 14px; height: 14px;
  transform: translateX(-50%) rotate(45deg);
  border-left: 1px solid var(--paper-3); border-top: 1px solid var(--paper-3);
  background: var(--white);
}
.article-share-action {
  display: inline-flex; gap: .45rem; align-items: center; justify-content: center;
  min-width: 42px; height: 42px; padding: 0 .65rem;
  border: 1px solid var(--paper-3); border-radius: 50%;
  background: var(--white); color: var(--ink-2);
  cursor: pointer; font: inherit; font-size: .85rem; font-weight: 750; text-decoration: none;
  transition: border-color .18s ease, color .18s ease, background .18s ease;
}
.article-share-action:hover { border-color: var(--blue); color: var(--blue); background: color-mix(in srgb, var(--blue) 6%, var(--white)); }
.article-share-action .icon { width: 1.05rem; height: 1.05rem; }
.article-share-copy-action {
  width: auto; border-radius: 999px; padding: 0 .85rem;
}
.article-page.is-podcast .article-hero { padding-bottom: 1.2rem; }
.article-podcast-details {
  max-width: 880px; margin: 0 auto; padding: 1.25rem 2rem 0;
}
.article-podcast-player {
  max-width: 1080px; margin: 1.4rem auto 2rem; padding: 0 2rem;
}
.article-podcast-hero-player {
  max-width: 1160px; margin-top: 0; margin-bottom: 1.2rem;
}
.article-podcast-player audio { width: 100%; margin-top: .8rem; }
.article-podcast-player.is-enhanced audio { display: none; }
.article-podcast-hero-frame {
  position: relative; min-height: clamp(340px, 44vw, 560px); overflow: hidden;
  display: grid; align-items: center; padding: clamp(1.25rem, 4vw, 3.5rem);
  border-top: 4px solid var(--blue); background: #f4f7f9; isolation: isolate;
}
.article-podcast-hero-frame::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(255,255,255,.36), rgba(255,255,255,.12) 46%, rgba(31,39,50,.10)),
    linear-gradient(0deg, rgba(31,39,50,.12), rgba(255,255,255,.02) 45%, rgba(31,39,50,.06));
}
.article-podcast-visual {
  position: absolute; inset: -22px; z-index: -2; display: grid; place-items: center;
  color: rgba(31,39,50,.2); background: #f4f7f9;
}
.article-podcast-visual img {
  width: 100%; height: 100%; object-fit: cover; filter: blur(3px) saturate(1.06) contrast(1);
  transform: scale(1.015); opacity: .98;
}
.article-podcast-visual .icon { width: clamp(5rem, 12vw, 9rem); height: clamp(5rem, 12vw, 9rem); }
.article-podcast-player-inner {
  display: grid; grid-template-columns: 132px minmax(0, 1fr); gap: 1.35rem; align-items: center;
  padding: 1.35rem 1.5rem; border: 1px solid var(--paper-3); border-left: 5px solid var(--blue);
  background: linear-gradient(135deg, #f7f9fa, #fff);
  box-shadow: 0 18px 44px rgba(31,39,50,.07);
}
.article-podcast-hero-player .article-podcast-player-inner {
  position: relative; z-index: 1; grid-template-columns: minmax(0, 1fr);
  max-width: 760px; margin: 0 auto; border: 1px solid rgba(255,255,255,.18);
  border-left: 5px solid var(--blue); background: rgba(255,255,255,.88);
  backdrop-filter: blur(8px); box-shadow: 0 18px 44px rgba(31,39,50,.18);
}
.article-podcast-art {
  display: grid; place-items: center; width: 132px; height: 132px; overflow: hidden;
  border-radius: 18px; background: var(--ink); color: var(--white);
}
.article-podcast-art img { width: 100%; height: 100%; object-fit: cover; }
.article-podcast-art .icon { width: 2.45rem; height: 2.45rem; }
.article-podcast-main { min-width: 0; }
.article-podcast-kicker {
  display: inline-flex; margin-bottom: .35rem; color: var(--blue);
  font-family: var(--ff-ui); font-size: .68rem; font-weight: 850; letter-spacing: .01em; text-transform: none;
}
.article-podcast-player strong { display: block; margin-bottom: .85rem; font-family: var(--ff-head); font-size: clamp(1.35rem, 2.4vw, 2rem); line-height: 1.05; }
.article-podcast-hero-player strong { font-size: clamp(1.55rem, 3vw, 2.55rem); }
.article-podcast-player p { margin: .35rem 0 .95rem; color: var(--ink-2); font-size: .9rem; line-height: 1.45; }
.article-podcast-controls { display: grid; grid-template-columns: 46px auto minmax(130px, 1fr) auto 38px 38px; gap: .72rem; align-items: center; }
.podcast-play-button,
.podcast-sticky-play {
  display: grid; place-items: center; border: 0; border-radius: 50%;
  background: var(--blue); color: var(--white); cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,107,160,.24);
}
.podcast-play-button { width: 46px; height: 46px; }
.podcast-play-button .icon,
.podcast-sticky-play .icon { width: 1.18rem; height: 1.18rem; margin-left: .08rem; }
.podcast-play-button.is-playing .icon,
.podcast-sticky-play.is-playing .icon { margin-left: 0; }
.podcast-icon-button,
.podcast-sticky-fullscreen {
  display: grid; place-items: center; width: 38px; height: 38px; padding: 0;
  border: 1px solid var(--paper-3); border-radius: 50%; background: var(--white); color: var(--ink-2);
  cursor: pointer; transition: border-color .18s ease, color .18s ease;
}
.podcast-icon-button:hover,
.podcast-sticky-fullscreen:hover { border-color: var(--blue); color: var(--blue); }
.podcast-icon-button .icon,
.podcast-sticky-fullscreen .icon { width: 1rem; height: 1rem; }
.podcast-time,
.podcast-sticky-time { color: var(--ink-3); font-family: var(--ff-ui); font-size: .74rem; font-weight: 800; white-space: nowrap; }
.podcast-progress {
  width: 100%; height: 6px; border-radius: 999px; appearance: none;
  background: linear-gradient(to right, var(--blue) 0%, var(--blue) var(--podcast-progress, 0%), #d3d8de var(--podcast-progress, 0%), #d3d8de 100%);
  cursor: pointer;
}
.podcast-progress::-webkit-slider-thumb {
  appearance: none; width: 16px; height: 16px; border: 3px solid var(--white);
  border-radius: 50%; background: var(--blue); box-shadow: 0 2px 8px rgba(31,39,50,.25);
}
.podcast-progress::-moz-range-thumb {
  width: 12px; height: 12px; border: 3px solid var(--white);
  border-radius: 50%; background: var(--blue); box-shadow: 0 2px 8px rgba(31,39,50,.25);
}
.article-podcast-player figcaption {
  display: block;
  padding: .65rem .8rem;
  border-bottom: 1px solid var(--paper-3);
  background: #f7f9fa;
  color: var(--ink-3);
  font-family: var(--ff-ui);
  font-size: .85rem;
  line-height: 1.45;
}
.podcast-sticky-player,
.global-podcast-player {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: grid; grid-template-columns: 52px minmax(220px, 1fr) minmax(220px, 34vw) auto auto 44px;
  gap: 1rem; align-items: center; padding: .85rem max(1rem, calc((100vw - 1180px) / 2));
  border-top: 1px solid rgba(255,255,255,.08); background: #111417; color: var(--white);
  box-shadow: 0 -18px 48px rgba(10,14,18,.28);
}
.global-podcast-player {
  grid-template-columns: 52px minmax(260px, 1fr) minmax(260px, 42vw) auto auto 38px;
}
.podcast-sticky-progress { min-width: 0; }
.podcast-sticky-player {
  transform: translateY(110%); opacity: 0; pointer-events: none;
  transition: transform .22s ease, opacity .22s ease;
}
.global-podcast-player[hidden] { display: none; }
.article-podcast-player.is-sticky-visible .podcast-sticky-player {
  transform: translateY(0); opacity: 1; pointer-events: auto;
}
.podcast-sticky-player .podcast-progress,
.global-podcast-player .podcast-progress {
  background: linear-gradient(to right, var(--blue) 0%, var(--blue) var(--podcast-progress, 0%), #555b62 var(--podcast-progress, 0%), #555b62 100%);
}
.podcast-sticky-play { width: 52px; height: 52px; }
.podcast-sticky-copy { min-width: 0; }
.podcast-sticky-copy span {
  display: block; margin-bottom: .12rem; color: var(--blue);
  font-family: var(--ff-ui); font-size: .66rem; font-weight: 850; letter-spacing: .01em; text-transform: none;
}
.podcast-sticky-copy strong {
  display: block; overflow: hidden; color: var(--white); font-family: var(--ff-ui); font-size: .92rem;
  white-space: nowrap; text-overflow: ellipsis;
}
.global-podcast-player .podcast-sticky-copy { min-width: 0; padding-right: .25rem; }
.global-podcast-player .podcast-sticky-progress { min-width: 180px; }
.podcast-sticky-time { color: rgba(255,255,255,.68); }
.podcast-sticky-link {
  color: rgba(255,255,255,.72); font-family: var(--ff-ui); font-size: .72rem; font-weight: 800;
  text-decoration: underline; white-space: nowrap;
}
.podcast-sticky-link:hover { color: var(--white); }
.podcast-sticky-fullscreen,
.podcast-sticky-close {
  display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid transparent;
  border-radius: 50%; background: transparent; color: rgba(255,255,255,.72); cursor: pointer;
}
.podcast-sticky-fullscreen:hover,
.podcast-sticky-close:hover { border-color: rgba(255,255,255,.24); color: var(--white); }
.podcast-sticky-close .icon { width: 1rem; height: 1rem; }
.article-podcast-player.is-fullscreen,
.article-podcast-player:fullscreen {
  display: grid; align-content: center; max-width: none; min-height: 100vh; margin: 0; padding: 3rem;
  background: #0f1419;
}
.article-podcast-player.is-fullscreen .article-podcast-player-inner,
.article-podcast-player:fullscreen .article-podcast-player-inner {
  max-width: 980px; width: min(980px, 100%); margin: 0 auto; border-color: rgba(255,255,255,.14);
  background: #171d23; color: var(--white); box-shadow: none;
}
.article-podcast-player.is-fullscreen .article-podcast-main p,
.article-podcast-player:fullscreen .article-podcast-main p,
.article-podcast-player.is-fullscreen figcaption,
.article-podcast-player:fullscreen figcaption { color: rgba(255,255,255,.68); }
.article-podcast-player.is-fullscreen .podcast-sticky-player,
.article-podcast-player:fullscreen .podcast-sticky-player { display: none; }
.podcast-listing-header h1 {
  display: flex; gap: .58rem; align-items: center;
}
.podcast-section-icon {
  width: .72em; height: .72em; color: var(--blue);
}
.podcast-placeholder { color: var(--blue); }
.save-login-panel {
  position: relative; margin: -.35rem 0 1.55rem; padding: 2.3rem 2rem 2rem;
  border: 1px solid var(--paper-3); border-radius: 4px; background: var(--white);
  box-shadow: 0 18px 36px rgba(31, 39, 50, .08);
  text-align: center; font-family: var(--ff-ui);
}
.save-login-panel[hidden] { display: none; }
.save-login-close {
  position: absolute; top: 1.15rem; right: 1.15rem;
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; border: 1px solid var(--paper-3); border-radius: 50%;
  background: var(--white); color: var(--ink-2); cursor: pointer;
}
.save-login-close:hover { border-color: var(--blue); color: var(--blue); }
.save-login-close .icon { width: 1.2rem; height: 1.2rem; }
.save-login-panel p {
  margin: .35rem auto 1.35rem; max-width: 560px;
  color: var(--ink-2); font-size: clamp(1.25rem, 3vw, 1.85rem); line-height: 1.28;
}
.save-login-panel strong { color: var(--ink); font-weight: 850; }
.save-login-register {
  display: flex; align-items: center; justify-content: center;
  min-height: 58px; margin: 0 auto 1.1rem; max-width: 590px;
  border-radius: 4px; background: var(--blue); color: var(--white);
  font-size: 1.28rem; font-weight: 850; text-decoration: none;
}
.save-login-register:hover { background: var(--theme-accent-hover, #00567e); color: var(--white); }
.save-login-panel > span { display: block; color: var(--ink-2); font-size: 1.05rem; }
.save-login-link {
  display: inline-block; margin-top: .25rem; color: var(--blue);
  font-size: 1.05rem; font-weight: 700; text-decoration: underline;
}

body.drawer-open { overflow: hidden; }
.editorial-drawer-overlay {
  position: fixed; inset: 0; z-index: 1100; background: rgba(13,18,24,.58);
}
.editorial-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 1110; width: min(430px, 92vw);
  overflow-y: auto; background: var(--paper); color: var(--ink);
  box-shadow: 18px 0 40px rgba(13,18,24,.2);
  transform: translateX(-102%); transition: transform .25s ease;
}
.editorial-drawer.open { transform: translateX(0); }
.editorial-drawer-head {
  display: flex; min-height: 74px; align-items: center; justify-content: space-between;
  padding: 0 1.35rem; background: #20242a; color: #fff;
}
.editorial-drawer-logo { display: block; width: 126px; color: #fff; }
.editorial-drawer-close {
  display: inline-flex; align-items: center; gap: .6rem; border: 0; background: transparent;
  color: #fff; cursor: pointer; font-family: var(--ff-ui); font-size: .82rem; font-weight: 700;
}
.editorial-drawer-close .icon { width: 1.35rem; height: 1.35rem; }

/* --- Drawer Search Bar Styling --- */
.drawer-search-container {
  padding: 0.85rem 1.25rem;
  background: var(--paper-2, #fafafa);
  border-bottom: 1px solid var(--paper-3, #edf0f2);
}

.drawer-search-form {
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--paper-3, #e2e8f0);
  border-radius: 24px;
  padding: 0.4rem 0.85rem;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.drawer-search-form:focus-within {
  border-color: var(--blue, #1A4A7A);
  box-shadow: 0 0 0 3px rgba(26, 74, 122, 0.12);
}

.drawer-search-form input {
  border: none;
  background: transparent;
  flex: 1;
  outline: none;
  font-family: var(--ff-ui);
  font-size: 0.88rem;
  color: var(--ink);
  padding: 0.15rem 0.25rem;
}

.drawer-search-form input::placeholder {
  color: var(--ink-3, #94a3b8);
  opacity: 1;
}

.drawer-search-form button {
  background: transparent;
  border: none;
  color: var(--ink-2, #475569);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem;
  transition: color 0.18s ease;
}

.drawer-search-form button:hover {
  color: var(--blue, #1A4A7A);
}

.drawer-search-form button .icon,
.drawer-search-form button svg {
  width: 1.1rem;
  height: 1.1rem;
  stroke-width: 2.2;
}
.editorial-drawer-account {
  display: flex; gap: .6rem; align-items: center; justify-content: space-between;
  padding: .85rem 1.15rem; border-bottom: 1px solid var(--paper-3, #edf0f2);
  background: var(--paper-2, #fafafa);
}
.drawer-kiosk-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: 0 .85rem; height: 40px; border-radius: 6px;
  background: rgba(26, 74, 122, 0.08); color: var(--blue, #1A4A7A);
  font-family: var(--ff-ui); font-size: .82rem; font-weight: 700;
  text-decoration: none !important; margin: 0; flex: 1; min-width: 0;
  transition: background .18s ease, color .18s ease;
}
.drawer-kiosk-btn:hover, .drawer-kiosk-btn.active {
  background: var(--blue, #1A4A7A); color: #ffffff;
}
.drawer-kiosk-btn .icon { width: 1.15rem; height: 1.15rem; flex-shrink: 0; }

.drawer-account-actions {
  display: flex; align-items: center; gap: .4rem; flex-shrink: 0;
}
.drawer-lang-switcher {
  display: inline-flex; align-items: center; gap: .3rem; padding: 0 .5rem;
  height: 40px; border-radius: 6px; border: 1px solid var(--paper-3, #e2e8f0);
  background: #ffffff; color: var(--ink-3, #64748b);
  font-family: var(--ff-ui, sans-serif); font-size: .76rem; font-weight: 700;
  margin: 0;
}
.drawer-lang-switcher a { color: var(--ink-3, #64748b); text-decoration: none !important; }
.drawer-lang-switcher a:hover, .drawer-lang-switcher a.active { color: var(--blue, #1A4A7A); font-weight: 800; }
.drawer-icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 6px;
  border: 1px solid var(--paper-3, #e2e8f0); background: #ffffff;
  color: var(--ink-2, #475569); text-decoration: none !important;
  transition: all .15s ease; flex-shrink: 0;
}
.drawer-icon-btn:hover {
  border-color: var(--blue, #1A4A7A); color: var(--blue, #1A4A7A);
  background: rgba(26, 74, 122, 0.05);
}
.drawer-icon-btn .icon { width: 1.15rem; height: 1.15rem; }

.drawer-icon-btn-cta {
  background: var(--blue, #1A4A7A); border-color: var(--blue, #1A4A7A);
  color: #ffffff;
}
.drawer-icon-btn-cta:hover {
  background: var(--theme-accent-hover, #00567e);
  border-color: var(--theme-accent-hover, #00567e); color: #ffffff;
}

@media (max-width: 900px) {
  .masthead-contact-link { display: none !important; }
}
.drawer-editorial-link {
  display: block; padding: .8rem 1.35rem; border-bottom: 1px solid var(--paper-3);
  color: var(--red); font-family: var(--ff-ui); font-size: .82rem; font-weight: 800;
}
.drawer-editorial-link:hover { background: #fff5f5; color: #a92f2f; }
.editorial-drawer-nav { padding: 1.25rem 0 2rem; font-family: var(--ff-ui); }
.editorial-drawer-nav > a, .drawer-section-title {
  display: block; padding: .95rem 1.45rem; color: var(--ink); font-size: 1rem; font-weight: 650;
}
.editorial-drawer-nav > a:hover, .drawer-category-links a:hover { color: var(--blue); }
.editorial-drawer-nav .drawer-featured {
  display: grid; gap: .2rem; margin-bottom: .35rem; border-left: 3px solid var(--blue); background: #f4f7f9;
}
.drawer-featured span { color: var(--ink-3); font-size: .72rem; font-weight: 500; }
.drawer-section { margin: .2rem 0 .5rem; border-top: 1px solid #edf0f2; border-bottom: 1px solid #edf0f2; }
.drawer-category-links { display: grid; grid-template-columns: 1fr 1fr; gap: .2rem 1rem; padding: 0 1.45rem .75rem; }
.drawer-category-group { display: grid; align-content: start; }
.drawer-category-heading { display: flex; align-items: center; justify-content: space-between; gap: .3rem; }
.drawer-category-links a { padding: .55rem 0; color: var(--ink-2); font-size: .82rem; font-weight: 650; }
.drawer-subcategory-toggle {
  display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px;
  border: 0; background: transparent; color: var(--ink-3); cursor: pointer;
}
.drawer-subcategory-toggle:hover { color: var(--blue); }
.drawer-subcategory-toggle .icon { width: .9rem; height: .9rem; transition: transform .2s ease; }
.drawer-category-group.is-open .drawer-subcategory-toggle .icon { transform: rotate(180deg); }
.drawer-subcategories {
  display: grid; grid-template-rows: 0fr; opacity: 0;
  transition: grid-template-rows .22s ease, opacity .18s ease;
}
.drawer-subcategories > div { min-height: 0; overflow: hidden; }
.drawer-category-group.is-open .drawer-subcategories { grid-template-rows: 1fr; opacity: 1; }
.drawer-category-links .drawer-subcategory {
  display: block; padding: .23rem 0 .23rem .72rem; border-left: 1px solid var(--paper-3);
  color: var(--ink-3); font-size: .75rem; font-weight: 600;
}

@media (max-width: 900px) {
  .masthead-top { min-height: 120px; grid-template-columns: 1fr auto; }
  .masthead-context { display: none; }
  .nav-kiosk-btn {
    display: inline-flex !important; align-items: center; gap: .45rem; padding: 0 .85rem;
    border: 0; border-right: 1px solid rgba(255,255,255,.18);
    background: transparent; color: rgba(255,255,255,.92); cursor: pointer;
    font-family: var(--ff-ui); font-size: .74rem; font-weight: 700; text-decoration: none !important;
    transition: color .15s ease, background .15s ease;
  }
  .site-logo { width: 174px; margin: 0; }
  .masthead-actions { gap: .45rem; }
  .masthead-action-link { min-width: 64px; }
  .nav-shell .header-search input { width: 132px; }
  .nav-shell-inner { overflow: hidden; }
  .nav-shell .nav-strip {
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .nav-shell .nav-strip::-webkit-scrollbar { display: none; }
  .nav-category-group { flex: 0 0 auto; }
}
@media (max-width: 640px) {
  .masthead-top { min-height: 94px; grid-template-columns: 1fr; justify-items: center; gap: .45rem; padding: .65rem 1rem; }
  .site-logo { grid-row: 1; width: 146px; margin-inline: auto; }
  .masthead-action-area { display: flex; justify-content: center; width: 100%; }
  .masthead-actions { display: flex; gap: .45rem; justify-content: center; }
  .nav-shell-inner { min-height: 44px; height: 44px; padding: 0 .5rem; align-items: stretch; }
  .nav-fixed-actions { align-items: stretch; }
  .nav-menu-toggle { padding: 0 .5rem; }
  .nav-menu-toggle span { display: inline-block; }
  .nav-kiosk-btn { padding: 0 .55rem; }
  .nav-kiosk-label { display: none; }
  .nav-shell .header-search button { width: 34px; }
  .nav-shell .header-search input { display: none; }
  .nav-shell .nav-strip { display: flex !important; gap: 1rem; }
  .nav-shell .nav-strip a { font-size: .76rem; padding: 0 .35rem; }
  .live-header-inner { padding: .58rem 0; }
  .live-header-tabs {
    justify-content: flex-start; overflow-x: auto; width: max-content; max-width: 100%; margin: 0 auto; padding: 0 1rem;
    scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
  }
  .live-header-tabs strong { font-size: .78rem; }
  .live-header-tabs a { flex: 0 0 auto; max-width: 230px; scroll-snap-align: start; }
  .drawer-category-links { grid-template-columns: 1fr; }
  .editorial-topic-header {
    padding: 1.65rem 1rem 1.55rem;
  }
  .editorial-topic-header .cat-header-inner {
    padding-bottom: 1.55rem;
    border-bottom-width: 3px;
  }
  .cat-context-line {
    margin-bottom: .65rem;
    font-size: .72rem;
  }
  .editorial-topic-header h1 {
    font-size: clamp(2.45rem, 13vw, 3.75rem);
  }
  .editorial-topic-header p {
    font-size: 1rem;
  }
  .subcategory-pills {
    gap: .5rem;
    margin-top: 1rem;
  }
  .subcategory-pills a {
    min-height: 2.55rem;
    padding: .62rem .78rem;
    font-size: .8rem;
  }
  .article-preview-banner span { display: none; }
  .live-entry { grid-template-columns: 68px minmax(0, 1fr); gap: .62rem; }
  .live-entry.is-recap { padding: .9rem .72rem 1rem; }
  .live-entry-time { font-size: .64rem; }
  .account-wrap { padding: 2rem 1rem; }
  .account-tabs { overflow-x: auto; }
  .account-tabs a { white-space: nowrap; }
  .account-saved-card { grid-template-columns: 1fr; }
  .account-saved-cover { min-height: 180px; }
  .article-share { gap: .42rem; margin-bottom: .9rem; padding-bottom: .7rem; }
  .article-kicker-line { gap: .36rem .5rem; font-size: .68rem; }
  .article-type-kicker { font-size: .76rem; }
  .article-wrap.has-sidebar {
    display: flex;
    flex-direction: column;
    max-width: 740px;
  }
  .article-sidebar {
    order: 20;
    position: static;
    margin: 1.6rem 0 .5rem;
  }
  .article-sidebar-inner {
    gap: 1.4rem;
  }
  .article-sidebar .article-side-ctas-inner {
    grid-template-columns: 1fr;
  }
  .article-side-cta {
    grid-template-columns: 30px minmax(0, 1fr);
    padding: .78rem;
  }
  .article-side-cta-icon {
    width: 30px;
    height: 30px;
  }
  .article-layout-large .article-cover-top,
  .article-layout-diop .article-cover-top {
    max-width: 100%;
    margin-bottom: .9rem;
  }
  .article-layout-large .article-hero,
  .article-layout-diop .article-hero {
    padding-top: .75rem;
    text-align: left;
  }
  .article-layout-large .article-kicker-line,
  .article-layout-large .article-hero-meta,
  .article-layout-diop .article-kicker-line,
  .article-layout-diop .article-hero-meta {
    justify-content: flex-start;
  }
  .article-layout-large .article-hero h1,
  .article-layout-diop .article-hero h1 {
    font-family: var(--ff-head);
    font-size: clamp(2.1rem, 12vw, 3.2rem);
    line-height: 1.02;
  }
  .article-save-button { min-height: 34px; padding: .38rem .66rem; font-size: .76rem; }
  .article-save-button .icon { width: .95rem; height: .95rem; }
  .article-share-trigger { width: 34px; height: 34px; }
  .article-share-trigger .icon { width: .95rem; height: .95rem; }
  .article-share-popover {
    position: fixed; top: auto; left: .75rem; right: .75rem; bottom: .75rem;
    justify-content: center; flex-wrap: wrap; transform: none; max-width: none; padding: .65rem;
    border-radius: 10px;
  }
  .article-share-popover-arrow { display: none; }
  .article-share-action { min-width: 36px; height: 36px; padding: 0 .52rem; }
  .article-share-action .icon { width: .95rem; height: .95rem; }
  .article-share-copy-action span { max-width: 7.5rem; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .save-login-panel { padding: 4rem 1rem 1.45rem; }
  .save-login-register { min-height: 50px; font-size: 1.05rem; }
  .save-login-panel > span,
  .save-login-link { font-size: .95rem; }
  .article-podcast-details { padding: 1rem 1rem 0; }
  .article-podcast-player { margin-top: 1.45rem; padding: 0 1rem; }
  .article-podcast-hero-player { margin-top: 0; margin-bottom: .9rem; }
  .article-podcast-hero-frame {
    min-height: 320px; padding: 1rem; border-top-width: 3px;
  }
  .article-podcast-hero-player .article-podcast-player-inner {
    padding: 1rem; border-left-width: 4px;
  }
  .article-podcast-player-inner { grid-template-columns: 1fr; gap: .9rem; padding: 1rem; }
  .article-podcast-art { width: 74px; height: 74px; border-radius: 18px; }
  .article-podcast-controls { grid-template-columns: 42px auto 1fr auto; gap: .55rem; }
  .article-podcast-controls .podcast-icon-button { display: none; }
  .podcast-play-button { width: 42px; height: 42px; }
  .podcast-sticky-player,
  .global-podcast-player {
    grid-template-columns: 44px minmax(0, 1fr) 36px; gap: .62rem .72rem; padding: .68rem .78rem;
  }
  .podcast-sticky-play { width: 44px; height: 44px; }
  .podcast-sticky-progress { grid-column: 1 / -1; order: 5; }
  .podcast-sticky-time { display: none; }
  .podcast-sticky-link { grid-column: 2; order: 4; font-size: .66rem; }
  .podcast-sticky-fullscreen { display: none; }
  .podcast-sticky-close { width: 36px; height: 36px; }
  .article-podcast-player.is-fullscreen,
  .article-podcast-player:fullscreen { padding: 1rem; }
  .podcast-listing-header h1 { gap: .42rem; }
}

.masthead-top > .site-logo { width: min(var(--site-logo-width, 226px), 80vw); }

/* Donation page */
.donation-page { padding-top: 3.4rem; padding-bottom: 4rem; }
.donation-hero { max-width: 850px; padding: 2.4rem 0 2.1rem; }
.donation-kicker {
  display: flex; gap: .5rem; align-items: center; margin-bottom: 1rem;
  color: var(--blue); font-family: var(--ff-ui); font-size: .78rem; font-weight: 800; letter-spacing: .01em; text-transform: none;
}
.donation-kicker .icon { width: 1rem; height: 1rem; }
.donation-hero h1 { max-width: 760px; font-family: var(--ff-head); font-size: clamp(2.4rem, 6vw, 4.9rem); line-height: .98; }
.donation-hero p { max-width: 760px; margin: 1.2rem 0 1.4rem; color: var(--ink-2); font-family: var(--ff-head); font-size: clamp(1.05rem, 2vw, 1.32rem); line-height: 1.55; }
.donation-primary-action { display: inline-flex; gap: .45rem; align-items: center; }
.donation-primary-action .icon { width: 1rem; height: 1rem; }
.donation-hero small { display: block; margin-top: .65rem; color: var(--ink-3); font-family: var(--ff-ui); font-size: .72rem; }
.donation-coming-soon { display: inline-block; padding: .75rem 1rem; border-left: 3px solid var(--blue); background: var(--paper-2); color: var(--ink-2); font-family: var(--ff-ui); font-size: .82rem; font-weight: 700; }
.donation-reasons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--paper-3); background: var(--paper-3); }
.donation-reasons article { padding: 1.45rem; background: var(--paper); }
.donation-reasons .icon { width: 1.3rem; height: 1.3rem; color: var(--blue); }
.donation-reasons h2 { margin: .75rem 0 .35rem; font-family: var(--ff-head); font-size: 1.28rem; }
.donation-reasons p { color: var(--ink-3); font-size: .86rem; line-height: 1.55; }
.donation-subscribe-note { display: flex; gap: .75rem; align-items: center; justify-content: space-between; margin-top: 1.2rem; padding: 1rem 1.2rem; background: var(--paper-2); color: var(--ink-2); font-size: .86rem; }
.donation-subscribe-note a { color: var(--blue); font-family: var(--ff-ui); font-size: .78rem; font-weight: 800; white-space: nowrap; }

@media (max-width: 640px) {
  .donation-page { padding-top: 1.4rem; }
  .donation-reasons { grid-template-columns: 1fr; }
  .donation-subscribe-note { display: grid; }
}

/* Unified editorial entries */
.editorial-kicker-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: .38rem;
  align-items: center;
}
.editorial-kicker-list a {
  color: inherit;
  text-decoration: none;
}
.editorial-kicker-list a:hover {
  text-decoration: underline;
  text-underline-offset: .18em;
}
.editorial-kicker-separator {
  color: currentColor;
  opacity: .55;
}
.article-hero .article-cat.editorial-kicker-list,
.article-cat.editorial-kicker-list {
  display: inline-flex;
  padding: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
}
.card-kickers .editorial-kicker-list {
  display: inline-flex;
}

/* Hyperlinks in article body: Site primary color */
.article-body a,
.article-content a,
.editorial-entry-body a {
  color: var(--site-mark-color, var(--section-mark-color, var(--ink, #d05807))) !important;
  text-decoration: underline !important;
  text-decoration-thickness: 1.5px !important;
  text-underline-offset: 2px !important;
  transition: color 0.15s ease, opacity 0.15s ease, text-decoration-color 0.15s ease;
}

.article-body a:hover,
.article-content a:hover,
.editorial-entry-body a:hover {
  color: var(--site-mark-color, var(--section-mark-color, var(--ink-2, #c14a00))) !important;
  opacity: 0.82 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 2px !important;
}

/* ”€”€”€ Style Lettrine (Drop cap) pour articles publics ”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€ */
.article-body p.has-dropcap::first-letter,
.article-body p.lettrine::first-letter,
.article-body .lettrine::first-letter,
.article-body span.lettrine,
.article-content p.has-dropcap::first-letter,
.article-content p.lettrine::first-letter,
.article-content .lettrine::first-letter,
.article-content span.lettrine,
.editorial-entry-body p.has-dropcap::first-letter {
  float: left;
  font-size: 4.1rem;
  line-height: 0.76;
  margin-top: 0.45rem;
  margin-right: 0.65rem;
  margin-bottom: -0.15rem;
  padding: 0;
  font-family: var(--ff-head, 'Playfair Display', Georgia, serif);
  font-weight: 800;
  color: var(--site-mark-color, var(--section-mark-color, var(--ink, #d05807)));
  text-transform: uppercase;
}

/* ”€”€”€ Bouton de connexion Google & Séparateur ”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€”€ */
.btn-google {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  background: #ffffff;
  color: #3c4043;
  border: 1px solid #dadce0;
  border-radius: var(--r, 6px);
  padding: .7rem 1.2rem;
  font-family: var(--ff-ui, system-ui, sans-serif);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(60,64,67,.08);
  margin-top: .75rem;
}
.btn-google:hover {
  background: #f8f9fa;
  border-color: #d2e3fc;
  color: #1a73e8;
  box-shadow: 0 1px 4px rgba(60,64,67,.15);
  text-decoration: none;
}
.btn-google .google-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.auth-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.15rem 0 .4rem 0;
  color: var(--text-3, #888);
  font-size: .8rem;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--paper-3, #e0e0e0);
}
.auth-divider span {
  padding: 0 .75rem;
  font-weight: 600;
}

/* ”€”€”€ Bouton Ajouter sur Google (Haut d'article,   c´t© de Lire plus tard) ”€ */
.btn-google-news-top {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem 1rem;
  border: 1px solid #dadce0;
  border-radius: 50px;
  background: #ffffff;
  color: #111111;
  font-family: var(--ff-ui, system-ui, sans-serif);
  font-size: .84rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 1px 3px rgba(0,0,0,.06);
  transition: background .15s ease, border-color .15s ease, box-shadow .15s ease, color .15s ease;
  line-height: 1.2;
}
.btn-google-news-top:hover {
  background: #f8f9fa;
  border-color: #c0c4c9;
  color: #000000;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
  text-decoration: none;
}
.btn-google-news-top .google-icon {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════════════════
   KIOSQUE NUMÉRIQUE — PUBLIC STYLES
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Header navbar button (Le Monde style — stacked icon & label) ───────── */
.header-kiosk-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  color: var(--blue, #1A4A7A) !important;
  text-decoration: none !important;
  padding: .3rem .6rem;
  margin-left: -.6rem;
  border-radius: var(--r, 4px);
  background: transparent;
  transition: var(--trans);
  white-space: nowrap;
  flex-shrink: 0;
}

.header-kiosk-btn:hover {
  background: rgba(26, 74, 122, 0.08);
  color: var(--ink, #d05807) !important;
  text-decoration: none !important;
}

.header-kiosk-btn.active {
  color: var(--blue, #1A4A7A) !important;
  background: rgba(26, 74, 122, 0.08);
  font-weight: 700;
}

.header-kiosk-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
}

.header-kiosk-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 1.8;
  display: block;
}

.header-kiosk-label {
  font-family: var(--ff-ui, system-ui, sans-serif);
  font-size: .78rem;
  font-weight: 600;
  line-height: 1.1;
  color: inherit;
}

/* ── Minimal Kiosk Header ────────────────────────────────────────────── */
.kiosk-minimal-header {
  background: #ffffff;
  border-bottom: 1px solid var(--paper-3);
  padding: .5rem 0;
  position: relative;
  z-index: 100;
}

.kiosk-minimal-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.kiosk-minimal-left {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.kiosk-burger-toggle {
  display: inline-flex; align-items: center; gap: .4rem; padding: .35rem .65rem;
  border: 1px solid var(--paper-3, #cbd5e1); border-radius: 6px;
  background: #ffffff; color: var(--ink-2, #334155); cursor: pointer;
  font-family: var(--ff-ui); font-size: .78rem; font-weight: 700;
  margin-right: .2rem; flex-shrink: 0;
  transition: all .15s ease;
}
.kiosk-burger-toggle:hover {
  border-color: var(--blue, #1A4A7A); color: var(--blue, #1A4A7A);
  background: rgba(26, 74, 122, 0.05);
}
.kiosk-burger-toggle .icon { width: 1.15rem; height: 1.15rem; }

.kiosk-minimal-center {
  text-align: center;
}

.kiosk-minimal-badge {
  font-family: var(--ff-ui);
  font-size: 1.8rem;
  font-weight: 250;
  letter-spacing: -1px;
  color: var(--ink-3);
}

.kiosk-minimal-right {
  display: flex;
  align-items: center;
  gap: .65rem;
}

.kiosk-header-link {
  font-family: var(--ff-ui);
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink-3);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .35rem .6rem;
  border-radius: var(--r);
  transition: var(--trans);
}

.kiosk-header-link:hover {
  background: var(--paper-2);
  text-decoration: none;
}

.kiosk-header-link-btn {
  background: var(--blue);
  color: #ffffff !important;
  font-family: var(--ff-ui);
  font-size: .82rem;
  font-weight: 700;
  padding: .4rem .85rem;
  border-radius: var(--r);
  text-decoration: none;
  transition: var(--trans);
}

.kiosk-header-link-btn:hover {
  opacity: .9;
  text-decoration: none;
}

.kiosk-minimal-right .btn-subscribe {
  background: var(--blue);
  color: #ffffff !important;
  font-family: var(--ff-ui);
  font-size: .8rem;
  font-weight: 700;
  padding: .45rem .95rem;
  border-radius: var(--r);
  text-decoration: none;
  transition: var(--trans);
  display: inline-flex;
  align-items: center;
}

.kiosk-minimal-right .btn-subscribe:hover {
  background: var(--ink);
  color: #ffffff !important;
  text-decoration: none;
}

/* ── Page wrapper ─────────────────────────────────────────────────────── */
.kiosk-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.2rem 4rem;
}

.kiosk-empty {
  text-align: center;
  padding: 4rem 1rem;
  color: var(--ink-3);
  font-family: var(--ff-body);
  font-size: 1.05rem;
}

/* ── Layout (Spotlight left + Collections right) ──────────────────────── */
.kiosk-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 768px) {
  .kiosk-layout { grid-template-columns: 1fr; gap: 2rem; }
}

/* ── Spotlight (une / vedette) ────────────────────────────────────────── */
.kiosk-spotlight {
  position: sticky;
  top: 4.5rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.kiosk-spotlight-date {
  font-family: var(--ff-ui);
  font-size: .78rem;
  color: var(--ink-3);
  font-weight: 600;
}

.kiosk-spotlight-cover {
  display: block;
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
  background: var(--blue);
}

.kiosk-spotlight-cover:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-l);
}

.kiosk-spotlight-cover img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

.kiosk-featured-badge {
  position: absolute; top: .5rem; left: .5rem;
  background: var(--gold); color: var(--paper);
  font-family: var(--ff-ui);
  font-size: .65rem; padding: .2rem .55rem;
  border-radius: 999px; font-weight: 700;
}

.kiosk-read-btn {
  display: block;
  background: var(--blue);
  color: #ffffff !important;
  text-align: center;
  padding: .65rem;
  border-radius: var(--r);
  font-family: var(--ff-ui);
  font-weight: 700;
  font-size: .88rem;
  text-decoration: none;
  transition: var(--trans);
}

.kiosk-read-btn:hover {
  background: var(--ink);
  color: #ffffff !important;
  text-decoration: none;
}

.kiosk-spotlight-title {
  font-family: var(--ff-head);
  font-size: .9rem;
  font-weight: 700;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.35;
}

.kiosk-spotlight-collection {
  font-family: var(--ff-ui);
  font-size: .75rem;
  color: var(--blue);
  margin: 0;
  font-weight: 700;
}

/* ── Cover placeholder ────────────────────────────────────────────────── */
.kiosk-cover-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue);
  color: #ffffff;
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700; text-align: center; padding: 1rem;
}
.kiosk-cover-placeholder--small { font-size: .72rem; }

/* ── Section heads ────────────────────────────────────────────────────── */
.kiosk-collection-section { margin-bottom: 2.5rem; }

.kiosk-section-head {
  display: flex; align-items: baseline;
  justify-content: space-between; gap: 1rem;
  margin-bottom: 1rem; padding-bottom: .5rem;
  border-bottom: 1px solid var(--paper-3);
}

.kiosk-section-title {
  font-family: var(--ff-head);
  font-size: 1.1rem; font-weight: 700;
  color: var(--ink-3); margin: 0;
}

.kiosk-see-all {
  font-family: var(--ff-ui);
  font-size: .78rem; color: var(--blue);
  text-decoration: none; font-weight: 700; white-space: nowrap; flex-shrink: 0;
}
.kiosk-see-all:hover { text-decoration: underline; color: var(--ink); }

/* ── Editions row & Carousel ─────────────────────────────────────────────── */
.kiosk-editions-scroll {
  position: relative;
  padding: 0 4px;
}

.kiosk-editions-row {
  display: flex;
  gap: 0.85rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0.25rem 0.75rem;
}
.kiosk-editions-row::-webkit-scrollbar { display: none; }

.kiosk-scroll-btn {
  position: absolute; top: 40%; transform: translateY(-50%); z-index: 10;
  width: 38px; height: 38px; border-radius: 50%;
  background: #ffffff; border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14); cursor: pointer;
  display: flex !important; align-items: center; justify-content: center;
  transition: all 0.25s ease; color: var(--ink, #1f2732); opacity: 1;
  padding: 0;
}
.kiosk-scroll-btn:hover {
  box-shadow: 0 6px 18px rgba(25, 120, 210, 0.35);
  background: var(--blue, #1978d2); color: #ffffff;
  transform: translateY(-50%) scale(1.08);
}
.kiosk-scroll-btn[data-kiosk-prev] { left: -16px; }
.kiosk-scroll-btn[data-kiosk-next] { right: -16px; }
.kiosk-scroll-btn svg { width: 20px; height: 20px; pointer-events: none; }

/* ── Edition Card (Exactly 4 visible cards per view) ─────────────────────── */
.kiosk-edition-card {
  flex: 0 0 calc((100% - 3 * 0.85rem) / 4);
  width: calc((100% - 3 * 0.85rem) / 4);
  min-width: calc((100% - 3 * 0.85rem) / 4);
  max-width: calc((100% - 3 * 0.85rem) / 4);
  box-sizing: border-box;
  scroll-snap-align: start;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column; gap: .35rem;
  transition: transform 0.2s ease;
}
@media (max-width: 768px) {
  .kiosk-edition-card {
    flex: 0 0 calc((100% - 2 * 0.75rem) / 3);
    width: calc((100% - 2 * 0.75rem) / 3);
    min-width: calc((100% - 2 * 0.75rem) / 3);
    max-width: calc((100% - 2 * 0.75rem) / 3);
  }
}
@media (max-width: 480px) {
  .kiosk-edition-card {
    flex: 0 0 calc((100% - 1 * 0.5rem) / 2);
    width: calc((100% - 1 * 0.5rem) / 2);
    min-width: calc((100% - 1 * 0.5rem) / 2);
    max-width: calc((100% - 1 * 0.5rem) / 2);
  }
}

.kiosk-edition-card:hover .kiosk-edition-thumb {
  box-shadow: var(--shadow-l); transform: translateY(-2px);
}

.kiosk-edition-thumb {
  position: relative; aspect-ratio: 3/4; border-radius: var(--r); overflow: hidden;
  background: var(--blue);
  box-shadow: var(--shadow);
  transition: var(--trans);
}
.kiosk-edition-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

.kiosk-edition-caption {
  font-family: var(--ff-ui, sans-serif);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink, #1f2732);
  line-height: 1.25;
  text-align: center;
  margin-top: 0.15rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.kiosk-access-badge {
  position: absolute; bottom: .4rem; left: 50%; transform: translateX(-50%);
  white-space: nowrap; background: rgba(0,0,0,.8); color: #fff;
  font-family: var(--ff-ui);
  font-size: .6rem; padding: .15rem .45rem; border-radius: 999px; font-weight: 700;
}

.kiosk-edition-date {
  font-family: var(--ff-ui);
  font-size: .75rem; color: var(--ink-3); text-align: center; display: block; font-weight: 600;
}

/* ── Collection Page Header & Grid ───────────────────────────────────── */
.kiosk-collection-header {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--paper-3);
}

.kiosk-collection-type-badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--ff-ui);
  font-size: .75rem;
  font-weight: 600;
  color: var(--ink-3);
  background: var(--paper-2);
  border: 1px solid var(--paper-3);
  padding: .2rem .75rem;
  border-radius: 999px;
  margin-bottom: .6rem;
  box-shadow: 0 1px 2px rgba(0,0,0,.04);
}

.kiosk-collection-page-title {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--ink-3);
  margin: 0 0 .5rem;
  line-height: 1.25;
}

.kiosk-collection-page-desc {
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--ink-3);
  margin: 0;
  max-width: 680px;
  line-height: 1.6;
}

.kiosk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.kiosk-grid-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--paper-3);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.kiosk-grid-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.kiosk-grid-thumb {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #f8fafc;
  display: block;
  border-bottom: 1px solid var(--paper-3);
}

.kiosk-grid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.kiosk-edition-num-badge {
  position: absolute;
  bottom: .5rem;
  right: .5rem;
  background: #18202d;
  color: #ffffff;
  font-family: var(--ff-ui);
  font-size: .68rem;
  font-weight: 700;
  padding: .2rem .5rem;
  border-radius: 4px;
}

.kiosk-grid-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
  gap: .6rem;
}

.kiosk-grid-date {
  font-family: var(--ff-ui);
  font-size: .78rem;
  color: var(--ink-3);
}

.kiosk-grid-title {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
}

.kiosk-grid-title a {
  color: var(--ink-3);
  text-decoration: none;
}

.kiosk-grid-title a:hover {
  color: var(--blue);
}

.kiosk-grid-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: .6rem;
  padding-top: .6rem;
  border-top: 1px solid var(--paper-3);
}

.kiosk-grid-read-link {
  font-family: var(--ff-ui);
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink-3);
  text-decoration: none;
  transition: color .2s;
}

.kiosk-grid-read-link:hover {
  color: var(--blue);
}

.kiosk-grid-pages {
  font-family: var(--ff-ui);
  font-size: .72rem;
  color: var(--ink-3);
}

.kiosk-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.kiosk-pagination-info {
  font-family: var(--ff-ui);
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink-3);
}

/* ═══════════════════════════════════════════════════
   VIEWER PAGE
   ═══════════════════════════════════════════════════ */

.kiosk-viewer-page {
  max-width: 1000px; margin: 0 auto; padding: 1.5rem 1.2rem 4rem;
}

.kiosk-viewer-breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--ff-ui);
  font-size: .78rem; color: var(--ink-3);
  margin-bottom: 1.25rem; flex-wrap: wrap;
}
.kiosk-viewer-breadcrumb a { color: var(--blue); text-decoration: none; font-weight: 700; }
.kiosk-viewer-breadcrumb a:hover { text-decoration: underline; color: var(--ink); }

.kiosk-viewer-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; margin-bottom: 1.5rem; padding-bottom: 1rem;
  border-bottom: 1px solid var(--paper-3); flex-wrap: wrap;
}

.kiosk-viewer-meta {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.kiosk-viewer-title-cover {
  width: 44px;
  height: 58px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.kiosk-header-cover-img {
  height: 38px;
  width: 28px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.14);
  vertical-align: middle;
  margin-right: .5rem;
  display: inline-block;
}

.kiosk-viewer-title {
  font-family: var(--ff-head);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; margin: 0 0 .3rem; color: var(--ink-3);
}

.kiosk-viewer-info {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--ff-ui);
  font-size: .78rem; color: var(--ink-3); flex-wrap: wrap;
}

.kiosk-viewer-actions { display: flex; gap: .5rem; align-items: center; flex-shrink: 0; }

.kiosk-reader {
  background: var(--paper-2); border: 1px solid var(--paper-3);
  border-radius: var(--r); overflow: hidden; position: relative;
  min-height: 400px; display: flex; flex-direction: column; align-items: center;
  box-shadow: var(--shadow);
}

.kiosk-reader-loading {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; padding: 4rem 2rem; gap: 1rem; color: var(--ink-3);
}

.kiosk-reader-loading[hidden],
.kiosk-reader-canvas-wrap[hidden],
.kiosk-reader-controls[hidden],
.kiosk-thumbnails[hidden],
.kiosk-paywall[hidden] {
  display: none !important;
}

.kiosk-reader-spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--paper-3);
  border-top-color: var(--blue);
  border-radius: 50%; animation: kiosk-spin .7s linear infinite;
}
@keyframes kiosk-spin { to { transform: rotate(360deg); } }

.kiosk-reader-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .6rem 1.2rem;
  border-bottom: 1px solid var(--paper-3);
  background: #ffffff;
  width: 100%;
  box-sizing: border-box;
}

.kiosk-controls-left,
.kiosk-controls-right {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.kiosk-controls-center {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.kiosk-control-btn {
  font-family: var(--ff-ui);
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-3);
  background: var(--paper);
  border: 1px solid var(--paper-3);
  padding: .35rem .75rem;
  border-radius: var(--r);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: var(--trans);
}

.kiosk-control-btn:hover,
.kiosk-control-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff !important;
}

/* ── Zoom Controls (Loupe) ────────────────────────────────────────────── */
.kiosk-zoom-group {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  background: var(--paper-2);
  border: 1px solid var(--paper-3);
  border-radius: var(--r);
  padding: .15rem .3rem;
}

.kiosk-zoom-badge {
  font-family: var(--ff-ui);
  font-size: .75rem;
  font-weight: 700;
  color: var(--ink-3);
  min-width: 42px;
  text-align: center;
  user-select: none;
}

.kiosk-btn-icon {
  padding: .35rem !important;
  border: none !important;
  background: transparent !important;
  color: var(--ink-3) !important;
}

.kiosk-btn-icon:hover {
  background: var(--paper-3) !important;
  color: var(--ink-3) !important;
}

.kiosk-reader-canvas-wrap.is-zoomed {
  overflow: auto !important;
  justify-content: flex-start !important;
  align-items: flex-start !important;
  cursor: grab;
  padding: 2rem !important;
}

.kiosk-reader-canvas-wrap.is-zoomed .kiosk-canvas-page {
  max-height: none !important;
  max-width: none !important;
}

.kiosk-reader-canvas-wrap.is-zoomed .kiosk-spread {
  max-height: none !important;
  max-width: none !important;
}

.kiosk-nav-btn {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--paper-3); background: var(--paper); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans); flex-shrink: 0; color: var(--ink-3);
}
.kiosk-nav-btn:hover:not(:disabled) {
  background: var(--blue);
  border-color: var(--blue); color: #ffffff;
}
.kiosk-nav-btn:disabled { opacity: .3; cursor: default; }

.kiosk-page-indicator {
  display: flex; align-items: center; gap: .4rem;
  font-family: var(--ff-ui);
  font-size: .88rem; font-weight: 700; color: var(--ink-3); min-width: 60px; justify-content: center;
}

.kiosk-reader-canvas-wrap {
  padding: 1.5rem;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden; /* pan handled via translate on book-stage */
}

/* ═══════════════════════════════════════════════════════════════════════════
   3D REAL PAPER FLIP & BENDING CURVE EFFECT (MAGAZINE READ / LE MONDE)
   ═══════════════════════════════════════════════════════════════════════════ */

.kiosk-book-stage {
  position: relative;
  perspective: 2000px;
  perspective-origin: 50% 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  transition: transform 0.25s ease;
  transform-origin: top center;
}

/* Pan overlay — covers the book when zoomed to capture drag for panning */
.kiosk-pan-overlay {
  position: absolute;
  inset: 0;
  z-index: 50;
  pointer-events: none; /* inactive by default */
  cursor: grab;
  border-radius: 4px;
}
.kiosk-pan-overlay.is-active {
  pointer-events: all; /* blocks StPageFlip, captures pan drag */
}
.kiosk-pan-overlay.is-dragging {
  cursor: grabbing;
}

.kiosk-book {
  position: relative;
  margin: 0 auto;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 4px;
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* When viewing page 1 (cover) in double mode, center the right cover page and make the left dummy page completely transparent */
.kiosk-book.is-cover-view {
  transform: translateX(-25%);
}

.kiosk-book.is-cover-view .stf__item.--left,
.kiosk-book.is-cover-view .stf__item:first-child,
.kiosk-book.is-cover-view .kiosk-book-page:first-child {
  opacity: 0 !important;
  pointer-events: none !important;
  box-shadow: none !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
}

.kiosk-book.is-cover-view .stf__item.--left::after {
  display: none !important;
}

/* Soft, elegant left-side shadow & subtle spine fold for page 1 (cover) */
.kiosk-book.is-cover-view .stf__item.--right,
.kiosk-book.is-cover-view .stf__item:not(.--left) {
  border-left: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: -10px 8px 24px rgba(0, 0, 0, 0.16), 0 8px 24px rgba(0, 0, 0, 0.12) !important;
}

.kiosk-book.is-cover-view .stf__item.--right::after,
.kiosk-book.is-cover-view .stf__item:not(.--left)::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  bottom: 0 !important;
  width: 18px !important;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.14) 0%,
    rgba(0, 0, 0, 0.04) 8px,
    transparent 100%
  ) !important;
  pointer-events: none !important;
  z-index: 10 !important;
}

.kiosk-book-page,
.stf__item {
  background-color: #ffffff;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  position: relative;
}

.kiosk-book-page img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.kiosk-book-page--locked {
  background: #f4f2ee;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kiosk-locked-page-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-3);
  opacity: 0.5;
}

/* Center magazine spine crease shadow for realistic book feel */
.stf__item.--left::after {
  content: "";
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 32px;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.06) 50%, transparent 100%);
  pointer-events: none;
  z-index: 8;
}

.stf__item.--right::after {
  content: "";
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 32px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.06) 50%, transparent 100%);
  pointer-events: none;
  z-index: 8;
}

.kiosk-spread-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 4px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28), 0 2px 10px rgba(0,0,0,0.12);
  transform-style: preserve-3d;
  perspective: 1000px;
  user-select: none;
}

.kiosk-page-container {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  backface-visibility: hidden;
}

.kiosk-page-left {
  border-radius: 4px 0 0 4px;
}

.kiosk-page-right {
  border-radius: 0 4px 4px 0;
}

/* Center spine shadow */
.kiosk-spine {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.22);
  z-index: 10;
  box-shadow: 0 0 8px rgba(0,0,0,0.4);
}

.kiosk-spread-box.is-single-page .kiosk-spine,
.kiosk-spread-box.is-single-page .kiosk-spine-shadow-left,
.kiosk-spread-box.is-single-page .kiosk-spine-shadow-right {
  display: none !important;
}

.kiosk-spine-shadow-left {
  position: absolute;
  top: 0; right: 0; bottom: 0; width: 30px;
  pointer-events: none;
  background: linear-gradient(to left, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0) 100%);
  z-index: 5;
}

.kiosk-spine-shadow-right {
  position: absolute;
  top: 0; left: 0; bottom: 0; width: 30px;
  pointer-events: none;
  background: linear-gradient(to right, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0) 100%);
  z-index: 5;
}

/* ── Dynamic 3D Flipping Sheet ────────────────────────────────────────────── */
.kiosk-flip-sheet {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  height: 100%;
  display: none;
  transform-style: preserve-3d;
  z-index: 50;
  pointer-events: none;
}

.kiosk-flip-sheet.is-active {
  display: block;
}

.kiosk-flip-sheet.flip-next {
  right: 0;
  transform-origin: left center;
}

.kiosk-flip-sheet.flip-prev {
  left: 0;
  transform-origin: right center;
}

/* ── 3D Sheet Faces (Front & Back of turning page) ────────────────────────── */
.kiosk-flip-face {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  backface-visibility: hidden;
  overflow: hidden;
  background: #ffffff;
}

.kiosk-flip-front {
  transform: rotateY(0deg);
  z-index: 2;
}

.kiosk-flip-back {
  transform: rotateY(180deg);
  z-index: 1;
}

.kiosk-flip-face canvas {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* ── Dynamic Paper Reflection & Curl Shadows ──────────────────────────────── */
.kiosk-sheet-shadow {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  opacity: 0;
  z-index: 15;
}

/* Flip Next Animation (Right to Left: Page bends into a 3D cylinder arc) */
.kiosk-flip-sheet.flip-next.is-animating {
  animation: kiosk-paper-curl-next 0.52s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

.kiosk-flip-sheet.flip-next.is-animating .kiosk-flip-front .kiosk-sheet-shadow {
  animation: kiosk-shadow-curl-front 0.52s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

.kiosk-flip-sheet.flip-next.is-animating .kiosk-flip-back .kiosk-sheet-shadow {
  animation: kiosk-shadow-curl-back 0.52s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

/* Flip Prev Animation (Left to Right: Page bends into a 3D cylinder arc) */
.kiosk-flip-sheet.flip-prev.is-animating {
  animation: kiosk-paper-curl-prev 0.52s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

.kiosk-flip-sheet.flip-prev.is-animating .kiosk-flip-front .kiosk-sheet-shadow {
  animation: kiosk-shadow-curl-front-prev 0.52s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

.kiosk-flip-sheet.flip-prev.is-animating .kiosk-flip-back .kiosk-sheet-shadow {
  animation: kiosk-shadow-curl-back-prev 0.52s cubic-bezier(0.4, 0.0, 0.2, 1) forwards;
}

/* 3D Cylindrical Paper Curl Keyframes (Bending, arching, and flipping) */
@keyframes kiosk-paper-curl-next {
  0% {
    transform: rotateY(0deg) skewY(0deg) scaleX(1);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  }
  30% {
    transform: rotateY(-50deg) skewY(-2.8deg) scaleX(0.91) translateZ(14px);
    box-shadow: -20px 6px 32px rgba(0,0,0,0.38);
  }
  60% {
    transform: rotateY(-120deg) skewY(2.8deg) scaleX(0.91) translateZ(14px);
    box-shadow: 20px 6px 32px rgba(0,0,0,0.38);
  }
  100% {
    transform: rotateY(-180deg) skewY(0deg) scaleX(1);
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
  }
}

@keyframes kiosk-paper-curl-prev {
  0% {
    transform: rotateY(0deg) skewY(0deg) scaleX(1);
    box-shadow: 5px 0 15px rgba(0,0,0,0.1);
  }
  30% {
    transform: rotateY(50deg) skewY(2.8deg) scaleX(0.91) translateZ(14px);
    box-shadow: 18px 6px 32px rgba(0,0,0,0.38);
  }
  60% {
    transform: rotateY(120deg) skewY(-2.8deg) scaleX(0.91) translateZ(14px);
    box-shadow: -18px 6px 32px rgba(0,0,0,0.38);
  }
  100% {
    transform: rotateY(180deg) skewY(0deg) scaleX(1);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  }
}

/* Light reflection & paper fold shadow moving across sheet */
@keyframes kiosk-shadow-curl-front {
  0% {
    opacity: 0;
    background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.4) 100%);
  }
  40% {
    opacity: 1;
    background: linear-gradient(to right, rgba(0,0,0,0.15) 0%, rgba(255,255,255,0.45) 40%, rgba(0,0,0,0.45) 100%);
  }
  100% {
    opacity: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
  }
}

@keyframes kiosk-shadow-curl-back {
  0% {
    opacity: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
  }
  60% {
    opacity: 1;
    background: linear-gradient(to left, rgba(0,0,0,0.15) 0%, rgba(255,255,255,0.45) 40%, rgba(0,0,0,0.45) 100%);
  }
  100% {
    opacity: 0;
    background: linear-gradient(to left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.4) 100%);
  }
}

@keyframes kiosk-shadow-curl-front-prev {
  0% {
    opacity: 0;
    background: linear-gradient(to left, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.4) 100%);
  }
  40% {
    opacity: 1;
    background: linear-gradient(to left, rgba(0,0,0,0.15) 0%, rgba(255,255,255,0.45) 40%, rgba(0,0,0,0.45) 100%);
  }
  100% {
    opacity: 0;
    background: linear-gradient(to left, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
  }
}

@keyframes kiosk-shadow-curl-back-prev {
  0% {
    opacity: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 100%);
  }
  60% {
    opacity: 1;
    background: linear-gradient(to right, rgba(0,0,0,0.15) 0%, rgba(255,255,255,0.45) 40%, rgba(0,0,0,0.45) 100%);
  }
  100% {
    opacity: 0;
    background: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.4) 100%);
  }
}

.kiosk-canvas-page {
  display: block;
  max-height: calc(100vh - 180px);
  width: auto;
  object-fit: contain;
}

#kiosk-canvas-a-left,
#kiosk-canvas-b-left {
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: inset -10px 0 14px -8px rgba(0, 0, 0, 0.25);
}

/* ── Fullscreen Mode ─────────────────────────────────────────────────── */
.kiosk-reader.is-fullscreen {
  position: fixed !important;
  top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
  width: 100vw !important; height: 100vh !important;
  z-index: 999999 !important;
  background: #0f1318 !important;
  border: none !important; border-radius: 0 !important;
  display: flex !important; flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: stretch !important;
  overflow: hidden !important;
}

/* In fullscreen: canvas-wrap fills all remaining space and centers the book */
.kiosk-reader.is-fullscreen .kiosk-reader-canvas-wrap {
  flex: 1 !important;
  min-height: 0 !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 2rem !important;
  overflow: hidden !important;
}

.kiosk-reader.is-fullscreen .kiosk-reader-controls {
  background: #191f28;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  flex-shrink: 0;
}

/* Thumbnails stay at the bottom in fullscreen */
.kiosk-reader.is-fullscreen .kiosk-thumbnails {
  flex-shrink: 0;
  background: #191f28 !important;
  border-top: 1px solid rgba(255,255,255,0.1) !important;
}



.kiosk-spread-box {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
  border-radius: 4px;
  background: #ffffff;
}

.kiosk-page-container {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kiosk-page-left {
  border-radius: 4px 0 0 4px;
}

.kiosk-page-right {
  border-radius: 0 4px 4px 0;
}

.kiosk-spine {
  width: 2px;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.kiosk-spine-shadow-left {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 30px;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.18), transparent);
  pointer-events: none;
  z-index: 5;
}

.kiosk-spine-shadow-right {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 30px;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.18), transparent);
  pointer-events: none;
  z-index: 5;
}

/* ── Slide-in Sheet (replaces old 3D flip-sheet) ───────────────────────── */
.kiosk-slide-sheet {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  display: none;
  z-index: 25;
  overflow: hidden;
  background: #ffffff;
  will-change: transform;
}

.kiosk-slide-sheet.is-active {
  display: block;
}

/* Starts on RIGHT half → slides LEFT to become left page */
.kiosk-slide-sheet.slide-from-right {
  right: 0;
  left: auto;
  transform: translateX(0);
}
.kiosk-slide-sheet.slide-from-right.is-sliding {
  transform: translateX(-100%);
  transition: transform 0.46s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Starts on LEFT half → slides RIGHT to become right page */
.kiosk-slide-sheet.slide-from-left {
  left: 0;
  right: auto;
  transform: translateX(0);
}
.kiosk-slide-sheet.slide-from-left.is-sliding {
  transform: translateX(100%);
  transition: transform 0.46s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* Shadow overlay — simulates the page coming from the spine */
.kiosk-slide-shadow-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  pointer-events: none;
  z-index: 6;
  transition: opacity 0.46s ease;
}

/* When sliding from right: shadow on left edge (spine side) */
.kiosk-slide-sheet.slide-from-right .kiosk-slide-shadow-overlay {
  left: 0;
  right: auto;
  background: linear-gradient(to right,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.14) 45%,
    rgba(0,0,0,0.04) 75%,
    rgba(0,0,0,0) 100%
  );
}

/* When sliding from left: shadow on right edge (spine side) */
.kiosk-slide-sheet.slide-from-left .kiosk-slide-shadow-overlay {
  right: 0;
  left: auto;
  background: linear-gradient(to left,
    rgba(0,0,0,0.35) 0%,
    rgba(0,0,0,0.14) 45%,
    rgba(0,0,0,0.04) 75%,
    rgba(0,0,0,0) 100%
  );
}

/* Fade the shadow out as the slide completes */
.kiosk-slide-sheet.is-sliding .kiosk-slide-shadow-overlay {
  opacity: 0;
}



/* ── Paywall overlay ──────────────────────────────────────────────────── */

/* Book blurs when user hits the paywall */
.kiosk-reader-canvas-wrap.is-paywalled {
  filter: blur(10px) brightness(0.6);
  pointer-events: none;
  transition: filter 0.4s ease;
}

/* Make kiosk-reader a positioning context */
.kiosk-reader { position: relative; }

/* Paywall is an absolute overlay on top of the reader */
.kiosk-paywall {
  position: absolute;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background: rgba(10, 10, 20, 0.5);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.kiosk-paywall.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.kiosk-paywall-inner {
  max-width: 440px;
  width: 100%;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--paper-3);
  border-radius: calc(var(--r) * 1.5);
  padding: 2.5rem 2rem;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 4px 16px rgba(0,0,0,0.2);
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.kiosk-paywall.is-visible .kiosk-paywall-inner {
  transform: translateY(0);
}

.kiosk-paywall-icon { margin-bottom: 1.25rem; }
.kiosk-paywall-icon svg { display: block; margin: 0 auto; }
.kiosk-paywall-inner h2 { font-family: var(--ff-head); font-size: 1.35rem; font-weight: 900; margin: 0 0 .75rem; color: var(--ink-1); }
.kiosk-paywall-inner p { font-family: var(--ff-body); font-size: .9rem; color: var(--ink-2); margin: 0 0 1.5rem; line-height: 1.65; }
.kiosk-paywall-actions { display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1rem; }
.kiosk-paywall-preview-hint { font-family: var(--ff-ui); font-size: .75rem; color: var(--ink-3); margin: 0; }

/* ── Thumbnail strip ──────────────────────────────────────────────────── */
.kiosk-thumbnails {
  display: flex; gap: .5rem; overflow-x: auto;
  padding: .75rem 1rem; background: var(--paper-2);
  border-top: 1px solid var(--paper-3); margin-top: 1rem;
  scrollbar-width: thin; scrollbar-color: var(--paper-3) transparent;
}

.kiosk-thumb {
  flex: 0 0 auto; width: 56px;
  display: flex; flex-direction: column; align-items: center; gap: .25rem;
  border: 2px solid transparent; border-radius: 4px; background: none;
  cursor: pointer; padding: .2rem; transition: var(--trans);
}
.kiosk-thumb canvas {
  width: 100%; border-radius: 2px; box-shadow: var(--shadow);
  background: var(--paper-3); aspect-ratio: 3/4; display: block;
}
.kiosk-thumb span { font-family: var(--ff-ui); font-size: .6rem; font-weight: 700; color: var(--ink-3); }
.kiosk-thumb--active { border-color: var(--blue); }
.kiosk-thumb--locked { opacity: .35; }
.kiosk-thumb--locked canvas { filter: blur(1px); }

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE POLISH (KIOSK HOME, COLLECTION & READER)
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }

  /* Minimal Kiosk Mobile Header */
  .kiosk-minimal-inner {
    padding: .4rem .6rem !important;
    gap: .4rem !important;
    flex-wrap: nowrap !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
  }

  .kiosk-burger-toggle {
    padding: 0 !important;
    width: 36px !important;
    height: 36px !important;
    justify-content: center !important;
    margin-right: 0 !important;
  }
  .kiosk-burger-toggle span {
    display: none !important;
  }

  .kiosk-minimal-badge {
    font-size: 1.1rem !important;
    letter-spacing: normal !important;
    white-space: nowrap !important;
  }

  .kiosk-minimal-right {
    gap: .35rem !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
  }

  .kiosk-minimal-right .btn-subscribe.kiosk-minimal-cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    border-radius: 6px !important;
    font-size: .85rem !important;
  }

  .kiosk-header-link-btn, .kiosk-header-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    padding: 0 !important;
    border-radius: 6px !important;
    border: 1px solid var(--paper-3, #cbd5e1) !important;
    font-size: .85rem !important;
  }

  .kiosk-minimal-right .kiosk-btn-text {
    display: none !important;
  }

  .kiosk-page,
  .kiosk-viewer-page {
    padding-left: .25rem !important;
    padding-right: .25rem !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
  }

  /* Mobile Spotlight Hero Card */
  .kiosk-spotlight {
    position: relative;
    top: 0;
    margin-bottom: 1.5rem;
    padding: .85rem;
    background: #ffffff;
    border: 1px solid var(--paper-3);
    border-radius: var(--r);
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1rem;
    align-items: center;
  }

  .kiosk-spotlight-cover {
    width: 100%;
    margin-bottom: 0;
  }

  .kiosk-spotlight-date {
    font-size: .75rem;
  }

  .kiosk-read-btn {
    padding: .5rem .85rem;
    font-size: .82rem;
    margin-top: .25rem;
    align-self: start;
  }

  /* Touch Horizontal Scroll Rows */
  .kiosk-editions-row {
    gap: .75rem;
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .kiosk-scroll-btn {
    display: flex !important;
    width: 32px !important;
    height: 32px !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.18) !important;
    background: #ffffff !important;
    color: var(--blue, #1A4A7A) !important;
    border: 1px solid var(--paper-3, #e2e8f0) !important;
    z-index: 5 !important;
  }

  .kiosk-scroll-btn[data-kiosk-prev] {
    left: -4px !important;
  }

  .kiosk-scroll-btn[data-kiosk-next] {
    right: -4px !important;
  }

  .kiosk-scroll-btn[data-kiosk-next] {
    right: -4px !important;
  }

  .kiosk-scroll-btn[hidden] {
    display: none !important;
  }

  /* Collection Grid Mobile (2 Columns) */
  .kiosk-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  .kiosk-grid-card {
    border-radius: 8px;
  }

  .kiosk-grid-body {
    padding: .75rem .65rem;
    gap: .4rem;
  }

  .kiosk-grid-title {
    font-size: .9rem;
    line-height: 1.3;
  }

  .kiosk-grid-read-link {
    font-size: .78rem;
  }

  /* Reader Page Header & Controls */
  .kiosk-viewer-header {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
  }

  .kiosk-reader {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 !important;
  }

  .kiosk-reader-controls {
    padding: .5rem .75rem;
    gap: .4rem;
    flex-wrap: wrap;
  }

  .kiosk-controls-left,
  .kiosk-controls-right {
    gap: .35rem;
  }

  #kiosk-mode-label,
  #kiosk-toggle-fullscreen span {
    display: none !important;
  }

  .kiosk-control-btn {
    padding: .35rem .55rem;
    font-size: .75rem;
  }

  .kiosk-reader-canvas-wrap {
    padding: .5rem 0 !important;
    width: 100% !important;
    max-width: 100vw !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .kiosk-book-stage {
    width: 100% !important;
    max-width: 100vw !important;
    padding: 0 !important;
    overflow: hidden !important;
  }

  .kiosk-spread-box {
    width: 100% !important;
    max-width: 100vw !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
  }

  .kiosk-page-container {
    width: 100% !important;
    max-width: 100vw !important;
  }

  .kiosk-canvas-page {
    width: 100% !important;
    max-width: 100vw !important;
    height: auto !important;
    max-height: calc(100vh - 140px) !important;
    object-fit: contain !important;
  }
}

@media (max-width: 480px) {
  .kiosk-minimal-center {
    display: none !important;
  }

  .kiosk-spotlight {
    grid-template-columns: 95px 1fr;
    gap: .75rem;
    padding: .75rem;
  }

  .kiosk-edition-card {
    width: 105px;
  }

  .kiosk-grid {
    gap: .75rem !important;
  }

  .kiosk-thumbnails {
    padding: .5rem;
  }

  .kiosk-thumb {
    width: 44px;
  }
}

/* ── Fullscreen Mode overrides ───────────────────────────────────────── */
.kiosk-reader.is-fullscreen .kiosk-page-indicator {
  color: #ffffff;
}

.kiosk-reader.is-fullscreen .kiosk-nav-btn,
.kiosk-reader.is-fullscreen .kiosk-control-btn {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.kiosk-reader.is-fullscreen .kiosk-nav-btn:hover:not(:disabled),
.kiosk-reader.is-fullscreen .kiosk-control-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
}

.kiosk-reader.is-fullscreen .kiosk-canvas-page {
  max-height: calc(100vh - 100px);
}



/* ── Book stage — centered container for StPageFlip ──────────────────── */
.kiosk-book-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Blank page at index 0 — completely invisible so cover appears alone on the right */
.kiosk-book-page--blank {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 768px) {
  /* Keep the don/subscribe button visible on mobile */
  .kiosk-minimal-right .btn-subscribe {
    display: inline-flex !important;
    padding: .35rem .65rem !important;
    font-size: .72rem !important;
  }
  /* Spotlight mobile: stacked vertical layout */
  .kiosk-spotlight {
    position: relative;
    top: 0;
    display: grid;
    grid-template-columns: 110px 1fr;
    grid-template-rows: auto 1fr auto;
    gap: .75rem 1rem;
    align-items: start;
    padding: .85rem;
    background: #fff;
    border: 1px solid var(--paper-3);
    border-radius: var(--r);
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    margin-bottom: 1.5rem;
  }
  .kiosk-spotlight-meta {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
  }
  .kiosk-spotlight-cover {
    grid-column: 1;
    grid-row: 1 / span 2;
    width: 100%;
    margin-bottom: 0;
    aspect-ratio: 3/4;
  }
  .kiosk-read-btn {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    padding: .45rem .8rem;
    font-size: .82rem;
  }
}

/* ==========================================================================
   MOBILE & TABLET NATIVE NEWS APP STYLES (Le Monde Style)
   ========================================================================== */

/* 1. Desktop Defaults (Hidden on > 1023px) */
.app-mobile-header,
.app-mobile-header-spacer {
  display: none !important;
}

.app-bottom-nav {
  display: none !important;
}

.app-selections-modal {
  display: none;
}

.app-selections-modal:not([hidden]) {
  display: block;
}

.app-mobile-footer {
  display: none !important;
}

/* 2. Mobile & Tablet Breakpoint (< 1024px) */
@media (max-width: 1023px) {
  /* Hide Desktop Masthead & Nav */
  .masthead {
    display: none !important;
  }

  /* Hide heavy desktop 4-column footer on mobile/tablet */
  .footer-grid,
  .desktop-footer-bottom {
    display: none !important;
  }

  /* Compact Mobile App Footer */
  .app-mobile-footer {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.25rem 1.5rem;
    gap: 1rem;
  }

  .app-mobile-footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 0.25rem;
  }

  .app-site-logo-footer.site-logo {
    display: block;
    height: 30px;
    width: auto;
    aspect-ratio: 1853.34 / 766.44;
    color: var(--paper);
    font-size: 0;
    line-height: 0;
    text-decoration: none;
    margin: 0 auto;
  }

  .app-site-logo-footer .site-logo-mark {
    display: block;
    width: 100%;
    height: 100%;
    color: inherit;
    background: currentColor;
    -webkit-mask: var(--site-logo-image, url('/assets/icons/logo-ifrikia.svg')) center / contain no-repeat;
    mask: var(--site-logo-image, url('/assets/icons/logo-ifrikia.svg')) center / contain no-repeat;
  }

  .app-mobile-footer-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1.25rem;
    font-family: var(--ff-ui);
    font-size: 0.82rem;
  }

  .app-mobile-footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease;
  }

  .app-mobile-footer-links a:hover {
    color: #ffffff;
  }

  .app-mobile-footer-bottom {
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--ff-ui);
    font-size: 0.75rem;
    margin-top: 0.5rem;
  }

  body {
    padding-bottom: calc(60px + env(safe-area-inset-bottom, 0px));
  }

  body.podcast-player-open {
    padding-bottom: calc(130px + env(safe-area-inset-bottom, 0px)) !important;
  }

  body.app-modal-open {
    overflow: hidden !important;
  }

  /* --- Sticky Podcast Player Position for Mobile & Tablet --- */
  .podcast-sticky-player,
  .global-podcast-player {
    position: fixed !important;
    bottom: calc(56px + env(safe-area-inset-bottom, 0px)) !important;
    z-index: 1005 !important;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.3) !important;
  }

  /* --- Top App Mobile Header --- */
  .app-mobile-header {
    display: block !important;
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1020;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--ink);
    border-bottom: 1px solid var(--paper-3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .app-mobile-header-spacer {
    display: block !important;
    height: 91px;
    width: 100%;
  }

  .app-mobile-header-spacer.is-article {
    height: 50px;
  }

  .app-header-bar {
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    height: 50px;
    padding: 0 0.85rem;
    gap: 0.5rem;
    background: transparent;
  }

  /* Main Header Branding */
  .app-burger-btn {
    grid-column: 1;
    justify-self: start;
    background: transparent;
    border: none;
    color: var(--ink);
    font-size: 1.3rem;
    padding: 0.4rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    touch-action: manipulation;
  }

  .app-burger-btn:active {
    background: var(--paper-2);
  }

  .app-site-logo.site-logo,
  .app-site-logo-article.site-logo {
    grid-column: 2;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 26px;
    width: auto;
    max-width: 130px;
    color: var(--blue, var(--ink));
    font-size: 0;
    line-height: 0;
    text-decoration: none;
    margin: 0 auto;
  }

  .app-site-logo .site-logo-mark,
  .app-site-logo-article .site-logo-mark {
    display: block;
    height: 100%;
    width: auto;
    aspect-ratio: 1853.34 / 766.44;
    color: inherit;
    background: currentColor;
    -webkit-mask: var(--site-logo-image, url('/assets/icons/logo-ifrikia.svg')) center / contain no-repeat;
    mask: var(--site-logo-image, url('/assets/icons/logo-ifrikia.svg')) center / contain no-repeat;
  }

  .app-header-right {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.4rem;
  }

  .app-action-icon-btn {
    background: transparent;
    border: none;
    color: var(--ink);
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    text-decoration: none;
    transition: transform 0.1s ease, color 0.15s ease;
    touch-action: manipulation;
  }

  .app-action-icon-btn:active {
    transform: scale(0.92);
    background: var(--paper-2);
  }

  .app-action-icon-btn.is-saved,
  .app-action-icon-btn.active {
    color: var(--blue, var(--gold));
  }

  .app-cta-btn {
    background: var(--blue, var(--gold));
    color: #ffffff;
    font-family: var(--ff-ui);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    text-decoration: none;
    white-space: nowrap;
  }

  .app-cta-btn:active {
    opacity: 0.9;
  }

  /* --- Horizontal Category Scroll Bar --- */
  .app-category-bar {
    background: #ffffff;
    border-top: 1px solid var(--paper-2);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .app-category-bar::-webkit-scrollbar {
    display: none;
  }

  .app-category-strip {
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    white-space: nowrap;
  }

  .app-category-strip a {
    font-family: var(--ff-ui);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ink-2);
    padding: 0.6rem 0.9rem;
    text-decoration: none;
    display: inline-block;
    position: relative;
    transition: color 0.15s ease;
  }

  .app-category-strip a:hover {
    color: var(--blue, var(--ink));
  }

  /* 4. Tablet & Mobile Responsive Layout Fixes (< 1024px) */
  @media (max-width: 1023px) {
    /* Prevent side-by-side grid squeezing on tablets and phones */
    .lead-grid,
    .front-content,
    .category-identity-lead-grid,
    .listing-content {
      grid-template-columns: 1fr !important;
      display: block !important;
    }

    .lead-story {
      padding-right: 0 !important;
    }

    .lead-rail {
      border-left: 0 !important;
      border-top: 2px solid var(--ink);
      padding: 1.25rem 0 1rem !important;
      margin-top: 1.5rem !important;
    }

    .rail-story.has-thumb {
      grid-template-columns: 110px minmax(0, 1fr) !important;
      column-gap: 0.9rem !important;
      align-items: flex-start !important;
    }

    .rail-story h2 {
      font-size: 1.02rem !important;
      line-height: 1.35 !important;
    }

    .article-wrap.has-sidebar {
      display: flex !important;
      flex-direction: column !important;
      padding: 1.25rem 1rem 3rem !important;
    }

    .article-sidebar {
      order: 99 !important;
      position: static !important;
      width: 100% !important;
      margin-top: 2rem !important;
    }
  }

  @media (min-width: 768px) and (max-width: 1023px) {
    .app-mobile-header-spacer {
      height: 105px;
    }

    .app-mobile-header-spacer.is-article {
      height: 58px;
    }

    .app-header-bar {
      height: 58px;
      padding: 0 1.25rem;
    }

    .app-burger-btn {
      font-size: 1.4rem;
    }

    .app-site-logo.site-logo,
    .app-site-logo-article.site-logo {
      height: 34px !important;
      max-width: 180px !important;
    }

    .app-action-icon-btn {
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
    }

    .app-cta-btn {
      font-size: 0.82rem;
      padding: 0.4rem 0.9rem;
    }

    .app-category-strip a {
      font-size: 0.88rem;
      padding: 0.7rem 1.15rem;
    }

    .app-modal-sheet {
      max-width: 640px;
      margin: 0 auto;
      border-radius: 20px 20px 0 0;
    }

    .rail-story.has-thumb {
      grid-template-columns: 140px minmax(0, 1fr) !important;
      column-gap: 1.1rem !important;
    }

    .rail-story h2 {
      font-size: 1.12rem !important;
      line-height: 1.38 !important;
    }
  }

  .app-category-strip a.active {
    color: var(--blue, var(--ink));
    font-weight: 700;
  }

  .app-category-strip a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.9rem;
    right: 0.9rem;
    height: 3px;
    background: var(--blue, var(--gold));
    border-radius: 3px 3px 0 0;
  }

  /* --- Article Mode Header --- */
  .app-header-article {
    background: transparent;
    display: grid !important;
    grid-template-columns: 1fr auto 1fr !important;
    align-items: center !important;
    gap: 0.5rem;
  }

  .app-header-article .app-header-back {
    grid-column: 1;
    justify-self: start;
  }

  .app-header-article .app-header-title {
    grid-column: 2;
    justify-self: center;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .app-header-article .app-header-actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.4rem;
  }

  .app-header-back {
    background: transparent;
    border: none;
    color: var(--ink);
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
  }

  .app-header-back:active {
    background: var(--paper-2);
  }

  .app-font-btn {
    background: var(--paper-2);
    border: 1px solid var(--paper-3);
    color: var(--ink);
    font-family: var(--ff-ui);
    font-weight: 700;
    font-size: 0.72rem;
    padding: 0.25rem 0.45rem;
    border-radius: 4px;
    cursor: pointer;
  }

  .app-font-btn:active {
    background: var(--paper-3);
  }

  /* --- Fixed Bottom Navigation Bar --- */
  .app-bottom-nav {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1010;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    height: calc(56px + env(safe-area-inset-bottom, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
  }

  .app-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    height: 56px;
    background: transparent;
    border: none;
    color: #555555;
    font-family: var(--ff-ui);
    font-size: 0.68rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    touch-action: manipulation;
    transition: color 0.15s ease, transform 0.1s ease;
  }

  .app-tab:active {
    transform: scale(0.92);
  }

  .app-tab.active {
    color: var(--ink);
    font-weight: 700;
  }

  .app-tab.active .app-tab-icon {
    color: var(--ink);
  }

  .app-tab-icon {
    position: relative;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
  }

  .app-badge-count {
    position: absolute;
    top: -4px;
    right: -8px;
    background: var(--red);
    color: #ffffff;
    font-size: 0.6rem;
    font-weight: 800;
    padding: 1px 5px;
    border-radius: 10px;
    line-height: 1.2;
    min-width: 14px;
    text-align: center;
  }

  /* --- "Vos Sélections" Bottom Sheet Modal --- */
  .app-selections-modal {
    position: fixed;
    inset: 0;
    z-index: 1050;
  }

  .app-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  .app-modal-sheet {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 82vh;
    background: var(--paper);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: appSlideUp 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes appSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
  }

  .app-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.2rem;
    border-bottom: 1px solid var(--paper-2);
    position: relative;
  }

  .app-modal-handle {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 38px;
    height: 4px;
    border-radius: 2px;
    background: var(--paper-3);
  }

  .app-modal-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 6px;
    font-family: var(--ff-head);
    color: var(--ink);
  }

  .app-modal-title h3 {
    font-size: 1.1rem;
    font-weight: 700;
  }

  .app-modal-close {
    background: var(--paper-2);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    cursor: pointer;
    margin-top: 6px;
  }

  .app-modal-body {
    padding: 1rem 1.2rem 2rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .app-saved-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .app-saved-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid var(--paper-2);
    border-radius: var(--r);
    padding: 0.85rem 1rem;
    gap: 0.75rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
  }

  .app-saved-link {
    flex: 1;
    text-decoration: none;
    color: var(--ink);
  }

  .app-saved-link h4 {
    font-family: var(--ff-head);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
  }

  .app-saved-remove {
    background: transparent;
    border: none;
    color: var(--red);
    opacity: 0.7;
    cursor: pointer;
    padding: 0.3rem;
  }

  .app-saved-remove:hover {
    opacity: 1;
  }

  .app-saved-empty {
    text-align: center;
    padding: 2.5rem 1rem;
    color: #666;
  }

  .app-saved-empty p {
    font-family: var(--ff-head);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
  }


}

/* 3. Font Size Scaling Classes for Article Reading */
.article-content.font-size-sm, .article-page.font-size-sm .article-content {
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
}
.article-content.font-size-md, .article-page.font-size-md .article-content {
  font-size: 1.08rem !important;
  line-height: 1.7 !important;
}
.article-content.font-size-lg, .article-page.font-size-lg .article-content {
  font-size: 1.1rem !important;
  line-height: 1.7 !important;
}
.article-content.font-size-xl, .article-page.font-size-xl .article-content {
  font-size: 1.42rem !important;
  line-height: 1.8 !important;
}

/* 4. Tablet Layout Enhancements (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .app-header-bar {
    height: 58px;
    padding: 0 1.5rem;
  }
  .app-site-logo {
    font-size: 1.5rem;
  }
  .app-category-strip a {
    font-size: 0.85rem;
    padding: 0.7rem 1.1rem;
  }
  .app-modal-sheet {
    max-width: 640px;
    margin: 0 auto;
    border-radius: 20px 20px 0 0;
  }
}

/* Site Announcement Banner */
.site-announcement-banner {
  width: 100%;
  margin-bottom: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  overflow: hidden;
  transition: all .2s ease;
}
.site-announcement-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 2rem;
  width: 100%;
}
.site-announcement-banner-content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
}
.site-announcement-banner-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-announcement-banner-icon svg {
  width: 32px;
  height: 32px;
}
.site-announcement-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-ui, sans-serif);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.7rem 1.6rem;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: transform 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
  text-decoration: none;
  flex-shrink: 0;
}
.site-announcement-banner-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
@media (max-width: 640px) {
  .site-announcement-banner-inner {
    padding: 0.95rem 1.25rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .site-announcement-banner-btn {
    width: 100%;
    text-align: center;
  }
}

/* Sticky Bottom Bar Banner */
.site-sticky-bottom-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.site-sticky-bottom-banner-inner {
  width: 100%;
  max-width: 100%;
  padding: 1rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.site-sticky-bottom-banner-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
}
.site-sticky-banner-badge-img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
}
.site-sticky-banner-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.site-sticky-banner-icon svg {
  width: 34px;
  height: 34px;
}
.site-banner-text-group,
.site-sticky-banner-text-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.site-banner-title,
.site-sticky-banner-title {
  display: block;
  font-family: var(--ff-head, serif);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.site-banner-subtitle,
.site-sticky-banner-msg {
  display: block;
  font-family: var(--ff-ui, sans-serif);
  font-weight: 500;
  font-size: 1.08rem;
  line-height: 1.4;
  opacity: 0.95;
}
.site-sticky-bottom-banner-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.site-sticky-banner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-ui, sans-serif);
  font-weight: 800;
  font-size: 1.02rem;
  padding: 0.75rem 1.8rem;
  border-radius: 28px;
  text-decoration: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  white-space: nowrap;
}
.site-sticky-banner-btn:hover {
  opacity: 0.92;
  transform: scale(1.02);
}
.site-sticky-banner-close {
  background: rgba(0, 0, 0, 0.12);
  border: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  transition: background 0.15s ease;
  flex-shrink: 0;
}
.site-sticky-banner-close:hover {
  background: rgba(0, 0, 0, 0.22);
}
@media (max-width: 768px) {
  .site-sticky-bottom-banner-inner {
    padding: 0.85rem 1.25rem;
    gap: 1rem;
  }
  .site-banner-title,
  .site-sticky-banner-title {
    font-size: 1.15rem;
  }
  .site-banner-subtitle,
  .site-sticky-banner-msg {
    font-size: 0.95rem;
  }
  .site-sticky-banner-btn {
    padding: 0.55rem 1.25rem;
    font-size: 0.9rem;
  }
}