:root {
  --bg: #faf7f2;
  --bg2: rgb(245 240 232 / 82%);
  --ink: #1a1410;
  --muted: #5c5548;
  --gold: #8b6914;
  --gold-dark: #5c4509;
  --line: #d4c9b0;
  --topbar: #1a1410;
  --topbar-text: #a89880;
  --container: 1240px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.section-kicker {
  font-family: var(--font-serif);
  overflow-wrap: break-word;
  word-break: break-word;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: var(--gold);
  text-decoration: none;
}

a:hover {
  color: var(--gold-dark);
}

button,
.btn,
a.btn {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.lpn-parallax-root {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.lpn-parallax {
  position: absolute;
  will-change: transform;
  opacity: 0.15;
  mix-blend-mode: multiply;
}

.lpn-parallax img {
  width: 100%;
  height: auto;
  display: block;
}

.lpn-parallax--item1 {
  width: 225px;
  top: 22%;
  left: 0;
  transform: rotate(0deg);
  opacity: 0.3;
}

.lpn-parallax--item2 {
  width: 225px;
  top: 36%;
  right: 0;
  transform: rotate(0deg);
  opacity: 0.3;
}

@media (max-width: 820px) {
  .lpn-parallax--item1 {
    left: calc(-225px / 2);
  }

  .lpn-parallax--item2 {
    right: calc(-225px / 2);
    top: calc(36% - 100px);
  }
}

.top-bar {
  background: var(--topbar);
  color: var(--topbar-text);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
}

.top-bar__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 0.5px solid var(--line);
}

.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: var(--text-main);
}

.logo-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--ink);
  border-radius: 10px;
}

.logo-icon img,
.logo-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-domain {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  align-items: center;
}

.site-nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.site-nav a:hover {
  color: var(--gold);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.3s ease, opacity 0.25s ease;
  transform-origin: center;
}

.nav-drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  border: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(44, 44, 44, 0.38);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.nav-drawer-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (min-width: 1221px) {
  .nav-drawer-backdrop {
    display: none;
  }
}

@media (max-width: 1220px) {
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 60;
  }

  body.lpn-nav-open .nav-toggle {
    position: fixed;
    top: calc(env(safe-area-inset-top, 0px) + 16px);
    right: max(20px, env(safe-area-inset-right, 0px));
    z-index: 70;
    margin: 0;
  }

  body.lpn-nav-open .site-logo {
    flex: 1;
    min-width: 0;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: max-content;
    max-width: min(320px, 88vw);
    min-width: 12rem;
    margin: 0;
    padding: 4.5rem 1.75rem 1.75rem 1.75rem;
    background: rgba(250, 247, 242, 0.99);
    box-shadow: -10px 0 36px rgba(0, 0, 0, 0.12);
    transform: translateX(105%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    z-index: 55;
    box-sizing: border-box;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem 0;
  }

  .site-nav a {
    display: inline-block;
    padding: 0.35rem 0;
  }
}

main {
  position: relative;
  z-index: 1;
}

/* Parallax layer sits behind all main sections */
main > *:not(.lpn-parallax-root) {
  position: relative;
  z-index: 1;
}

.hero {
  z-index: -1 !important;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section--tight {
  padding: 48px 0;
}

.section-kicker {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0 0 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-kicker img,
.section-kicker svg {
  flex-shrink: 0;
  opacity: 0.85;
}

.hero {
  position: relative;
  padding: 56px 0 64px;
  background: var(--bg2) url("img/hero-bg.webp") center / cover no-repeat;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(250, 247, 242, 0.98) 0%, rgba(250, 247, 242, 0.92) 100%, var(--bg) 100%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-kicker {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0 0 10px;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 16px;
  color: var(--ink);
}

.hero-lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  max-width: 52ch;
  color: var(--muted);
  margin: 0 0 24px;
}

.hero header {
  margin: 0;
}

.hero .muted-small {
  margin: 10px 0 0;
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

.timeline-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  border: 0.5px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg);
}

.timeline-strip__item {
  padding: 14px 10px;
  text-align: center;
  border-right: 0.5px solid var(--line);
}

.timeline-strip__item:last-child {
  border-right: none;
}

.timeline-strip__year {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-dark);
}

.timeline-strip__note {
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

@media (max-width: 820px) {
  .timeline-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-strip__item {
    border-right: 0.5px solid var(--line);
    border-bottom: 0.5px solid var(--line);
  }
}

.era-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 820px) {
  .era-grid {
    grid-template-columns: 1fr;
  }
}

.era-card {
  position: relative;
  background: var(--bg2);
  border: 0.5px solid var(--line);
  border-radius: 10px;
  padding: 24px 24px 56px;
  min-height: 220px;
}

.era-card__label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.era-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 10px;
}

.era-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.era-card__year {
  position: absolute;
  right: 16px;
  bottom: 8px;
  font-family: var(--font-serif);
  font-size: 52px;
  line-height: 1;
  color: var(--line);
  font-weight: 600;
}

.lpn-section.lpn-top {
  padding: 56px 0 72px;
}

.lpn-section.lpn-top .container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.lpn-top-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

@media (max-width: 1220px) {
  .lpn-top-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .lpn-top-list {
    grid-template-columns: 1fr;
  }
}

.lpn-article {
  position: relative;
  background: var(--bg2);
  border-radius: 12px;
  border: 0.5px solid var(--line);
  border-left: 2px solid var(--gold);
  padding: 20px 18px 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.lpn-article:hover {
  background: #fffdf8;
  border-left-color: var(--gold-dark);
  box-shadow: 0 10px 28px rgba(26, 20, 16, 0.06);
}

.lpn-label {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}

.lpn-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lpn-img-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  min-height: 70px;
}

.lpn-img-container img {
  max-height: 70px;
  width: auto;
  max-width: 205px;
}

.lpn-top-list .lpn-img-container img {
  transition: filter 0.28s ease;
  filter: brightness(0) saturate(100%) invert(38%) sepia(58%) saturate(920%) hue-rotate(9deg) brightness(0.88) contrast(1.02);
}

.lpn-top-list .lpn-article:hover .lpn-img-container img {
  filter: none;
}

.lpn-bonus-container {
  margin-bottom: 14px;
}

.lpn-bonus {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 400;
  border-bottom: 1px dashed var(--line);
  padding-bottom: 8px;
}

.lpn-bonus:hover {
  color: var(--gold-dark);
}

.lpn-stats {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.lpn-stats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  font-size: 10px;
  color: var(--muted);
}

.lpn-stats img {
  width: 20px;
  height: 20px;
}

.lpn-stats .lpn-value {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--gold-dark);
}

.lpn-stats .lpn-hint {
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn-container {
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  text-align: center;
}

a.btn:hover {
  background: var(--bg2);
  color: var(--gold-dark);
}

.lpn-license {
  margin: 0;
  font-size: 10px;
  line-height: 1.45;
  color: var(--muted);
  text-align: center;
}

.prize-teasers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width: 820px) {
  .prize-teasers {
    grid-template-columns: 1fr;
  }
}

.prize-teaser {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 10px;
  border: 0.5px solid var(--line);
  background: var(--bg2);
}

.prize-teaser img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.rg-banner {
  background: var(--ink);
  color: #e8e0d5;
  padding: 28px 0;
  border-radius: 10px;
  margin: 0 20px;
  max-width: calc(var(--container) + 40px);
  margin-left: auto;
  margin-right: auto;
}

.rg-banner .container {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

@media (max-width: 820px) {
  .rg-banner .container {
    grid-template-columns: 1fr;
  }
}

.rg-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 12px;
}

.rg-links a {
  color: var(--line);
  text-decoration: underline;
}

.disclaimer-block {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0 auto;
}

.site-footer {
  background: var(--bg2);
  border-top: 0.5px solid var(--line);
  padding: 48px 0 24px;
  margin-top: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 28px;
}

@media (max-width: 1220px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

.footer-col h3 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 12px;
  color: var(--gold-dark);
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-cookie-btn {
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  color: var(--gold);
  cursor: pointer;
  text-decoration: none;
  text-align: left;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

.footer-cookie-btn:hover {
  color: var(--gold-dark);
}

.footer-col a {
  color: var(--ink);
  font-size: 14px;
}

.footer-meta {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 0.5px solid var(--line);
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--ink);
  color: #e8e0d5;
  padding: 16px 20px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(0);
  transition: transform 0.25s ease;
}

.cookie-banner.is-hidden {
  transform: translateY(110%);
  pointer-events: none;
}

.cookie-banner__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 280px;
  font-size: 13px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.btn--light {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}

.btn--light:hover {
  background: var(--line);
}

.btn--ghost-light {
  border-color: var(--line);
  color: var(--line);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(26, 20, 16, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
}

.modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.modal__dialog {
  background: var(--bg);
  max-width: 420px;
  width: 100%;
  border-radius: 12px;
  padding: 24px;
  border: 0.5px solid var(--line);
}

.modal__dialog h2 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.modal__dialog label {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 12px 0;
  font-size: 14px;
}

.lpn-chat-toggle {
  position: fixed;
  right: 18px;
  bottom: 100px;
  z-index: 120;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: var(--bg);
  box-shadow: 0 6px 20px rgba(26, 20, 16, 0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lpn-chat-panel {
  position: fixed;
  right: 18px;
  bottom: 162px;
  z-index: 121;
  width: min(360px, calc(100vw - 36px));
  height: 420px;
  background: var(--bg);
  border: 0.5px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(26, 20, 16, 0.15);
  display: flex;
  flex-direction: column;
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lpn-chat-panel.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.lpn-chat-head {
  padding: 12px 14px;
  border-bottom: 0.5px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
}

.lpn-chat-close {
  border: none;
  background: transparent;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  color: var(--muted);
}

.lpn-chat-log {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  font-size: 13px;
}

.lpn-chat-msg {
  margin: 0 0 10px;
  padding: 8px 10px;
  border-radius: 8px;
  max-width: 92%;
}

.lpn-chat-msg--support {
  background: var(--bg2);
  border: 0.5px solid var(--line);
}

.lpn-chat-msg--user {
  margin-left: auto;
  background: var(--ink);
  color: #f5f0e8;
}

.lpn-chat-form {
  display: flex;
  gap: 8px;
  padding: 10px;
  border-top: 0.5px solid var(--line);
}

.lpn-chat-form input {
  flex: 1;
  border: 0.5px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
}

.lpn-chat-form button {
  border-radius: 8px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #fff;
  padding: 0 14px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
}

.breadcrumbs {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}

.breadcrumbs a {
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  margin: 24px 0;
}

table.reg-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

table.reg-table th,
table.reg-table td {
  border: 0.5px solid var(--line);
  padding: 10px 12px;
  text-align: left;
}

table.reg-table th {
  background: var(--bg2);
  font-weight: 500;
}

.faq-list details {
  border: 0.5px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  margin-bottom: 10px;
  background: var(--bg);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 500;
}

.contact-form label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 0.5px solid var(--line);
  font: inherit;
}

.form-msg {
  margin-top: 10px;
  color: var(--gold-dark);
  font-weight: 500;
}

.filter-bar {
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.filter-bar input {
  flex: 1 1 220px;
  max-width: 320px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 0.5px solid var(--line);
  font: inherit;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 820px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.stack-top {
  margin-top: 28px;
}

.stack-top-lg {
  margin-top: 32px;
}

.muted-small {
  font-size: 13px;
  color: var(--muted);
}

.footer-brand-logo {
  margin-bottom: 12px;
}

/* Footer links use smaller font; keep header and footer logo identical */
.footer-col a.site-logo.footer-brand-logo {
  font-size: inherit;
  color: var(--text-main);
}

.footer-lead {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 12px;
}

.footer-contact {
  font-size: 14px;
  margin: 0;
}

.footer-rg-note {
  font-size: 13px;
  margin-top: 12px;
  color: var(--muted);
}

.cookie-banner__link {
  color: var(--line);
  font-size: 13px;
}

.modal__lede {
  font-size: 14px;
  color: var(--muted);
}

.modal__actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.btn--outline-ink {
  border-color: var(--line);
  color: var(--ink);
}

.affiliate-note {
  margin: 16px 0 8px;
  font-size: 12px;
  color: var(--muted);
}

.rg-banner--flush {
  margin: 0;
}

.timeline-list {
  margin: 0;
  padding-left: 1.2em;
}

.timeline-list li {
  margin-bottom: 10px;
}

.article-index {
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-index li {
  margin-bottom: 16px;
}

.article-index .prize-teaser {
  display: flex;
}
