/**
 * Dragon Football theme — main stylesheet.
 *
 * Single enqueued stylesheet. No inline styles in templates.
 * Mirrors the approved mockup at /DragonFootball/mockups/index.html.
 *
 * Typography: Fraunces (display + body serif), Inter (sans), JetBrains Mono (kickers)
 * Accent: #c8102e (DragonSports red family)
 * Headline weight 600, letter-spacing -0.012em on big display
 * No italic in headlines (only pull quotes)
 * Apostrophe rule: avoid possessive apostrophes in display headlines (Fraunces is dramatic at scale)
 */

:root {
  /* Colour tokens */
  --df-ink: #0a0a0a;
  --df-ink-soft: #2a2a2a;
  --df-ink-muted: #6a6a6a;
  --df-paper: #ffffff;
  --df-paper-warm: #faf8f5;
  --df-rule: #e5e5e5;
  --df-rule-strong: #cccccc;
  --df-accent: #c8102e;
  --df-accent-dark: #a30c25;
  --df-positive: #2a8e3a;

  /* Type tokens */
  --df-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --df-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --df-mono: "JetBrains Mono", "SF Mono", Menlo, monospace;

  /* Layout */
  --df-container: 1320px;
  --df-container-narrow: 800px;
  --df-gutter: 32px;
  --df-gutter-mobile: 28px;
}

/* ─── Reset ─────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; scroll-behavior: smooth; }
/* overflow-x: clip contains full-bleed carousels (e.g. the share-facts row) so
   they can't create a phantom horizontal scrollbar that shifts/cuts the layout.
   clip (not hidden) does NOT create a scroll container, so the sticky header
   keeps working. */
body { margin: 0; font-family: var(--df-sans); color: var(--df-ink); background: var(--df-paper); line-height: 1.5; overflow-x: clip; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--df-accent); }
img, video, svg { display: block; max-width: 100%; height: auto; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5, h6, p, ul, ol { margin: 0; padding: 0; }
ul, ol { list-style: none; }

/* ─── Container ─────────────────────────────────────────────────────────── */
.df-container {
  max-width: var(--df-container);
  margin: 0 auto;
  padding: 0 var(--df-gutter);
}
.df-container--narrow {
  max-width: var(--df-container-narrow);
}

/* ─── Wordmark ──────────────────────────────────────────────────────────── */
.df-wordmark {
  font-family: var(--df-serif);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.018em;
  line-height: 1;
  font-variation-settings: "opsz" 60, "SOFT" 0;
  white-space: nowrap;
}
.df-wordmark__dragon { color: var(--df-accent); }
.df-wordmark__football { color: var(--df-ink); }
.df-wordmark__img { height: 30px; width: auto; display: block; }
.df-footer__logo { height: 26px; width: auto; display: block; margin-bottom: 14px; }
.df-arcade__logo { height: 26px; width: auto; display: block; margin: 0 0 14px; }

/* ─── Header ────────────────────────────────────────────────────────────── */
.df-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--df-rule);
}
.df-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Vertical only — keep .df-container's left/right gutter so the logo lines up
     with the page content (the shorthand was zeroing it, pinning the logo). */
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 24px;
}
.df-header__nav,
.df-header__nav--primary {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
.df-header__nav a,
.df-header__nav--primary a {
  /* Pick up the Fraunces serif from the brand stack so the nav reads like
     a newspaper masthead, not a SaaS dashboard. Slight optical-size opt-in
     keeps the letters tight at small sizes. */
  font-family: var(--df-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--df-ink-soft);
  letter-spacing: -0.01em;
  font-variation-settings: "opsz" 14;
  transition: color 0.15s ease;
  white-space: nowrap;
}
.df-header__nav a:hover,
.df-header__nav--primary a:hover,
.df-header__nav--primary a.is-active,
.df-header__nav .current-menu-item a,
.df-header__nav .current_page_item a {
  color: var(--df-accent);
}

.df-header__sub {
  background: var(--df-ink);
  color: var(--df-paper);
}
.df-header__nav--secondary {
  display: flex;
  gap: 24px;
  padding: 10px 0;
  overflow-x: auto;
  scrollbar-width: none;
  align-items: center;
}
.df-header__nav--secondary::-webkit-scrollbar { display: none; }
.df-header__nav--secondary a {
  font-family: var(--df-mono);
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: color 0.15s ease;
}
.df-header__nav--secondary a:hover,
.df-header__nav--secondary a.is-active {
  color: var(--df-accent);
}
.df-header__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.df-btn-search {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--df-rule);
  background: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--df-ink);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.df-btn-search:hover {
  border-color: var(--df-accent);
  color: var(--df-accent);
}

/* Mobile hamburger */
.df-btn-menu {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--df-ink);
}

/* ─── Kicker (the signature pattern) ────────────────────────────────────── */
.df-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--df-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--df-accent);
  line-height: 1;
}
.df-kicker__dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--df-ink-muted);
  border-radius: 50%;
}
.df-kicker__section { color: var(--df-ink-muted); }
.df-kicker__link { text-decoration: none; transition: color 0.15s ease, border-color 0.15s ease; border-bottom: 1px solid transparent; }
.df-kicker__link:hover { color: var(--df-accent); border-bottom-color: currentColor; }

/* ─── Breadcrumbs (site-wide, under the nav) ──────────────────────────────── */
.df-breadcrumbs {
  border-bottom: 1px solid var(--df-rule, #e7e3dc);
  background: var(--df-paper, #fff);
}

/* App-style sticky bottom nav — mobile only (shown in the <=768px block below) */
.df-bottom-nav { display: none; }
.df-bottom-nav__item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 54px;
  padding: 7px 4px;
  text-decoration: none;
  color: var(--df-ink-soft, #555);
  font-family: var(--df-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
}
.df-bottom-nav__item svg { width: 21px; height: 21px; }
.df-bottom-nav__item.is-active { color: var(--df-accent); }

/* ── Player discovery rails (/players/) ───────────────────────────────────── */
.df-prails { padding: 4px 0 48px; }
.df-prails__anchor { position: relative; top: -80px; }
.df-prails__leagues { display: flex; gap: 8px; flex-wrap: wrap; margin: 6px 0 28px; }
.df-prail-chip {
  font-family: var(--df-mono); font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 8px 14px; border: 1px solid var(--df-rule-strong, #cfcabf);
  color: var(--df-ink-soft, #555); border-radius: 999px;
  text-decoration: none; white-space: nowrap; transition: color .15s ease, border-color .15s ease;
}
.df-prail-chip:hover { border-color: var(--df-accent); color: var(--df-accent); }
.df-prail-chip.is-active { background: var(--df-ink); color: var(--df-paper); border-color: var(--df-ink); }
.df-prail { margin: 0 0 38px; }
.df-prail__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 0 0 14px; }
.df-prail__title { font-family: var(--df-serif); font-size: clamp(1.3rem, 3vw, 1.7rem); line-height: 1.1; margin: 0; }
.df-prail__more { font-family: var(--df-mono); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--df-accent); text-decoration: none; white-space: nowrap; }
.df-prail__track {
  display: flex; gap: 14px; overflow-x: auto; padding: 2px 0 12px;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.df-prail__track::-webkit-scrollbar { display: none; }
.df-prail-card {
  flex: 0 0 auto; width: 124px; scroll-snap-align: start;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 3px;
  text-decoration: none;
}
.df-prail-card__photo { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; background: var(--df-rule, #ece8e1); }
.df-prail-card__photo--ph { display: block; }
.df-prail-card__name { font-weight: 600; font-size: 13px; color: var(--df-ink); line-height: 1.2; margin-top: 5px; }
.df-prail-card__club { font-size: 11px; color: var(--df-ink-muted); }
.df-prail-card__stat { font-family: var(--df-mono); font-size: 13px; font-weight: 700; color: var(--df-accent); margin-top: 2px; }
.df-prail-card__statlabel { font-weight: 500; color: var(--df-ink-muted); text-transform: uppercase; letter-spacing: 0.04em; font-size: 9px; }
.df-prails__browse { margin: 20px 0 0; font-family: var(--df-mono); font-size: 12px; }
.df-prails__browse a { color: var(--df-accent); text-decoration: none; font-weight: 600; }

/* Archive/search fallback header (index.php) */
.df-archive-header { margin: 28px 0 20px; }
.df-archive-header__title {
  font-family: var(--df-serif, Georgia, serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.1;
  margin: 0;
}
.df-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 11px 0;
  font-family: var(--df-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}
.df-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  color: var(--df-ink-muted, #777);
}
.df-breadcrumbs__item:not(:last-child)::after {
  content: "\203A"; /* › */
  margin-left: 6px;
  color: var(--df-ink-faint, #b8b2a8);
}
.df-breadcrumbs__item a {
  color: var(--df-ink-soft, #555);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.df-breadcrumbs__item a:hover {
  color: var(--df-accent, #cc0000);
  border-bottom-color: currentColor;
}
.df-breadcrumbs__item--current {
  color: var(--df-ink, #111);
  font-weight: 600;
}
@media (max-width: 600px) {
  .df-breadcrumbs__list { font-size: 10px; padding: 9px 0; gap: 5px; }
}

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.df-hero {
  padding: 64px 0 80px;
  border-bottom: 1px solid var(--df-rule);
}
.df-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.df-hero__content {
  max-width: 640px;
}
.df-hero__kicker { margin-bottom: 24px; }
.df-hero__headline {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.012em;
  color: var(--df-ink);
  margin-bottom: 24px;
  font-variation-settings: "opsz" 144, "SOFT" 0, "WONK" 0;
}
.df-hero__dek {
  font-family: var(--df-serif);
  font-weight: 400;
  font-size: 22px;
  line-height: 1.4;
  color: var(--df-ink-soft);
  margin-bottom: 28px;
  font-variation-settings: "opsz" 36;
}
.df-hero__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--df-sans);
  font-size: 14px;
  color: var(--df-ink-muted);
}
.df-hero__meta .df-byline__author { font-weight: 600; color: var(--df-ink); }
.df-hero__image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--df-paper-warm);
}
.df-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.df-hero__caption {
  font-family: var(--df-sans);
  font-size: 12px;
  color: var(--df-ink-muted);
  font-style: italic;
  margin-top: 10px;
}

/* ─── Section divider ───────────────────────────────────────────────────── */
.df-section-divider {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 40px 0 20px;
  border-bottom: 2px solid var(--df-ink);
  margin-bottom: 32px;
}
.df-section-divider__label {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.008em;
  font-variation-settings: "opsz" 60;
  color: var(--df-ink);
}
.df-section-divider__link {
  font-family: var(--df-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--df-accent);
}

/* ─── Card grid (NSS vertical) ──────────────────────────────────────────── */
.df-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-bottom: 64px;
}
.df-grid--2 { grid-template-columns: repeat(2, 1fr); }
.df-grid--4 { grid-template-columns: repeat(4, 1fr); gap: 32px; }

.df-card {
  display: block;
}
.df-card__link {
  display: block;
  color: inherit;
}
.df-card__link:hover .df-card__headline { color: var(--df-accent); }
.df-card__link:hover .df-card__image { transform: scale(1.03); }
.df-card__image-wrap {
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 16px;
  background: #e8e6e2;
}
.df-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.df-card__image--placeholder { background: var(--df-paper-warm); }
.df-card__body { padding: 0; }
.df-card__headline {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--df-ink);
  margin: 10px 0 12px;
  font-variation-settings: "opsz" 36, "SOFT" 20;
  transition: color 0.15s ease;
}
.df-card__dek {
  font-family: var(--df-sans);
  font-size: 15px;
  line-height: 1.4;
  color: var(--df-ink-soft);
  margin-bottom: 12px;
}
.df-card__meta {
  font-family: var(--df-sans);
  font-size: 12px;
  color: var(--df-ink-muted);
}
.df-card__author { color: var(--df-ink-soft); font-weight: 600; }

/* ─── Byline ────────────────────────────────────────────────────────────── */
.df-byline {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--df-sans);
  font-size: 14px;
  color: var(--df-ink-muted);
  flex-wrap: wrap;
}
.df-byline__author { font-weight: 600; color: var(--df-ink); }
.df-byline__author a:hover { color: var(--df-accent); }
.df-byline__sep { color: var(--df-rule-strong); }
.df-byline__reading {
  font-family: var(--df-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* ─── Article ───────────────────────────────────────────────────────────── */
.df-article {
  padding: 64px 0;
}
.df-article__inner {
  max-width: var(--df-container-narrow);
  margin: 0 auto;
}
.df-article__hero {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 32px;
}
.df-article__hero img { width: 100%; height: 100%; object-fit: cover; }
.df-article__kicker { margin-bottom: 20px; }
.df-article__headline {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.012em;
  color: var(--df-ink);
  margin-bottom: 20px;
  font-variation-settings: "opsz" 96;
}
.df-article__dek {
  font-family: var(--df-serif);
  font-weight: 400;
  font-style: italic;
  font-size: 20px;
  line-height: 1.45;
  color: var(--df-ink-soft);
  margin-bottom: 28px;
  font-variation-settings: "opsz" 36, "SOFT" 50;
}
.df-article__byline-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--df-rule);
  border-bottom: 1px solid var(--df-rule);
  margin-bottom: 32px;
}
.df-article__body p {
  font-family: var(--df-serif);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.65;
  color: var(--df-ink-soft);
  margin-bottom: 22px;
  font-variation-settings: "opsz" 14, "SOFT" 50;
}
.df-article__body p:first-of-type::first-letter {
  font-family: var(--df-serif);
  font-weight: 700;
  font-size: 78px;
  line-height: 0.85;
  float: left;
  margin: 6px 12px 0 0;
  color: var(--df-accent);
  font-variation-settings: "opsz" 144;
}
.df-article__body h2,
.df-article__body h3 {
  font-family: var(--df-serif);
  font-weight: 600;
  color: var(--df-ink);
  margin: 36px 0 16px;
  letter-spacing: -0.012em;
}
.df-article__body h2 { font-size: 32px; }
.df-article__body h3 { font-size: 24px; }
.df-article__body a { color: var(--df-accent); border-bottom: 1px solid currentColor; }
.df-article__body blockquote,
.df-article__body .wp-block-quote {
  font-family: var(--df-serif);
  font-weight: 600;
  font-style: italic;
  font-size: 32px;
  line-height: 1.2;
  color: var(--df-ink);
  margin: 40px -20px;
  padding: 0 20px;
  border-left: 4px solid var(--df-accent);
  font-variation-settings: "opsz" 60, "SOFT" 50, "WONK" 1;
}
.df-article__body figure { margin: 32px 0; }

/* ─── Article lists ─────────────────────────────────────────────────────
   Global reset (line 47/48) kills bullets + indent on every <ul>/<ol> so
   lists in chrome (nav, cards) render clean. Restore them inside the body
   of articles so editorial content reads as the writer intended. */
.df-article__body ul,
.df-article__body ol,
.df-editorial-body ul,
.df-editorial-body ol {
  margin: 18px 0 24px;
  padding-left: 28px;
  font-family: var(--df-serif);
  font-size: 19px;
  line-height: 1.65;
  color: var(--df-ink);
}
.df-article__body ul,
.df-editorial-body ul { list-style: disc; }
.df-article__body ol,
.df-editorial-body ol { list-style: decimal; }
.df-article__body li,
.df-editorial-body li {
  margin-bottom: 8px;
  padding-left: 4px;
}
.df-article__body li::marker,
.df-editorial-body li::marker { color: var(--df-accent, #c8102e); }
/* Nested lists: tighter and squared bullet so the hierarchy is obvious. */
.df-article__body li > ul,
.df-article__body li > ol,
.df-editorial-body li > ul,
.df-editorial-body li > ol {
  margin: 8px 0 8px;
  font-size: 1em;
}
.df-article__body li > ul,
.df-editorial-body li > ul { list-style: square; }
@media (max-width: 700px) {
  .df-article__body ul,
  .df-article__body ol,
  .df-editorial-body ul,
  .df-editorial-body ol {
    font-size: 17px;
    padding-left: 22px;
  }
}

/* ─── Article tables ────────────────────────────────────────────────────────
   Editorial content frequently embeds wage tables, league standings etc. The
   browser default lets cells word-break mid-syllable ("Bren-tford") to fit
   narrow columns. Instead: keep cells whole and let the table scroll
   horizontally when it can't fit. Standard pattern from NYT / Stripe docs.
   Applies to both regular posts and df_editorial long reads. */
.df-article__body .wp-block-table,
.df-editorial-body .wp-block-table {
  margin: 28px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* Fade hint on the right edge so the reader knows there's more to scroll. */
  background:
    linear-gradient(to right, transparent calc(100% - 24px), rgba(0,0,0,.05) 100%) right center / 24px 100% no-repeat;
}
.df-article__body .wp-block-table table,
.df-editorial-body .wp-block-table table {
  /* Fill the figure exactly and let columns size to content (table-layout:auto
     overrides the block editor's has-fixed-layout). width:100% caps the table at
     its container, so with wrapping cells it can never balloon past the frame —
     the old width:auto + min-width:100% + nowrap combination let a 5-column
     trivia table grow to ~3800px and scroll every column but the first off-screen.
     A table too wide even when wrapped falls back to the figure's overflow-x
     scroll rather than overrunning the page. */
  width: 100%;
  min-width: 0;
  table-layout: auto;
  border-collapse: collapse;
  font-family: var(--df-sans);
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
  margin: 0;
}
/* Bare <table> without the figure wrapper: width:max-content lets columns
   size to content, and display:block enables overflow-x scroll directly on
   the table itself when it exceeds the container. */
.df-article__body > table,
.df-editorial-body > table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  width: max-content;
  max-width: 100%;
  border-collapse: collapse;
  font-family: var(--df-sans);
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
  margin: 28px 0;
}
.df-article__body th,
.df-article__body td,
.df-editorial-body th,
.df-editorial-body td {
  padding: 11px 14px;
  border-bottom: 1px solid var(--df-rule, #e7e3dc);
  text-align: left;
  vertical-align: middle;
  /* Wrap at spaces, never mid-word. `nowrap` used to live here to stop
     "Bren-tford" breaking mid-syllable, but it also forbade prose cells from
     wrapping — a 5-column trivia table (full-sentence questions + context)
     then ballooned to ~3800px and scrolled every column but the first off the
     right edge. keep-all + overflow-wrap:normal keeps whole words intact
     ("Brentford" never splits) while letting long text flow onto more lines,
     so wide prose tables collapse back inside the container. */
  white-space: normal;
  word-break: keep-all;
  overflow-wrap: normal;
  hyphens: none;
}
.df-article__body th,
.df-editorial-body th {
  font-family: var(--df-sans);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--df-ink-muted, #6b6660);
  background: var(--df-paper-warm, #f6f3ec);
  border-bottom: 2px solid var(--df-rule);
  /* Headers wrap on word boundaries so "Wage Bill (£ Millions)" stacks
     vertically rather than forcing the whole column to its own width.
     Column width is then driven by the data cells, which are usually small
     numbers — letting all columns fit before the table needs to scroll. */
  white-space: normal;
  vertical-align: bottom;
  line-height: 1.25;
}
/* First column (usually the entity name) leans left + stays bold for scanability. */
.df-article__body td:first-child,
.df-editorial-body td:first-child { font-weight: 600; color: var(--df-ink); }
/* Numeric columns (everything except the first) right-align tabularly. */
.df-article__body th:not(:first-child),
.df-article__body td:not(:first-child),
.df-editorial-body th:not(:first-child),
.df-editorial-body td:not(:first-child) { text-align: right; }
.df-article__body tr:last-child td,
.df-editorial-body tr:last-child td { border-bottom: 0; }
/* Author-built tables often use a bold first row of <td> cells instead of a real
   <thead>/<th> header (as the block editor produces when the header option is
   off). Give that first row the same header treatment so it reads as a header
   and the empty top-left corner looks deliberate. Scoped with :not(:has(thead))
   so a table WITH a real header doesn't get its first data row shaded too. */
.df-article__body .wp-block-table table:not(:has(thead)) tr:first-child td,
.df-editorial-body .wp-block-table table:not(:has(thead)) tr:first-child td {
  background: var(--df-paper-warm, #f6f3ec);
  color: var(--df-ink);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--df-rule-strong, var(--df-rule));
}

@media (max-width: 700px) {
  .df-article__body th,
  .df-article__body td,
  .df-editorial-body th,
  .df-editorial-body td {
    padding: 7px 8px;
    font-size: 0.84rem;
  }
  .df-article__body th,
  .df-editorial-body th { font-size: 0.62rem; padding-top: 8px; padding-bottom: 8px; }
}

/* Desktop: editorial tables stay INSIDE the reading column and wrap to fit.
   They used to break out to a centred 1100px band "so wide tables don't clip",
   but on single/editorial pages that band overlapped the fixed DragonBet side
   rail (rail left edge ≈ centre+424px; a 1100px breakout reaches centre+550px),
   pushing the last column under the ad. Keeping tables in the ~700px column
   clears the rail entirely, and the wrapping cells above mean even a 5-column
   table fits without a horizontal scrollbar. A genuinely wide numeric table
   that still can't fit falls back to the figure's own overflow-x scroll. */
@media (min-width: 900px) {
  .df-article__body .wp-block-table,
  .df-editorial-body .wp-block-table {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    transform: none;
    background: none;
  }
}
.df-article__body figcaption {
  font-family: var(--df-sans);
  font-size: 13px;
  color: var(--df-ink-muted);
  margin-top: 10px;
  font-style: italic;
}

/* ─── Newsletter ────────────────────────────────────────────────────────── */
.df-newsletter {
  background: var(--df-ink);
  color: var(--df-paper);
  padding: 96px 0;
}
.df-newsletter__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.df-newsletter__kicker {
  font-family: var(--df-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--df-accent);
  margin-bottom: 20px;
}
.df-newsletter__headline {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.012em;
  margin-bottom: 18px;
  font-variation-settings: "opsz" 96;
}
.df-newsletter__dek {
  font-family: var(--df-sans);
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 36px;
  line-height: 1.5;
}
.df-newsletter__form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin: 0 auto;
}
.df-newsletter__input {
  flex: 1;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--df-paper);
  font-family: var(--df-sans);
  font-size: 15px;
  border-radius: 2px;
}
.df-newsletter__input::placeholder { color: rgba(255, 255, 255, 0.4); }
.df-newsletter__input:focus {
  outline: none;
  border-color: var(--df-accent);
}
.df-newsletter__btn {
  padding: 14px 26px;
  background: var(--df-accent);
  color: var(--df-paper);
  border: none;
  font-family: var(--df-sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: 2px;
  transition: background 0.15s ease;
}
.df-newsletter__btn:hover { background: var(--df-accent-dark); }

/* ─── Footer ────────────────────────────────────────────────────────────── */
.df-footer {
  background: var(--df-paper);
  padding: 56px 0 32px;
  border-top: 1px solid var(--df-rule);
  color: var(--df-ink-soft);
  font-size: 13px;
  font-family: var(--df-sans);
}
.df-footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.df-footer__brand {
  font-family: var(--df-serif);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.012em;
  margin-bottom: 14px;
}
.df-footer__about {
  line-height: 1.55;
  color: var(--df-ink-muted);
  max-width: 320px;
}
.df-footer__col-title {
  font-family: var(--df-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--df-ink-muted);
  margin-bottom: 14px;
}
.df-footer__list { display: flex; flex-direction: column; gap: 10px; }
.df-footer__bar {
  padding-top: 24px;
  border-top: 1px solid var(--df-rule);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--df-ink-muted);
}
.df-footer__family { display: flex; gap: 18px; }
.df-footer__family a { font-weight: 500; }

/* ─── 404 + search-empty ────────────────────────────────────────────────── */
.df-empty {
  padding: 120px 0;
  text-align: center;
}
.df-empty__headline {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1;
  letter-spacing: -0.012em;
  margin-bottom: 16px;
  font-variation-settings: "opsz" 144;
}
.df-empty__dek {
  font-family: var(--df-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--df-ink-soft);
  margin-bottom: 28px;
  font-variation-settings: "opsz" 36, "SOFT" 50;
}
.df-empty__cta {
  display: inline-block;
  font-family: var(--df-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--df-accent);
  border: 1px solid var(--df-accent);
  padding: 12px 24px;
  transition: background 0.15s ease, color 0.15s ease;
}
.df-empty__cta:hover {
  background: var(--df-accent);
  color: var(--df-paper);
}

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .df-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .df-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --df-gutter: var(--df-gutter-mobile); }

  .df-header__nav,
  .df-header__nav--primary { display: none; }
  /* No horizontal padding here: the parent .df-container already supplies the
     gutter, so the strip's first item lines up with the logo + page content
     instead of sitting further in. */
  .df-header__nav--secondary { gap: 18px; padding: 8px 0; }

  /* Sticky bottom nav: show on mobile, clear space so nothing hides behind it */
  .df-bottom-nav {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    background: rgba(255, 255, 255, 0.97);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--df-rule, #e7e3dc);
    padding-bottom: env(safe-area-inset-bottom);
  }
  body { padding-bottom: calc(56px + env(safe-area-inset-bottom)); }

  /* Mobile header: stop the wordmark being squashed by the right group.
     The PNG is 1200×148, scaling to 30px-tall gives ~243px wide which
     overshoots a 390px viewport once the Bet button + icons take their
     share. Shrink the logo a touch, tighten the row gap, and protect
     it from flex-compression. */
  .df-header__row { gap: 10px; padding-top: 12px; padding-bottom: 12px; }
  .df-wordmark { flex-shrink: 0; min-width: 0; }
  .df-wordmark__img { height: 22px; }
  .df-header__right { gap: 8px; flex-shrink: 0; }

  /* Hero: ease the bottom padding so the ad sits inside the section rhythm
     instead of floating in 88px of whitespace. */
  .df-hero { padding: 32px 0 28px; }
  .df-db-cta-wrap--home { margin: 0 auto 24px; }
  .df-btn-menu { display: inline-flex; align-items: center; justify-content: center; }

  .df-hero { padding: 40px 0 56px; }
  .df-hero__inner { grid-template-columns: 1fr; gap: 32px; }
  .df-hero__content { max-width: 100%; }
  .df-hero__image-wrap { aspect-ratio: 4/3; }

  .df-grid { grid-template-columns: 1fr; gap: 32px; }
  .df-grid--4 { grid-template-columns: 1fr; }

  .df-section-divider { padding: 28px 0 16px; }
  .df-section-divider__label { font-size: 26px; }

  .df-article { padding: 40px 0; }
  .df-article__body blockquote,
  .df-article__body .wp-block-quote { margin: 32px 0; padding: 0 16px; font-size: 24px; }

  .df-newsletter { padding: 64px 0; }
  .df-newsletter__form { flex-direction: column; }

  .df-footer__inner { grid-template-columns: 1fr; gap: 40px; }
  .df-footer__bar { flex-direction: column; gap: 16px; text-align: center; }
}

/* ─── Mobile nav drawer (toggled by JS) ─────────────────────────────────── */
.df-mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--df-paper);
  z-index: 999;
  padding: 80px 32px 32px;
  overflow-y: auto;
}
.df-mobile-nav.is-open { display: block; }
.df-mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--df-ink);
  padding: 8px;
}
.df-mobile-nav__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.df-mobile-nav__list a {
  display: block;
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.012em;
  color: var(--df-ink);
  padding: 12px 0;
  border-bottom: 1px solid var(--df-rule);
  font-variation-settings: "opsz" 60;
}
.df-mobile-nav__list a:hover { color: var(--df-accent); }

/* ─── The Three Destinations ────────────────────────────────────────────── */
.df-destinations {
  padding: 64px 0 80px;
  background: var(--df-paper);
}
.df-destinations__header { margin-bottom: 40px; }
.df-destinations__title {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 96;
  margin-top: 12px;
  color: var(--df-ink);
}
.df-destinations__kicker {
  font-family: var(--df-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--df-accent);
}
.df-destinations__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.df-destinations__grid--4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1100px) {
  .df-destinations__grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .df-destinations__grid--4 { grid-template-columns: 1fr; }
}
.df-destination {
  display: flex;
  flex-direction: column;
  background: var(--df-paper);
  border: 1px solid var(--df-rule);
  padding: 28px 24px 24px;
  transition: border-color 0.15s ease, transform 0.15s ease;
  color: var(--df-ink);
}
.df-destination:hover {
  border-color: var(--df-accent);
  transform: translateY(-2px);
  color: var(--df-ink);
}
.df-destination--alt {
  background: var(--df-ink);
  color: var(--df-paper);
  border-color: var(--df-ink);
}
.df-destination--alt:hover { border-color: var(--df-accent); color: var(--df-paper); }
.df-destination--alt .df-destination__name { color: var(--df-paper); }
.df-destination--alt .df-destination__headline { color: var(--df-paper); }
.df-destination--alt .df-destination__dek { color: rgba(255,255,255,0.7); }
.df-destination--alt .df-destination__hero-label { color: rgba(255,255,255,0.55); }
.df-destination--alt .df-destination__big-unit { color: rgba(255,255,255,0.4); }
.df-destination--alt .df-destination__head { border-bottom-color: rgba(255,255,255,0.1); }
.df-destination--alt .df-destination__list { border-top-color: rgba(255,255,255,0.1); }
.df-destination--alt .df-destination__list li { border-bottom-color: rgba(255,255,255,0.06); color: rgba(255,255,255,0.85); }
.df-destination--alt .df-destination__list li span:last-child { color: rgba(255,255,255,0.55); }

.df-destination__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--df-rule);
  margin-bottom: 22px;
  gap: 12px;
}
.df-destination__kicker {
  font-family: var(--df-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--df-ink-muted);
}
.df-destination--alt .df-destination__kicker { color: rgba(255,255,255,0.5); }
.df-destination__name {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.008em;
  font-variation-settings: "opsz" 36;
  color: var(--df-ink);
}
.df-destination__hero {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.df-destination__big-num {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: clamp(56px, 8vw, 88px);
  line-height: 0.85;
  letter-spacing: -0.025em;
  color: var(--df-accent);
  font-variant-numeric: tabular-nums;
  font-variation-settings: "opsz" 144;
}
.df-destination__big-unit {
  font-family: var(--df-serif);
  font-weight: 400;
  font-size: 32px;
  color: var(--df-ink-muted);
  font-variation-settings: "opsz" 60;
}
.df-destination__hero-label {
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--df-ink-muted);
  margin-bottom: 22px;
  line-height: 1.4;
}
.df-destination__headline {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.008em;
  color: var(--df-ink);
  margin-bottom: 12px;
  font-variation-settings: "opsz" 36;
}
.df-destination__dek {
  font-family: var(--df-sans);
  font-size: 13px;
  line-height: 1.5;
  color: var(--df-ink-soft);
  margin-bottom: 20px;
  flex-grow: 1;
}
.df-destination__list {
  list-style: none;
  margin: 0 0 22px;
  padding: 16px 0 0;
  border-top: 1px solid var(--df-rule);
}
.df-destination__list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: var(--df-sans);
  font-size: 12px;
  color: var(--df-ink-soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--df-rule);
}
.df-destination__list li:last-child { border-bottom: 0; }
.df-destination__list-num {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--df-accent);
  min-width: 64px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.008em;
  font-variation-settings: "opsz" 24;
}
.df-destination__list-stars {
  color: var(--df-accent);
  font-size: 13px;
  min-width: 64px;
  letter-spacing: 0.05em;
}
.df-destination__cta {
  font-family: var(--df-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--df-accent);
  align-self: flex-start;
}

/* ─── Paired widgets (Race Watch + On This Day) ─────────────────────────── */
.df-paired {
  padding: 56px 0;
  background: var(--df-paper-warm);
  border-top: 1px solid var(--df-rule);
  border-bottom: 1px solid var(--df-rule);
}
.df-paired__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.df-paired__module {
  background: var(--df-paper);
  border: 1px solid var(--df-rule);
  padding: 24px;
}
.df-paired__module-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--df-rule);
}
.df-paired__module-title {
  font-family: var(--df-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--df-accent);
}
.df-paired__module-link {
  font-family: var(--df-mono);
  font-size: 11px;
  color: var(--df-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.df-paired__module-link:hover { color: var(--df-accent); }
.df-paired__rows { display: flex; flex-direction: column; gap: 16px; }

.df-race-row { display: flex; flex-direction: column; gap: 6px; }
.df-race-row__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.df-race-row__club {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.008em;
  color: var(--df-ink);
  font-variation-settings: "opsz" 24;
}
.df-race-row__pct {
  font-family: var(--df-mono);
  font-size: 12px;
  color: var(--df-accent);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.df-race-bar {
  height: 6px;
  background: rgba(0,0,0,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.df-race-bar__fill {
  height: 100%;
  background: var(--df-accent);
  border-radius: 3px;
}
.df-race-row__meta {
  font-family: var(--df-mono);
  font-size: 10px;
  color: var(--df-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.df-otd-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--df-rule);
}
.df-otd-row:last-child { border-bottom: 0; padding-bottom: 0; }
.df-otd-row__year {
  font-family: var(--df-mono);
  font-size: 11px;
  color: var(--df-accent);
  font-weight: 600;
  letter-spacing: 0.08em;
}
.df-otd-row__story {
  font-family: var(--df-serif);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--df-ink);
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 24;
}
.df-otd-row__story em {
  font-style: italic;
  font-variation-settings: "opsz" 24, "SOFT" 50, "WONK" 1;
}

/* ─── Series module ─────────────────────────────────────────────────────── */
.df-series-archive { padding: 32px 0 64px; }
.df-series-list { display: flex; flex-direction: column; gap: 0; }
.df-series-piece {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--df-border, #e5e2dc);
}
.df-series-piece:first-child { border-top: 0; padding-top: 8px; }
.df-series-piece:last-child { padding-bottom: 8px; }
.df-series-piece__order {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  color: var(--df-accent, #c8102e);
  font-variant-numeric: tabular-nums;
  padding-top: 4px;
}
.df-series-piece__body { min-width: 0; }
.df-series-piece__title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 10px;
  color: var(--df-ink, #1a1a1a);
}
.df-series-piece__title a { color: inherit; text-decoration: none; }
.df-series-piece__title a:hover { color: var(--df-accent, #c8102e); }
.df-series-piece__dek {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--df-ink, #2a2a2a);
}
.df-series-piece__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--df-ink-muted, #6b6660);
}
.df-series-piece__meta a { color: inherit; text-decoration: none; }
.df-series-piece__byline { color: var(--df-ink, #2a2a2a); font-weight: 600; }
.df-series-piece__club { display: inline-flex; align-items: center; gap: 6px; }
@media (max-width: 700px) {
  .df-series-piece {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }
  .df-series-piece__order { font-size: 1.4rem; padding: 0; }
  .df-series-piece__title { font-size: 1.25rem; line-height: 1.3; }
  .df-series-piece__dek { font-size: .95rem; }
}

.df-series {
  padding: 64px 0 80px;
}
.df-series__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.df-series-card {
  display: block;
  background: var(--df-paper);
  border: 1px solid var(--df-rule);
  padding: 28px 24px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.df-series-card:hover { border-color: var(--df-accent); transform: translateY(-2px); }
.df-series-card__num {
  font-family: var(--df-mono);
  font-size: 11px;
  color: var(--df-accent);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.df-series-card__title {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -0.012em;
  margin: 14px 0 10px;
  color: var(--df-ink);
  font-variation-settings: "opsz" 36;
}
.df-series-card__dek {
  font-family: var(--df-sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--df-ink-soft);
  margin-bottom: 18px;
}
.df-series-card__latest {
  font-family: var(--df-mono);
  font-size: 11px;
  color: var(--df-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-top: 1px solid var(--df-rule);
  padding-top: 14px;
}
.df-series-card__latest strong {
  display: block;
  font-family: var(--df-serif);
  font-weight: 500;
  font-size: 14px;
  font-style: italic;
  color: var(--df-ink-soft);
  margin-top: 6px;
  letter-spacing: -0.005em;
  text-transform: none;
  font-variation-settings: "opsz" 24, "SOFT" 50;
}

/* ─── Managers archive — designed for scale ─────────────────────────────── */
.df-managers-hero {
  padding: 56px 0 32px;
  border-bottom: 1px solid var(--df-rule);
}
.df-managers-hero__kicker { margin-bottom: 18px; }
.df-managers-hero__title {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--df-ink);
  margin-bottom: 14px;
  font-variation-settings: "opsz" 96;
}
.df-managers-hero__dek {
  font-family: var(--df-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
  color: var(--df-ink-soft);
  max-width: 700px;
  margin-bottom: 28px;
  font-variation-settings: "opsz" 36, "SOFT" 50;
}
.df-managers-search {
  display: flex;
  gap: 8px;
  max-width: 560px;
  margin-bottom: 20px;
}
.df-managers-search__input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--df-rule-strong);
  font-family: var(--df-sans);
  font-size: 15px;
  color: var(--df-ink);
  background: var(--df-paper);
}
.df-managers-search__input:focus { outline: none; border-color: var(--df-accent); }
.df-managers-search__btn {
  padding: 12px 22px;
  background: var(--df-ink);
  color: var(--df-paper);
  border: none;
  font-family: var(--df-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
}
.df-managers-search__btn:hover { background: var(--df-accent); }
.df-managers-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.df-managers-filter__btn {
  font-family: var(--df-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 14px;
  border: 1px solid var(--df-rule-strong);
  color: var(--df-ink-soft);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.df-managers-filter__btn:hover { border-color: var(--df-accent); color: var(--df-accent); }
.df-managers-filter__btn--active {
  background: var(--df-ink);
  color: var(--df-paper);
  border-color: var(--df-ink);
}

/* Featured rail */
.df-managers-featured {
  padding: 56px 0;
  background: var(--df-paper-warm);
  border-bottom: 1px solid var(--df-rule);
}
.df-managers-featured__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.df-featured-card {
  display: flex;
  flex-direction: column;
  background: var(--df-paper);
  border: 1px solid var(--df-rule);
  transition: border-color 0.15s ease, transform 0.15s ease;
  color: var(--df-ink);
}
.df-featured-card:hover {
  border-color: var(--df-accent);
  transform: translateY(-2px);
  color: var(--df-ink);
}
.df-featured-card__photo {
  width: 100%;
  aspect-ratio: 1;
  background-size: cover;
  background-position: center top;
  background-color: var(--df-paper-warm);
}
.df-featured-card__photo--placeholder { background: var(--df-paper-warm); }
.df-featured-card__body {
  padding: 16px;
}
.df-featured-card__name {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.008em;
  line-height: 1.15;
  margin-bottom: 4px;
  font-variation-settings: "opsz" 24;
}
.df-featured-card__club {
  font-family: var(--df-sans);
  font-size: 12px;
  color: var(--df-ink-muted);
  margin-bottom: 14px;
}
.df-featured-card__score {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.df-featured-card__score-num {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  color: var(--df-accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.012em;
  font-variation-settings: "opsz" 48;
}
.df-featured-card__score-label {
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--df-ink-muted);
}

/* Listing area */
.df-managers-list {
  padding: 48px 0 80px;
}
.df-managers-count {
  font-family: var(--df-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--df-ink-muted);
}

/* A-Z nav */
.df-az-nav {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 32px;
  padding: 12px 0;
  border-top: 1px solid var(--df-rule);
  border-bottom: 1px solid var(--df-rule);
  position: sticky;
  top: 110px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  z-index: 5;
}
.df-az-nav__letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-family: var(--df-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--df-ink);
  transition: color 0.15s ease, background 0.15s ease;
  text-transform: uppercase;
}
.df-az-nav__letter:hover { color: var(--df-accent); }
.df-az-nav__letter--empty {
  color: var(--df-rule-strong);
  cursor: default;
  pointer-events: none;
}

.df-letter-group {
  margin-bottom: 40px;
  scroll-margin-top: 160px;
}
.df-letter-group__heading {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--df-accent);
  margin-bottom: 16px;
  font-variation-settings: "opsz" 60;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--df-ink);
}

.df-manager-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
}
.df-manager-list-item { padding: 0; }
.df-manager-list-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--df-rule);
  transition: background 0.12s ease;
}
.df-manager-list-link:hover {
  background: var(--df-paper-warm);
  color: var(--df-ink);
}
.df-manager-list__photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center top;
  background-color: var(--df-paper-warm);
  flex-shrink: 0;
}
.df-manager-list__photo--placeholder { background: var(--df-paper-warm); }
.df-manager-list__info { min-width: 0; flex: 1; }
.df-manager-list__name {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.008em;
  color: var(--df-ink);
  font-variation-settings: "opsz" 24;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.df-manager-list-link:hover .df-manager-list__name { color: var(--df-accent); }
.df-manager-list__meta {
  font-family: var(--df-sans);
  font-size: 12px;
  color: var(--df-ink-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 1024px) {
  .df-managers-featured__grid { grid-template-columns: repeat(2, 1fr); }
  .df-manager-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .df-managers-featured__grid { grid-template-columns: 1fr; }
  .df-manager-list { grid-template-columns: 1fr; }
  .df-az-nav { position: static; }
  .df-letter-group__heading { font-size: 32px; }
}

/* ─── Manager Wikipedia bio ─────────────────────────────────────────────── */
.df-manager-wiki {
  background: var(--df-paper);
  padding: 0;
  margin-bottom: 48px;
}
.df-manager-wiki__description {
  font-family: var(--df-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--df-accent);
  margin-bottom: 14px;
  font-weight: 600;
}
.df-manager-wiki__extract {
  font-family: var(--df-serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--df-ink-soft);
  margin-bottom: 14px;
  font-variation-settings: "opsz" 24;
}
.df-manager-wiki__extract p {
  margin-bottom: 14px;
}
.df-manager-wiki__source {
  font-family: var(--df-mono);
  font-size: 11px;
  color: var(--df-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.df-manager-wiki__source a {
  color: var(--df-accent);
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.df-manager-wiki__source a:hover { border-bottom-color: var(--df-accent); }

/* ─── Manager profile page ──────────────────────────────────────────────── */
.df-manager-hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--df-rule);
}
.df-manager-hero__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.df-manager-hero__photo-wrap { flex-shrink: 0; }
.df-manager-hero__photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  background: var(--df-paper-warm);
}
.df-manager-hero__content { flex: 1; min-width: 0; }
.df-manager-hero__kicker { margin-bottom: 16px; }
.df-manager-hero__name {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--df-ink);
  margin-bottom: 18px;
  font-variation-settings: "opsz" 96;
}
.df-manager-hero__meta {
  font-family: var(--df-sans);
  font-size: 14px;
  color: var(--df-ink-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.df-manager-hero__meta a { border-bottom: 1px solid transparent; transition: border-color 0.15s ease; }
.df-manager-hero__meta a:hover { border-bottom-color: var(--df-accent); color: var(--df-accent); }
.df-manager-hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.df-manager-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.df-manager-stat__num {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--df-ink);
  font-variant-numeric: tabular-nums;
  font-variation-settings: "opsz" 60;
}
.df-manager-stat__num-unit {
  font-size: 18px;
  color: var(--df-ink-muted);
  font-weight: 400;
}
.df-manager-stat__label {
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--df-ink-muted);
}
.df-manager-stat__label a:hover { color: var(--df-accent); }
.df-manager-body {
  /* Vertical only — keep .df-container's left/right gutter intact. */
  padding-top: 48px;
  padding-bottom: 80px;
}
.df-manager-section { margin-bottom: 48px; }
.df-manager-section--placeholder {
  padding: 28px;
  background: var(--df-paper-warm);
  border: 1px dashed var(--df-rule-strong);
}
.df-manager-section--placeholder .df-section-divider { padding-top: 0; }
.df-manager-aside__placeholder {
  font-family: var(--df-sans);
  font-size: 14px;
  color: var(--df-ink-soft);
  line-height: 1.55;
}
.df-manager-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.df-manager-form__pills {
  display: flex;
  gap: 6px;
}
.df-manager-form__pills .df-form__w,
.df-manager-form__pills .df-form__d,
.df-manager-form__pills .df-form__l {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 3px;
  font-family: var(--df-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--df-paper);
}
.df-manager-form__pills .df-form__w { background: var(--df-positive); }
.df-manager-form__pills .df-form__d { background: var(--df-ink-muted); }
.df-manager-form__pills .df-form__l { background: var(--df-accent); }
.df-manager-form__note {
  font-family: var(--df-sans);
  font-size: 14px;
  color: var(--df-ink-soft);
}
.df-manager-source-note {
  font-family: var(--df-mono);
  font-size: 11px;
  color: var(--df-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--df-rule);
}

/* ─── Transfer Rumours destination ──────────────────────────────────────── */
.df-rumours-hero {
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--df-rule);
}
.df-rumours-hero__kicker { margin-bottom: 18px; }
.df-rumours-hero__title {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--df-ink);
  margin-bottom: 18px;
  font-variation-settings: "opsz" 144;
}
.df-rumours-hero__dek {
  font-family: var(--df-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  color: var(--df-ink-soft);
  max-width: 720px;
  margin-bottom: 18px;
  font-variation-settings: "opsz" 36, "SOFT" 50;
}
.df-rumours-hero__meta {
  font-family: var(--df-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--df-ink-muted);
}

.df-rumours-body { padding: 48px 0 80px; }
.df-rumours-list { margin-bottom: 56px; }
.df-rumour-row {
  display: grid;
  grid-template-columns: 200px 1fr 100px;
  gap: 24px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid var(--df-rule);
}
.df-rumour-row__source { display: flex; flex-direction: column; gap: 4px; }
.df-rumour-row__publisher {
  font-family: var(--df-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--df-ink);
}
.df-rumour-row__stars {
  color: var(--df-accent);
  font-size: 13px;
  letter-spacing: 0.05em;
}
.df-rumour-row__headline {
  font-family: var(--df-serif);
  font-weight: 500;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.005em;
  font-variation-settings: "opsz" 24;
  margin: 0;
}
.df-rumour-row__headline a {
  color: var(--df-ink);
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.df-rumour-row__headline a:hover {
  color: var(--df-accent);
  border-bottom-color: var(--df-accent);
}
.df-rumour-row__ago {
  font-family: var(--df-mono);
  font-size: 11px;
  color: var(--df-ink-muted);
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.df-rumours-publishers { margin-top: 56px; }
.df-rumours-publishers__title {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.012em;
  margin-bottom: 24px;
  font-variation-settings: "opsz" 60;
}
.df-rumours-publishers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.df-pub-card {
  background: var(--df-paper-warm);
  padding: 18px 20px;
  border: 1px solid var(--df-rule);
}
.df-pub-card__name {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.008em;
  color: var(--df-ink);
  font-variation-settings: "opsz" 24;
  margin-bottom: 6px;
}
.df-pub-card__count {
  font-family: var(--df-mono);
  font-size: 11px;
  color: var(--df-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.df-pub-card__stars {
  color: var(--df-accent);
  font-size: 13px;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .df-rumour-row { grid-template-columns: 1fr; gap: 6px; }
  .df-rumour-row__ago { text-align: left; }
  .df-rumours-publishers__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Companies House panel on club hub ─────────────────────────────────── */
.df-club-ch {
  background: var(--df-paper-warm);
  padding: 24px;
  border-left: 4px solid var(--df-accent);
  margin-bottom: 32px;
}
.df-club-ch__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}
.df-club-ch__kicker {
  font-family: var(--df-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--df-accent);
}
.df-club-ch__flag--danger {
  font-family: var(--df-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--df-paper);
  background: var(--df-accent);
  padding: 4px 10px;
  border-radius: 2px;
}
.df-club-ch__title {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.008em;
  margin-bottom: 18px;
  font-variation-settings: "opsz" 36;
}
.df-club-ch__numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--df-rule);
  margin-bottom: 16px;
}
.df-club-ch__num { display: flex; flex-direction: column; gap: 4px; }
.df-club-ch__num-label {
  font-family: var(--df-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--df-ink-muted);
}
.df-club-ch__num-val {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.012em;
  color: var(--df-ink);
  font-variant-numeric: tabular-nums;
  font-variation-settings: "opsz" 36;
}
.df-club-ch__num-val--loss { color: var(--df-accent); }
.df-club-ch__num-val--profit { color: var(--df-positive); }
.df-club-ch__year {
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--df-ink-muted);
  margin-bottom: 16px;
}
.df-club-ch__list {
  font-family: var(--df-sans);
  font-size: 13px;
  margin-bottom: 16px;
}
.df-club-ch__list dt {
  font-family: var(--df-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--df-ink-muted);
  margin-top: 8px;
  margin-bottom: 2px;
}
.df-club-ch__list dt:first-child { margin-top: 0; }
.df-club-ch__list dd {
  color: var(--df-ink);
  margin: 0;
  line-height: 1.45;
}
.df-club-ch__list code {
  font-family: var(--df-mono);
  font-size: 11px;
  color: var(--df-ink-muted);
  background: rgba(0,0,0,0.04);
  padding: 1px 4px;
  border-radius: 2px;
}
.df-club-ch__filings {
  border-top: 1px solid var(--df-rule);
  padding-top: 14px;
  margin-bottom: 14px;
}
.df-club-ch__filings h4 {
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--df-ink-muted);
  margin-bottom: 8px;
}
.df-club-ch__filings ul { list-style: none; padding: 0; margin: 0; }
.df-club-ch__filings li {
  display: flex;
  gap: 10px;
  padding: 4px 0;
  font-family: var(--df-sans);
  font-size: 12px;
}
.df-club-ch__filing-date {
  font-family: var(--df-mono);
  color: var(--df-ink-muted);
  flex-shrink: 0;
  min-width: 84px;
}
.df-club-ch__filing-desc {
  color: var(--df-ink-soft);
  line-height: 1.4;
}
.df-club-ch__source {
  font-family: var(--df-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.df-club-ch__source a { color: var(--df-accent); }

/* ─── Football Finance destination ──────────────────────────────────────── */
.df-finance-hero {
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--df-rule);
}
.df-finance-hero__kicker { margin-bottom: 18px; }
.df-finance-hero__title {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--df-ink);
  margin-bottom: 18px;
  font-variation-settings: "opsz" 144;
}
.df-finance-hero__dek {
  font-family: var(--df-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  color: var(--df-ink-soft);
  max-width: 720px;
  margin-bottom: 32px;
  font-variation-settings: "opsz" 36, "SOFT" 50;
}
.df-finance-spotlight {
  padding: 56px 0;
  background: var(--df-ink);
  color: var(--df-paper);
}
.df-finance-spotlight__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}
.df-finance-spotlight__kicker {
  font-family: var(--df-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--df-accent);
  margin-bottom: 14px;
}
.df-finance-spotlight__name {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--df-paper);
  margin-bottom: 10px;
  font-variation-settings: "opsz" 96;
}
.df-finance-spotlight__year {
  font-family: var(--df-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
}
.df-finance-spotlight__owner {
  font-family: var(--df-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.df-finance-spotlight__cta {
  font-family: var(--df-sans);
  font-size: 13px;
  margin-top: 14px;
}
.df-finance-spotlight__cta a {
  color: var(--df-accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.df-finance-spotlight__cta a:hover { color: var(--df-paper); }
.df-finance-spotlight__numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.df-finance-stat {
  display: flex;
  flex-direction: column;
}
.df-finance-stat__label {
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(15,15,15,0.55);
  margin-bottom: 8px;
}
.df-finance-stat__num {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.018em;
  color: var(--df-ink, #0f0f0f);
  font-variant-numeric: tabular-nums;
  font-variation-settings: "opsz" 60;
}
.df-finance-stat__note {
  font-family: var(--df-sans);
  font-size: 11px;
  color: rgba(15,15,15,0.6);
  margin-top: 6px;
  line-height: 1.4;
}
.df-finance-stat__num--loss { color: var(--df-accent); }
.df-finance-stat__num--profit { color: var(--df-positive); }
.df-finance-na {
  font-family: var(--df-sans);
  font-size: 14px;
  font-weight: 400;
  color: rgba(15,15,15,0.45);
  letter-spacing: 0;
}

/* When stats sit inside the dark spotlight block, invert to paper */
.df-finance-spotlight .df-finance-stat__label { color: rgba(255,255,255,0.55); }
.df-finance-spotlight .df-finance-stat__num { color: var(--df-paper); }
.df-finance-spotlight .df-finance-stat__note { color: rgba(255,255,255,0.6); }
.df-finance-spotlight .df-finance-na { color: rgba(255,255,255,0.45); }

/* Year picker — tab strip above club stats letting readers swap years */
.df-year-picker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--df-rule);
}
.df-year-picker__label {
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--df-ink-muted, rgba(15,15,15,0.6));
  margin-right: 10px;
}
.df-year-picker__tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-family: var(--df-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--df-ink, #0f0f0f);
  text-decoration: none;
  border: 1px solid var(--df-rule);
  border-radius: 999px;
  background: transparent;
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
}
.df-year-picker__tab:hover {
  border-color: var(--df-ink);
  background: var(--df-ink);
  color: var(--df-paper);
}
.df-year-picker__tab.is-active {
  background: var(--df-accent);
  color: var(--df-paper);
  border-color: var(--df-accent);
}
.df-year-picker__tag {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  padding: 1px 5px;
  border: 1px solid currentColor;
  border-radius: 3px;
}
.df-year-picker__tab.is-active .df-year-picker__tag { opacity: 1; }

/* Wage inflation D3 chart container */
.df-wage-chart {
  background: var(--df-paper, #faf8f3);
  border: 1px solid var(--df-rule);
  padding: 16px;
  margin: 20px 0;
  overflow: hidden;
}
.df-wage-chart svg { display: block; }

/* Administration history row colour cues */
.df-admin-row--liquidated { background: #fbe9e9; }
.df-admin-row--ongoing { background: #fff8e8; }
.df-admin-status {
  display: inline-block;
  padding: 2px 8px;
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
  border: 1px solid var(--df-rule);
  background: var(--df-paper);
}
.df-admin-status--liquidated { background: var(--df-accent, #cc0000); color: var(--df-paper); border-color: var(--df-accent); }
.df-admin-status--ongoing { background: #fff8e8; border-color: #ecd58a; }
.df-admin-status--survived { background: #e7f5ec; border-color: #aed4be; color: #0a5a2c; }

/* Match report disclosure footer */
.df-fixture-ai-disclosure {
  font-family: var(--df-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--df-ink-muted, rgba(15,15,15,0.55));
  margin: 18px 0 0;
  padding: 10px 0;
  border-top: 1px solid var(--df-rule);
}
.df-fixture-ai-disclosure a { color: var(--df-accent, #cc0000); text-decoration: none; }
.df-fixture-ai-disclosure a:hover { text-decoration: underline; }

/* Goal time chart — horizontal bars per 15-min band */
.df-goal-times__chart {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 32px;
}
.df-goal-times__row {
  display: grid;
  grid-template-columns: 60px 1fr 130px;
  align-items: center;
  gap: 14px;
  font-family: var(--df-sans);
  font-size: 14px;
}
.df-goal-times__band {
  font-family: var(--df-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--df-ink-muted, rgba(15,15,15,0.6));
  text-align: right;
}
.df-goal-times__bar-wrap {
  height: 22px;
  background: var(--df-rule);
  border-radius: 2px;
  overflow: hidden;
}
.df-goal-times__bar {
  display: block;
  height: 100%;
  background: var(--df-ink, #0f0f0f);
}
.df-goal-times__row:nth-child(n+5) .df-goal-times__bar { background: var(--df-accent, #cc0000); opacity: 0.85; }
.df-goal-times__num {
  font-family: var(--df-mono);
  font-size: 13px;
  color: var(--df-ink-muted, rgba(15,15,15,0.7));
}
.df-goal-times__num strong { font-family: var(--df-serif); font-size: 16px; color: var(--df-ink); }
.df-goal-times__summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0 36px;
}
@media (max-width: 800px) {
  .df-goal-times__summary { grid-template-columns: 1fr; }
  .df-goal-times__row { grid-template-columns: 50px 1fr 100px; }
}

/* Player contract banner */
.df-player-contract-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: baseline;
  padding: 12px 16px;
  margin: 0 0 24px;
  background: var(--df-paper, #faf8f3);
  border: 1px solid var(--df-rule);
  border-left: 3px solid var(--df-ink, #0f0f0f);
  border-radius: 2px;
  font-family: var(--df-sans);
  font-size: 14px;
}
.df-player-contract-banner strong { font-family: var(--df-serif); font-weight: 700; }
.df-player-contract-banner a { color: var(--df-accent, #cc0000); text-decoration: none; }
.df-player-contract-banner a:hover { text-decoration: underline; }
.df-player-contract-banner--warn {
  border-left-color: var(--df-accent, #cc0000);
  background: #fff8e8;
}
.df-player-contract-banner--free {
  border-left-color: var(--df-accent, #cc0000);
  background: #fbe9e9;
}

/* Player physical/role attribute block */
.df-player-physical {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 18px;
  padding: 16px 0;
}
.df-player-physical__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.df-player-physical__label {
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--df-ink-muted, rgba(15,15,15,0.55));
}
.df-player-physical__val {
  font-family: var(--df-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--df-ink);
  font-variant-numeric: tabular-nums;
}

/* Fixture team link (wrapping crest + name) */
.df-fixture-hero__team-link {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}
.df-fixture-hero__team-link:hover .df-fixture-hero__name { color: var(--df-accent, #cc0000); }

/* Manager archive featured card with two-anchor pattern */
.df-featured-card { display: flex; flex-direction: column; }
.df-featured-card__photo-link { display: block; text-decoration: none; }
.df-featured-card__name {
  display: block;
  font-family: var(--df-serif);
  font-weight: 600;
  text-decoration: none;
  color: var(--df-ink);
}
.df-featured-card__name:hover { color: var(--df-accent, #cc0000); }
.df-featured-card__club {
  display: block;
  font-family: var(--df-sans);
  font-size: 13px;
  text-decoration: none;
  color: var(--df-ink-muted, rgba(15,15,15,0.65));
  border-bottom: 1px dotted transparent;
}
a.df-featured-card__club:hover {
  color: var(--df-accent, #cc0000);
  border-bottom-color: currentColor;
}

/* Article aside — "Track this club" feature prominence widget on single posts */
.df-article-aside {
  margin: 56px 0 40px;
  padding: 26px 0 0;
  border-top: 2px solid var(--df-ink, #0f0f0f);
}
.df-article-aside__title {
  font-family: var(--df-serif);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.012em;
  margin: 0 0 6px;
  color: var(--df-ink);
  font-variation-settings: "opsz" 48;
}
.df-article-aside__dek {
  font-family: var(--df-sans);
  font-size: 14px;
  color: var(--df-ink-muted, rgba(15,15,15,0.65));
  margin: 0 0 22px;
}
.df-article-aside__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 900px) { .df-article-aside__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .df-article-aside__grid { grid-template-columns: 1fr; } }
.df-article-aside__tile {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 18px 20px;
  background: var(--df-paper, #faf8f3);
  border: 1px solid var(--df-rule);
  text-decoration: none;
  transition: background 140ms ease, border-color 140ms ease;
  min-height: 130px;
}
.df-article-aside__tile:hover {
  background: var(--df-ink, #0f0f0f);
  border-color: var(--df-ink);
}
.df-article-aside__tile:hover .df-article-aside__name { color: var(--df-paper); }
.df-article-aside__tile:hover .df-article-aside__dek-mini { color: rgba(255,255,255,0.7); }
.df-article-aside__tile:hover .df-article-aside__stat { color: rgba(255,255,255,0.85); }
.df-article-aside__tile--dashboard {
  background: var(--df-ink, #0f0f0f);
  border-color: var(--df-ink);
}
.df-article-aside__tile--dashboard .df-article-aside__name { color: var(--df-paper); }
.df-article-aside__tile--dashboard .df-article-aside__dek-mini { color: rgba(255,255,255,0.7); }
.df-article-aside__tile--dashboard:hover { background: var(--df-accent, #cc0000); border-color: var(--df-accent); }
.df-article-aside__kicker {
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--df-accent, #cc0000);
}
.df-article-aside__name {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.1;
  color: var(--df-ink);
  font-variation-settings: "opsz" 32;
}
.df-article-aside__dek-mini {
  font-family: var(--df-sans);
  font-size: 13px;
  line-height: 1.45;
  color: var(--df-ink-muted, rgba(15,15,15,0.65));
  margin-top: auto;
}
.df-article-aside__stat {
  font-family: var(--df-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--df-ink, #0f0f0f);
  margin-top: auto;
}
.df-article-aside__stat--danger { color: var(--df-accent, #cc0000); }

/* Citation block — AI / academic / journalism reference at the bottom of finance pages */
.df-citation {
  background: var(--df-paper, #faf8f3);
  border: 1px solid var(--df-rule, #e5e2d8);
  border-left: 3px solid var(--df-ink, #0f0f0f);
  padding: 22px 24px;
  margin: 48px 0 24px;
  border-radius: 2px;
}
.df-citation__heading {
  font-family: var(--df-serif);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 4px;
  letter-spacing: -0.012em;
  color: var(--df-ink, #0f0f0f);
}
.df-citation__lede {
  font-family: var(--df-sans);
  font-size: 12px;
  color: var(--df-ink-muted, rgba(15,15,15,0.6));
  margin: 0 0 16px;
}
.df-citation__rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.df-citation__row {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.df-citation__label {
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--df-ink-muted, rgba(15,15,15,0.55));
}
.df-citation__text,
.df-citation__bibtex {
  font-family: var(--df-mono);
  font-size: 12px;
  line-height: 1.55;
  color: var(--df-ink, #0f0f0f);
  background: transparent;
  padding: 0;
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
}
.df-citation__row--collapsible summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.df-citation__row--collapsible summary::-webkit-details-marker { display: none; }
.df-citation__expand {
  font-family: var(--df-mono);
  font-size: 10px;
  color: var(--df-accent, #cc0000);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.df-citation__row--collapsible[open] .df-citation__expand::before { content: 'hide'; }
.df-citation__row--collapsible[open] .df-citation__expand { font-size: 0; }
.df-citation__row--collapsible[open] .df-citation__expand::before { font-size: 10px; }
.df-citation__bibtex {
  background: #f4f1e7;
  padding: 12px 14px;
  margin-top: 8px;
  border-radius: 2px;
  overflow-x: auto;
}
.df-citation__foot {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--df-rule, #e5e2d8);
  font-family: var(--df-mono);
  font-size: 11px;
}
.df-citation__foot a {
  color: var(--df-accent, #cc0000);
  text-decoration: none;
  word-break: break-all;
}

/* Rumour scorecard — Tier 1 journalist accuracy table */
.df-rumour-table th { font-family: var(--df-mono); font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; }
.df-rumour-handle {
  display: inline-block;
  margin-left: 6px;
  font-family: var(--df-mono);
  font-size: 11px;
  color: var(--df-ink-muted, rgba(15,15,15,0.55));
  text-decoration: none;
}
.df-rumour-handle:hover { color: var(--df-accent, #cc0000); }
.df-rumour-score {
  font-family: var(--df-serif);
  font-weight: 700;
  font-size: 17px;
  font-variation-settings: "opsz" 24;
}
.df-rumour-score--high { color: #0a7d3a; }
.df-rumour-score--mid  { color: #b87a00; }
.df-rumour-score--low  { color: var(--df-accent, #cc0000); }
.df-rumour-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 18px 0 32px;
  font-family: var(--df-mono);
  font-size: 11px;
  color: var(--df-ink-muted, rgba(15,15,15,0.7));
}
.df-rumour-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  margin-right: 7px;
  vertical-align: middle;
}
.df-rumour-dot--high { background: #0a7d3a; }
.df-rumour-dot--mid  { background: #b87a00; }
.df-rumour-dot--low  { background: var(--df-accent, #cc0000); }
.df-rumour-empty {
  background: #fff8e8;
  border: 1px solid #ecd58a;
  padding: 18px 22px;
  margin: 0 0 28px;
  border-radius: 3px;
}
.df-rumour-empty h3 {
  margin: 0 0 8px;
  font-family: var(--df-serif);
  font-size: 18px;
  font-weight: 600;
}
.df-rumour-empty p {
  font-family: var(--df-sans);
  font-size: 14px;
  line-height: 1.55;
  margin: 0 0 8px;
}

/* ── Club dashboard at /teams/{slug}/ ───────────────────────────────── */
.df-club-dash__hero {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--df-rule);
}
.df-club-dash__heroinner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.df-club-dash__heroleft {
  display: flex;
  align-items: center;
  gap: 24px;
}
.df-club-dash__league {
  font-family: var(--df-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--df-ink-muted, rgba(15,15,15,0.55));
  display: block;
  margin-bottom: 6px;
}
.df-club-dash__title {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.0;
  letter-spacing: -0.018em;
  margin: 0 0 8px;
  color: var(--df-ink);
  font-variation-settings: "opsz" 96;
}
.df-club-dash__metaline {
  display: flex;
  gap: 16px;
  font-family: var(--df-sans);
  font-size: 13px;
  color: var(--df-ink-muted, rgba(15,15,15,0.65));
}
.df-club-dash__heroright {
  display: flex;
  gap: 32px;
  align-items: flex-end;
}
.df-hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 64px;
}
.df-hero-stat__num {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--df-ink);
  font-variant-numeric: tabular-nums;
  font-variation-settings: "opsz" 60;
}
.df-hero-stat__suf {
  font-family: var(--df-sans);
  font-size: 14px;
  font-weight: 500;
  margin-left: 2px;
  vertical-align: super;
  color: var(--df-ink-muted, rgba(15,15,15,0.55));
}
.df-hero-stat__label {
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--df-ink-muted, rgba(15,15,15,0.55));
  margin-top: 4px;
}
.df-hero-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.df-form-row {
  display: inline-flex;
  gap: 4px;
}
.df-form-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 2px;
  font-family: var(--df-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--df-paper);
  background: var(--df-ink-muted, rgba(15,15,15,0.4));
}
.df-form-pill--w { background: #0a7d3a; }
.df-form-pill--d { background: rgba(15,15,15,0.5); }
.df-form-pill--l { background: var(--df-accent, #cc0000); }

@media (max-width: 900px) {
  .df-club-dash__heroinner { grid-template-columns: 1fr; gap: 24px; }
  .df-club-dash__heroright { flex-wrap: wrap; gap: 22px; }
}

/* Body grid */
.df-club-dash__body { padding: 36px 0 60px; }
.df-dash-row {
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
}
.df-dash-row--2-1 { grid-template-columns: 2fr 1fr; }
.df-dash-row--2   { grid-template-columns: 1fr 1fr; }
.df-dash-row--3   { grid-template-columns: 1fr 1fr 1fr; }
/* --4 auto-fits so the row flows cleanly when a tile (e.g. backroom) isn't rendered */
.df-dash-row--4   { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.df-dash-row--full { grid-template-columns: 1fr; }

@media (max-width: 900px) {
  .df-dash-row--2-1, .df-dash-row--2, .df-dash-row--3 { grid-template-columns: 1fr; }
}

.df-dash-scorer__bar--assists { background: var(--df-accent-soft, #6aa2d8); }

.df-dash-tile {
  background: transparent;
  border: 1px solid var(--df-rule);
  border-radius: 3px;
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
}
.df-dash-tile--ink {
  background: var(--df-ink, #0f0f0f);
  border-color: var(--df-ink);
  color: var(--df-paper);
}
.df-dash-tile__header {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.df-dash-tile__kicker {
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--df-accent, #cc0000);
}
.df-dash-tile--ink .df-dash-tile__kicker { color: var(--df-accent); }
.df-dash-tile__title {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.012em;
  margin: 0;
  font-variation-settings: "opsz" 36;
}
.df-dash-tile--ink .df-dash-tile__title { color: var(--df-paper); }
.df-dash-tile__cta {
  margin-left: auto;
  font-family: var(--df-mono);
  font-size: 11px;
  color: var(--df-accent);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.df-dash-tile__cta:hover { text-decoration: underline; }
.df-dash-tile__empty {
  font-family: var(--df-sans);
  font-size: 13px;
  color: var(--df-ink-muted, rgba(15,15,15,0.5));
  margin: 0;
  font-style: italic;
}

/* League snippet table */
.df-dash-table { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.df-dash-table th {
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--df-ink-muted, rgba(15,15,15,0.5));
  padding: 6px 4px;
  text-align: left;
  border-bottom: 1px solid var(--df-rule);
}
.df-dash-table td {
  font-family: var(--df-sans);
  font-size: 14px;
  padding: 8px 4px;
  border-bottom: 1px solid var(--df-rule);
}
.df-dash-table tr:last-child td { border-bottom: none; }
.df-dash-table__focus { background: var(--df-ink); }
.df-dash-table__focus td { color: var(--df-paper); }
.df-dash-table__focus td strong { color: var(--df-paper); }

/* Next match panel */
.df-nextmatch {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.df-nextmatch__date {
  font-family: var(--df-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.df-nextmatch__time {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.018em;
  color: var(--df-paper);
  font-variant-numeric: tabular-nums;
  font-variation-settings: "opsz" 96;
}
.df-nextmatch__line {
  font-family: var(--df-serif);
  font-size: 18px;
  color: var(--df-paper);
  margin: 6px 0 4px;
}
.df-nextmatch__line strong { display: block; font-weight: 700; font-size: 22px; }
.df-nextmatch__venue {
  font-family: var(--df-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}
.df-nextmatch__count {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-family: var(--df-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--df-accent);
}

/* Top scorers list with inline bars */
.df-dash-scorers { list-style: none; margin: 0; padding: 0; }
.df-dash-scorer {
  display: grid;
  grid-template-columns: 1fr 80px 28px;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid var(--df-rule);
  position: relative;
}
.df-dash-scorer:last-child { border-bottom: none; }
.df-dash-scorer__name {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 14px;
}
.df-dash-scorer__bar {
  height: 6px;
  background: var(--df-ink);
  border-radius: 1px;
  justify-self: start;
}
.df-dash-scorer__num {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 16px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Recent results list */
.df-dash-results { list-style: none; margin: 0; padding: 0; }
.df-dash-result {
  display: grid;
  grid-template-columns: 22px 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-family: var(--df-sans);
  font-size: 13.5px;
  border-bottom: 1px solid var(--df-rule);
}
.df-dash-result:last-child { border-bottom: none; }
.df-dash-result__score {
  font-family: var(--df-serif);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.df-dash-result__date {
  font-family: var(--df-mono);
  font-size: 11px;
  color: var(--df-ink-muted, rgba(15,15,15,0.55));
}

/* Points trajectory */
.df-dash-traj { display: flex; flex-direction: column; gap: 10px; }
.df-dash-traj svg { width: 100%; height: auto; }
.df-dash-traj__legend {
  display: flex;
  justify-content: space-between;
  font-family: var(--df-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--df-ink-muted, rgba(15,15,15,0.6));
}
.df-dash-traj__delta { color: var(--df-accent); }

/* Cells (for finance + transfers tiles) */
.df-dash-cells {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}
.df-dash-cell { display: flex; flex-direction: column; gap: 2px; }
.df-dash-cell--wide { grid-column: span 2; }
.df-dash-cell__label {
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--df-ink-muted, rgba(15,15,15,0.55));
}
.df-dash-cell__num {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--df-ink);
  font-variant-numeric: tabular-nums;
  font-variation-settings: "opsz" 40;
}
.df-dash-cell__num--loss { color: var(--df-accent); }
.df-dash-cell__num--profit { color: #0a7d3a; }
.df-dash-cell__sub {
  font-family: var(--df-sans);
  font-size: 13px;
  color: var(--df-ink, #0f0f0f);
  line-height: 1.4;
}

/* Recent results / upcoming fixtures list */
.df-dash-results { list-style: none; margin: 0; padding: 0; }
.df-dash-results__row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--df-rule);
  font-family: var(--df-sans);
  font-size: 14px;
}
.df-dash-results__row:last-child { border-bottom: none; }
.df-dash-results__outcome {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-family: var(--df-mono);
  font-weight: 700;
  font-size: 11px;
  border-radius: 3px;
  background: var(--df-rule);
  color: var(--df-ink);
}
.df-dash-results__outcome--w { background: #0a7d3a; color: #fff; }
.df-dash-results__outcome--d { background: var(--df-rule); color: var(--df-ink); }
.df-dash-results__outcome--l { background: var(--df-accent, #cc0000); color: #fff; }
.df-dash-results__date {
  font-family: var(--df-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--df-ink-muted, rgba(15,15,15,0.55));
  width: 60px;
  text-align: center;
}
.df-dash-results__ha {
  display: inline-block;
  width: 14px;
  font-family: var(--df-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--df-ink-muted, rgba(15,15,15,0.5));
  margin-right: 4px;
}
.df-dash-results__opp a {
  color: var(--df-ink);
  text-decoration: none;
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 15px;
}
.df-dash-results__opp a:hover { color: var(--df-accent); }
.df-dash-results__score {
  font-family: var(--df-serif);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-size: 16px;
}
.df-dash-results__diff { display: inline-flex; gap: 2px; }
.df-dash-results__pip {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--df-rule);
}
.df-dash-results__pip.is-on { background: var(--df-accent, #cc0000); }

/* Home / away split table */
.df-dash-ha { width: 100%; border-collapse: collapse; font-family: var(--df-sans); font-size: 14px; }
.df-dash-ha th, .df-dash-ha td { text-align: center; padding: 8px 6px; border-bottom: 1px solid var(--df-rule); }
.df-dash-ha thead th {
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--df-ink-muted, rgba(15,15,15,0.55));
  text-align: center;
}
.df-dash-ha tbody th { text-align: left; font-family: var(--df-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--df-ink-muted, rgba(15,15,15,0.7)); }
.df-dash-ha tbody td:last-child { font-family: var(--df-serif); font-size: 16px; font-variant-numeric: tabular-nums; }

/* Race / Late drama / Discipline rows */
.df-dash-race { display: flex; flex-direction: column; gap: 6px; }
.df-dash-race__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 6px 0;
  border-bottom: 1px solid var(--df-rule);
  font-family: var(--df-sans);
  font-size: 14px;
}
.df-dash-race__row:last-child { border-bottom: none; }
.df-dash-race__row span { color: var(--df-ink-muted, rgba(15,15,15,0.7)); }
.df-dash-race__row strong { font-family: var(--df-serif); font-weight: 700; font-size: 18px; font-variant-numeric: tabular-nums; }
.df-dash-race__row--warn strong { color: var(--df-accent, #cc0000); }

/* Pills row inside tile footer */
.df-dash-tile__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--df-rule);
}
.df-dash-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-family: var(--df-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--df-ink);
  background: var(--df-paper);
  border: 1px solid var(--df-rule);
  border-radius: 999px;
}
.df-dash-pill strong { font-family: var(--df-serif); font-weight: 700; font-size: 13px; }
.df-dash-pill a { color: inherit; text-decoration: none; }
.df-dash-pill--warn { color: var(--df-accent); border-color: var(--df-accent); }
.df-dash-pill--accent { background: var(--df-ink); color: var(--df-paper); border-color: var(--df-ink); }
.df-dash-pill--accent a { color: var(--df-paper); }

/* Heritage block: honours / alumni / managers / rivals */
.df-dash-heritage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .df-dash-heritage { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .df-dash-heritage { grid-template-columns: 1fr; } }
.df-dash-heritage__h {
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--df-ink-muted, rgba(15,15,15,0.55));
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--df-rule);
}
.df-dash-heritage__list { list-style: none; margin: 0; padding: 0; }
.df-dash-heritage__list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: baseline;
  row-gap: 1px;
  column-gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--df-rule);
}
.df-dash-heritage__list li:last-child { border-bottom: none; }
.df-dash-heritage__num {
  font-family: var(--df-serif);
  font-weight: 700;
  font-size: 22px;
  font-variant-numeric: tabular-nums;
  grid-row: 1 / span 2;
}
.df-dash-heritage__label { font-family: var(--df-serif); font-weight: 600; font-size: 14px; }
.df-dash-heritage__year {
  grid-column: 2;
  font-family: var(--df-mono);
  font-size: 11px;
  color: var(--df-ink-muted, rgba(15,15,15,0.5));
}
.df-dash-heritage__names { list-style: none; margin: 0; padding: 0; }
.df-dash-heritage__names li {
  padding: 6px 0;
  border-bottom: 1px solid var(--df-rule);
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 15px;
}
.df-dash-heritage__names li:last-child { border-bottom: none; }
.df-dash-heritage__names a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--df-ink);
  text-decoration: none;
}
.df-dash-heritage__names a:hover { color: var(--df-accent); }

/* Articles list on dashboard (3 articles) */
.df-dash-articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 800px) { .df-dash-articles { grid-template-columns: 1fr; } }
.df-dash-article {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 8px;
  border-top: 1px solid var(--df-rule);
  padding-top: 14px;
}
.df-dash-article__thumb { display: block; aspect-ratio: 16 / 9; overflow: hidden; }
.df-dash-article__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.df-dash-article__body { display: flex; flex-direction: column; gap: 4px; }
.df-dash-article__kicker {
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--df-ink-muted, rgba(15,15,15,0.55));
}
.df-dash-article__title {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.18;
  letter-spacing: -0.008em;
  color: var(--df-ink, #0f0f0f);
  font-variation-settings: "opsz" 32;
}
.df-dash-article:hover .df-dash-article__title { color: var(--df-accent, #cc0000); }
.df-dash-article__dek {
  font-family: var(--df-sans);
  font-size: 13px;
  line-height: 1.45;
  color: var(--df-ink-muted, rgba(15,15,15,0.7));
}

/* Stadium tile */
.df-dash-stadium__name {
  font-family: var(--df-serif);
  font-size: 20px;
  margin: 0 0 4px;
}
.df-dash-stadium__meta {
  font-family: var(--df-sans);
  font-size: 13px;
  color: var(--df-ink-muted, rgba(15,15,15,0.65));
  margin: 0 0 14px;
}
.df-dash-stadium__map {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 0 14px;
  overflow: hidden;
  border: 1px solid var(--df-rule);
}
.df-dash-stadium__iframe {
  border: 0;
  width: 100%;
  height: 100%;
  display: block;
  filter: grayscale(0.25) contrast(1.05);
  pointer-events: none;
}
.df-dash-stadium__map-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  cursor: pointer;
}
.df-dash-stadium__links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-family: var(--df-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--df-rule);
}
.df-dash-stadium__links a {
  color: var(--df-accent, #cc0000);
  text-decoration: none;
}
.df-dash-stadium__links a:hover { text-decoration: underline; }

/* Squad listing */
.df-dash-squad {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
@media (max-width: 1000px) { .df-dash-squad { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .df-dash-squad { grid-template-columns: 1fr; } }
.df-dash-squad__pos {
  font-family: var(--df-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--df-ink-muted, rgba(15,15,15,0.55));
  margin: 0 0 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--df-rule);
}
.df-dash-squad__list { list-style: none; margin: 0; padding: 0; }
.df-dash-squad__player {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: baseline;
  column-gap: 8px;
  row-gap: 1px;
  padding: 6px 0;
  border-bottom: 1px solid var(--df-rule);
  font-size: 13.5px;
}
.df-dash-squad__player:last-child { border-bottom: none; }
.df-dash-squad__jersey {
  font-family: var(--df-mono);
  font-size: 12px;
  color: var(--df-ink-muted, rgba(15,15,15,0.5));
  font-variant-numeric: tabular-nums;
  text-align: right;
}
.df-dash-squad__name {
  font-family: var(--df-serif);
  font-weight: 600;
  color: var(--df-ink);
  text-decoration: none;
}
.df-dash-squad__name:hover { color: var(--df-accent, #cc0000); }
.df-dash-squad__captain {
  font-family: var(--df-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--df-accent, #cc0000);
  margin-left: 2px;
}
.df-dash-squad__meta {
  grid-column: 2;
  font-family: var(--df-sans);
  font-size: 12px;
  color: var(--df-ink-muted, rgba(15,15,15,0.6));
}
.df-dash-squad__contract {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: center;
  font-family: var(--df-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--df-ink-muted, rgba(15,15,15,0.55));
}
.df-dash-squad__contract--warn { color: var(--df-accent, #cc0000); }

/* Rumours list on club dashboard */
.df-dash-rumours { list-style: none; margin: 0; padding: 0; }
.df-dash-rumour {
  display: grid;
  /* minmax(0,…) on the flexible columns + fixed date/status widths make every
     row size its columns identically, so the journalist column lines up
     regardless of name length or pending-vs-confirmed pill width. Without this,
     each row's own grid sized its 1fr columns to its own content and drifted. */
  grid-template-columns: 56px minmax(0, 1fr) minmax(0, 1.5fr) 86px 100px;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--df-rule);
  font-family: var(--df-sans);
  font-size: 14px;
}
.df-dash-rumour:last-child { border-bottom: none; }
.df-dash-rumour__dir {
  font-family: var(--df-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}
.df-dash-rumour__dir--in  { color: #0a7d3a; }
.df-dash-rumour__dir--out { color: var(--df-accent, #cc0000); }
.df-dash-rumour__player strong {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 16px;
  display: block;
  line-height: 1.2;
}
.df-dash-rumour__path {
  font-size: 12.5px;
  color: var(--df-ink-muted, rgba(15,15,15,0.6));
}
.df-dash-rumour__path a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.df-dash-rumour__path a:hover { color: var(--df-accent); }
.df-dash-rumour__src {
  font-size: 13px;
  color: var(--df-ink-muted, rgba(15,15,15,0.7));
}
.df-dash-rumour__src a {
  color: var(--df-ink);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--df-rule);
}
.df-dash-rumour__src a:hover { color: var(--df-accent); border-color: currentColor; }
.df-dash-rumour__src em { font-style: normal; }
.df-dash-rumour__date {
  font-family: var(--df-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--df-ink-muted, rgba(15,15,15,0.55));
  white-space: nowrap;
  justify-self: end;
}
.df-dash-rumour__status {
  display: inline-block;
  justify-self: end;
  padding: 3px 8px;
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
  white-space: nowrap;
}
.df-dash-rumour__status--pending {
  background: #fff8e8;
  border: 1px solid #ecd58a;
  color: var(--df-ink);
}
.df-dash-rumour__status--confirmed {
  background: #e7f5ec;
  border: 1px solid #aed4be;
  color: #0a5a2c;
}
.df-dash-rumour__status--expired {
  background: #fbe9e9;
  border: 1px solid #e0a8a8;
  color: var(--df-accent, #cc0000);
}
.df-dash-tile__footnote {
  margin: 14px 0 0;
  padding-top: 10px;
  border-top: 1px solid var(--df-rule);
  font-family: var(--df-sans);
  font-size: 12px;
  color: var(--df-ink-muted, rgba(15,15,15,0.6));
}
.df-dash-tile__footnote a { color: var(--df-accent); text-decoration: none; }
.df-dash-tile__footnote a:hover { text-decoration: underline; }

@media (max-width: 800px) {
  .df-dash-rumour {
    grid-template-columns: 56px 1fr;
    gap: 8px;
  }
  .df-dash-rumour__src,
  .df-dash-rumour__date,
  .df-dash-rumour__status {
    grid-column: 2 / -1;
    font-size: 12px;
  }
}

/* Manager + Owner panels */
.df-dash-mgr {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--df-serif);
}
.df-dash-mgr strong { font-size: 22px; }
.df-dash-mgr__since {
  font-family: var(--df-sans);
  font-size: 13px;
  color: var(--df-ink-muted, rgba(15,15,15,0.65));
}
.df-dash-pressure {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--df-rule);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.df-dash-pressure__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.df-dash-pressure__score {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 22px;
  font-variant-numeric: tabular-nums;
  color: var(--df-ink);
}
.df-dash-pressure--danger .df-dash-pressure__score { color: var(--df-accent, #cc0000); }
.df-dash-pressure__max {
  font-family: var(--df-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--df-ink-muted, rgba(15,15,15,0.5));
  margin-left: 2px;
}
.df-dash-pressure__bar {
  position: relative;
  height: 6px;
  background: var(--df-rule);
  border-radius: 1px;
  overflow: hidden;
}
.df-dash-pressure__fill {
  display: block;
  height: 100%;
  background: var(--df-ink);
}
.df-dash-pressure--danger .df-dash-pressure__fill { background: var(--df-accent, #cc0000); }
.df-dash-pressure__threshold {
  position: absolute;
  top: -2px;
  left: 70%;
  width: 1px;
  height: 10px;
  background: var(--df-ink-muted, rgba(15,15,15,0.5));
}
.df-dash-pressure__link {
  font-family: var(--df-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--df-accent, #cc0000);
  text-decoration: none;
}
.df-dash-pressure__link:hover { text-decoration: underline; }
.df-dash-owner {
  font-family: var(--df-serif);
  margin: 0 0 8px;
}
.df-dash-owner strong { font-size: 20px; }
.df-dash-owner__psc {
  font-family: var(--df-sans);
  font-size: 13px;
  color: var(--df-ink-muted, rgba(15,15,15,0.65));
  margin: 0;
}

/* ── Transfers hub redesign ──────────────────────────────────────────── */
.df-transfers-hero {
  padding: 48px 0 24px;
}
.df-transfers-hero__title {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  margin: 8px 0 12px;
  color: var(--df-ink, #0f0f0f);
  font-variation-settings: "opsz" 96;
  max-width: 880px;
}
.df-transfers-hero__dek {
  font-family: var(--df-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--df-ink-muted, rgba(15,15,15,0.7));
  max-width: 720px;
  margin: 0 0 12px;
}

/* Live snapshot bar */
.df-transfers-snapshot {
  padding: 22px 0 36px;
}
.df-snapshot__title {
  font-family: var(--df-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--df-ink-muted, rgba(15,15,15,0.55));
  margin: 0 0 14px;
}
.df-snapshot__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.df-snapshot__card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px 20px 20px;
  background: var(--df-paper, #faf8f3);
  border: 1px solid var(--df-rule);
  border-radius: 3px;
  min-height: 130px;
}
.df-snapshot__card--accent {
  background: var(--df-ink, #0f0f0f);
  border-color: var(--df-ink);
  color: var(--df-paper);
}
.df-snapshot__label {
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--df-ink-muted, rgba(15,15,15,0.55));
}
.df-snapshot__card--accent .df-snapshot__label { color: rgba(255,255,255,0.55); }
.df-snapshot__num {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.012em;
  color: var(--df-ink, #0f0f0f);
  font-variant-numeric: tabular-nums;
}
.df-snapshot__card--accent .df-snapshot__num { color: var(--df-paper); }
.df-snapshot__sub {
  font-family: var(--df-sans);
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--df-ink-muted, rgba(15,15,15,0.65));
}
.df-snapshot__card--accent .df-snapshot__sub { color: rgba(255,255,255,0.7); }
.df-snapshot__sub a { color: inherit; border-bottom: 1px solid currentColor; padding-bottom: 1px; text-decoration: none; }
@media (max-width: 1000px) {
  .df-snapshot__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .df-snapshot__grid { grid-template-columns: 1fr; }
}

/* Editorial card grid (replaces the thin horizontal cards) */
.df-transfers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 36px 0 48px;
}
.df-transfer-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 26px 24px 24px;
  text-decoration: none;
  background: var(--df-paper, #faf8f3);
  border: 1px solid var(--df-rule);
  border-radius: 3px;
  transition: background 140ms ease, border-color 140ms ease, transform 140ms ease;
  min-height: 200px;
}
.df-transfer-card:hover {
  background: var(--df-ink, #0f0f0f);
  border-color: var(--df-ink);
  transform: translateY(-1px);
}
.df-transfer-card__kicker {
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--df-accent, #cc0000);
}
.df-transfer-card__title {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--df-ink, #0f0f0f);
  font-variation-settings: "opsz" 48;
}
.df-transfer-card:hover .df-transfer-card__title { color: var(--df-paper); }
.df-transfer-card__dek {
  font-family: var(--df-sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--df-ink-muted, rgba(15,15,15,0.7));
  margin: 0;
  flex: 1;
}
.df-transfer-card:hover .df-transfer-card__dek { color: rgba(255,255,255,0.78); }
.df-transfer-card__cta {
  font-family: var(--df-mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--df-accent, #cc0000);
  margin-top: 6px;
}
.df-transfer-card:hover .df-transfer-card__cta { color: var(--df-paper); }
.df-transfer-card--feature {
  grid-column: span 2;
  background: var(--df-ink, #0f0f0f);
  border-color: var(--df-ink);
  min-height: 230px;
}
.df-transfer-card--feature .df-transfer-card__title { color: var(--df-paper); font-size: 36px; }
.df-transfer-card--feature .df-transfer-card__dek { color: rgba(255,255,255,0.78); font-size: 15.5px; }
.df-transfer-card--feature .df-transfer-card__kicker { color: var(--df-accent); }
.df-transfer-card--feature .df-transfer-card__cta { color: var(--df-paper); }
.df-transfer-card--feature:hover { background: var(--df-accent, #cc0000); border-color: var(--df-accent); }

@media (max-width: 900px) {
  .df-transfers-grid { grid-template-columns: repeat(2, 1fr); }
  .df-transfer-card--feature { grid-column: span 2; }
}
@media (max-width: 540px) {
  .df-transfers-grid { grid-template-columns: 1fr; }
  .df-transfer-card--feature { grid-column: span 1; }
}

.df-rumour-pending {
  display: inline-block;
  padding: 2px 8px;
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--df-ink);
  background: #fff8e8;
  border: 1px solid #ecd58a;
  border-radius: 999px;
}

/* Transfer window — per-club two-column in/out layout */
.df-transfer-window__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 16px;
}
.df-transfer-col__heading {
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--df-ink-muted, rgba(15,15,15,0.6));
  margin: 0 0 12px;
}
.df-transfer-meta {
  display: block;
  font-family: var(--df-sans);
  font-size: 12px;
  font-style: normal;
  color: var(--df-ink-muted, rgba(15,15,15,0.6));
  margin-top: 2px;
  font-weight: 400;
}
.df-transfer-empty {
  font-family: var(--df-sans);
  font-size: 13px;
  color: var(--df-ink-muted, rgba(15,15,15,0.5));
  margin: 0;
  font-style: italic;
}
.df-transfer-direction {
  font-family: var(--df-mono);
  font-size: 11px;
  letter-spacing: 0.02em;
}
.df-transfer-direction--in { color: #0a7d3a; }
.df-transfer-direction--out { color: var(--df-accent, #cc0000); }
@media (max-width: 700px) {
  .df-transfer-window__cols { grid-template-columns: 1fr; gap: 20px; }
}

/* Free agent filters bar */
.df-free-agents-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 24px;
  padding: 12px 16px;
  background: var(--df-paper, #faf8f3);
  border: 1px solid var(--df-rule);
}
.df-free-agents-filters label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--df-ink-muted, rgba(15,15,15,0.6));
}
.df-free-agents-filters select {
  font-family: var(--df-sans);
  font-size: 14px;
  padding: 6px 8px;
  border: 1px solid var(--df-rule);
  background: white;
  color: var(--df-ink);
  text-transform: none;
  letter-spacing: 0;
  min-width: 160px;
}

/* Tab nav — used on transfer pages and similar section navs */
.df-tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--df-rule);
}
.df-tab-nav--sub {
  margin-top: 10px;
  padding-top: 10px;
  border-top: none;
}
.df-tab-nav__item {
  display: inline-block;
  padding: 6px 14px;
  font-family: var(--df-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--df-ink, #0f0f0f);
  text-decoration: none;
  border: 1px solid var(--df-rule);
  border-radius: 999px;
}
.df-tab-nav__item:hover {
  background: var(--df-ink);
  color: var(--df-paper);
}
.df-tab-nav__item.is-active {
  background: var(--df-accent);
  color: var(--df-paper);
  border-color: var(--df-accent);
}

/* Historic banner — softly flags that user is on a non-latest year */
.df-historic-banner {
  background: #fff8e8;
  border: 1px solid #ecd58a;
  padding: 10px 14px;
  font-family: var(--df-sans);
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 20px;
  border-radius: 4px;
}
.df-historic-banner strong { font-weight: 700; }
.df-historic-banner a { color: var(--df-accent); }

.df-finance-body { padding: 56px 0 80px; }
.df-finance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.df-finance-section { }
.df-finance-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.df-finance-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--df-rule);
}
.df-finance-row__rank {
  font-family: var(--df-mono);
  font-size: 11px;
  color: var(--df-ink-muted);
  font-weight: 600;
  flex: 0 0 30px;
}
.df-finance-row__crest { width: 24px; height: 24px; object-fit: contain; flex: 0 0 24px; }
.df-finance-row__name {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.008em;
  color: var(--df-ink);
  font-variation-settings: "opsz" 24;
  flex: 1 1 auto;
  min-width: 0;
  line-height: 1.3;
}
.df-finance-row__name:hover { color: var(--df-accent); }
.df-finance-row__num {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 16px;
  color: var(--df-ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.008em;
  font-variation-settings: "opsz" 24;
}
.df-finance-row__num--loss { color: var(--df-accent); }

@media (max-width: 900px) {
  .df-finance-spotlight__grid { grid-template-columns: 1fr; gap: 24px; }
  .df-finance-spotlight__numbers { grid-template-columns: 1fr; gap: 16px; }
  .df-finance-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── Teams archive ─────────────────────────────────────────────────────── */
.df-teams-hero {
  padding: 56px 0 32px;
  border-bottom: 1px solid var(--df-rule);
}
.df-teams-hero__kicker { margin-bottom: 18px; }
.df-teams-hero__title {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--df-ink);
  margin-bottom: 14px;
  font-variation-settings: "opsz" 96;
}
.df-teams-hero__dek {
  font-family: var(--df-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.45;
  color: var(--df-ink-soft);
  max-width: 720px;
  margin-bottom: 28px;
  font-variation-settings: "opsz" 36, "SOFT" 50;
}
.df-teams-featured__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.df-teams-featured-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--df-paper);
  border: 1px solid var(--df-rule);
  padding: 18px;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.df-teams-featured-card:hover {
  border-color: var(--df-accent);
  transform: translateY(-2px);
  color: var(--df-ink);
}
.df-teams-featured-card__league {
  font-family: var(--df-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--df-accent);
}
.df-teams-featured-card__top { display: flex; align-items: center; gap: 12px; }
.df-teams-featured-card__crest { object-fit: contain; flex-shrink: 0; }
.df-teams-featured-card__name {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.008em;
  color: var(--df-ink);
  font-variation-settings: "opsz" 24;
  line-height: 1.15;
}
.df-teams-featured-card__meta {
  font-family: var(--df-mono);
  font-size: 11px;
  color: var(--df-ink-muted);
  margin-top: 4px;
}
.df-teams-list { padding: 48px 0 80px; }
.df-team-league-group { margin-bottom: 48px; }
.df-team-league-group__heading {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--df-ink);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--df-ink);
  font-variation-settings: "opsz" 60;
}
.df-team-league-group__heading a { color: var(--df-ink); }
.df-team-league-group__heading a:hover { color: var(--df-accent); }
.df-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.df-team-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--df-rule);
  transition: background 0.12s ease;
}
.df-team-card:hover {
  background: var(--df-paper-warm);
  color: var(--df-ink);
}
.df-team-card__crest {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}
.df-team-card__crest--placeholder { background: var(--df-paper-warm); border-radius: 2px; }
.df-team-card__info { min-width: 0; flex: 1; }
.df-team-card__name {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.008em;
  color: var(--df-ink);
  font-variation-settings: "opsz" 24;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.df-team-card:hover .df-team-card__name { color: var(--df-accent); }
.df-team-card__meta {
  font-family: var(--df-mono);
  font-size: 11px;
  color: var(--df-ink-muted);
}

@media (max-width: 1024px) {
  .df-teams-featured__grid { grid-template-columns: repeat(3, 1fr); }
  .df-team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .df-teams-featured__grid { grid-template-columns: 1fr; }
  .df-team-grid { grid-template-columns: 1fr; }
}

/* ─── Homepage: More Trackers block ─────────────────────────────────────── */
.df-trackers {
  padding: 64px 0 80px;
  background: var(--df-paper);
  border-top: 1px solid var(--df-rule);
}
.df-trackers__header { margin-bottom: 32px; }
.df-trackers__league-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-top: 14px;
}
.df-trackers__league-pills-label {
    font-family: var(--df-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--df-ink-muted);
    margin-right: 4px;
}
.df-trackers__pill {
    display: inline-block;
    padding: 5px 12px;
    font-family: var(--df-sans);
    font-size: 12px;
    font-weight: 600;
    color: var(--df-ink-soft);
    background: var(--df-paper-warm);
    border: 1px solid var(--df-rule);
    border-radius: 999px;
    text-decoration: none;
    transition: all 0.15s ease;
}
.df-trackers__pill:hover {
    border-color: var(--df-accent);
    color: var(--df-accent);
}
.df-trackers__pill.is-active {
    background: var(--df-accent);
    border-color: var(--df-accent);
    color: #fff;
}

/* Highlighter-pen mark for league names inside tracker cards. Lower 55%
   of the line gets a soft yellow wash; reads like a marker pass over
   newsprint, not a solid pill. */
.df-league-mark {
    background: linear-gradient(transparent 55%, #ffe566 55%, #ffe566 92%, transparent 92%);
    padding: 0 2px;
    color: var(--df-ink);
    font-weight: 600;
}
.df-tracker__kicker .df-league-mark {
    /* Inside the all-caps mono kicker the mark needs more breathing room */
    background: linear-gradient(transparent 40%, #ffe566 40%, #ffe566 95%, transparent 95%);
    padding: 0 3px;
}
.df-trackers__title {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.012em;
  margin-top: 8px;
  font-variation-settings: "opsz" 60;
  color: var(--df-ink);
}
.df-trackers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.df-tracker {
  display: flex;
  flex-direction: column;
  background: var(--df-paper-warm);
  border: 1px solid var(--df-rule);
  padding: 22px 22px 18px;
  transition: border-color 0.15s ease, transform 0.15s ease;
  color: var(--df-ink);
}
.df-tracker:hover {
  border-color: var(--df-accent);
  transform: translateY(-2px);
  color: var(--df-ink);
}
.df-tracker__kicker {
  font-family: var(--df-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--df-ink-muted);
  margin-bottom: 6px;
}
.df-tracker__name {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.008em;
  color: var(--df-ink);
  margin-bottom: 14px;
  font-variation-settings: "opsz" 36;
}
.df-tracker__lead {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}
.df-tracker__big-num {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.018em;
  color: var(--df-accent);
  font-variant-numeric: tabular-nums;
  font-variation-settings: "opsz" 60;
}
.df-tracker__big-unit {
  font-family: var(--df-mono);
  font-size: 11px;
  color: var(--df-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.df-tracker__detail {
  font-family: var(--df-sans);
  font-size: 13px;
  line-height: 1.45;
  color: var(--df-ink-soft);
  margin-bottom: 14px;
  flex-grow: 1;
}
.df-tracker__cta {
  font-family: var(--df-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--df-accent);
}
@media (max-width: 900px) {
  .df-trackers__grid { grid-template-columns: 1fr; gap: 16px; }
}

/* ─── Discipline destination ───────────────────────────────────────────── */
.df-disc-hero {
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--df-rule);
}
.df-disc-hero__kicker { margin-bottom: 18px; }
.df-disc-hero__title {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--df-ink);
  margin-bottom: 18px;
  font-variation-settings: "opsz" 144;
}
.df-disc-hero__dek {
  font-family: var(--df-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  color: var(--df-ink-soft);
  max-width: 720px;
  margin-bottom: 32px;
  font-variation-settings: "opsz" 36, "SOFT" 50;
}
.df-disc-body { padding: 48px 0 80px; }
.df-disc-list { margin-bottom: 32px; }
.df-disc-row {
  display: grid;
  grid-template-columns: 50px 28px 1fr 1fr 110px;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--df-rule);
}
.df-disc-row__rank {
  font-family: var(--df-mono);
  font-size: 12px;
  color: var(--df-ink-muted);
  font-weight: 600;
}
.df-disc-row__crest { width: 24px; height: 24px; object-fit: contain; }
.df-disc-row__club {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.008em;
  font-variation-settings: "opsz" 24;
}
.df-disc-row__bar-wrap {
  height: 16px;
  background: rgba(0,0,0,0.04);
  border-radius: 2px;
  overflow: hidden;
  display: flex;
}
.df-disc-row__bar-yellow {
  background: #f6c945;
  height: 100%;
}
.df-disc-row__bar-red {
  background: var(--df-accent);
  height: 100%;
}
.df-disc-row__total {
  font-family: var(--df-mono);
  font-size: 14px;
  text-align: right;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.df-disc-row__yellow { color: #c89400; }
.df-disc-row__slash { color: var(--df-ink-muted); margin: 0 4px; }
.df-disc-row__red { color: var(--df-accent); }

.df-fairplay-callout {
  background: var(--df-paper-warm);
  border-left: 4px solid var(--df-positive);
  padding: 20px 28px;
  margin-bottom: 32px;
}
.df-fairplay-callout__kicker {
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--df-positive);
  font-weight: 600;
  margin-bottom: 8px;
}
.df-fairplay-callout__text {
  font-family: var(--df-serif);
  font-size: 18px;
  color: var(--df-ink);
  font-style: italic;
  font-variation-settings: "opsz" 24, "SOFT" 50;
}

@media (max-width: 700px) {
  .df-disc-row { grid-template-columns: 36px 24px 1fr 70px; gap: 10px; }
  .df-disc-row__bar-wrap { display: none; }
}

/* ─── Late Drama destination ────────────────────────────────────────────── */
.df-late-hero,
.df-edge-hero {
  padding: 64px 0 40px;
  background: var(--df-ink);
  color: var(--df-paper);
  border-bottom: 4px solid var(--df-accent);
}
.df-late-hero__kicker,
.df-edge-hero__kicker { margin-bottom: 18px; }
.df-late-hero__title,
.df-edge-hero__title {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--df-paper);
  margin-bottom: 18px;
  font-variation-settings: "opsz" 144;
}
.df-late-hero__dek,
.df-edge-hero__dek {
  font-family: var(--df-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  color: rgba(255,255,255,0.75);
  max-width: 720px;
  margin-bottom: 32px;
  font-variation-settings: "opsz" 36, "SOFT" 50;
}
.df-late-hero .df-race-filter__btn,
.df-edge-hero .df-race-filter__btn {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
}
.df-late-hero .df-race-filter__btn:hover,
.df-edge-hero .df-race-filter__btn:hover {
  border-color: var(--df-accent);
  color: var(--df-accent);
}
.df-late-hero .df-race-filter__btn--active,
.df-edge-hero .df-race-filter__btn--active {
  background: var(--df-accent);
  color: var(--df-paper);
  border-color: var(--df-accent);
}
.df-late-body,
.df-edge-body {
  padding: 56px 0 80px;
}

.df-late-list {
  margin-bottom: 48px;
}
.df-late-row {
  display: grid;
  grid-template-columns: 50px 36px 1fr 1fr 70px;
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--df-rule);
}
.df-late-row__rank {
  font-family: var(--df-mono);
  font-size: 12px;
  color: var(--df-ink-muted);
  font-weight: 600;
}
.df-late-row__crest {
  width: 28px;
  height: 28px;
  object-fit: contain;
}
.df-late-row__crest--placeholder {
  background: var(--df-paper-warm);
  border-radius: 2px;
}
.df-late-row__club {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.008em;
  font-variation-settings: "opsz" 24;
}
.df-late-row__bar {
  height: 8px;
  background: rgba(0,0,0,0.05);
  border-radius: 2px;
  overflow: hidden;
}
.df-late-row__bar-fill {
  height: 100%;
  background: var(--df-accent);
  border-radius: 2px;
}
.df-late-row__count {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 32px;
  color: var(--df-accent);
  font-variant-numeric: tabular-nums;
  text-align: right;
  letter-spacing: -0.018em;
  font-variation-settings: "opsz" 48;
}

/* ─── On the Edge destination ───────────────────────────────────────────── */
.df-edge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 48px;
}
.df-edge-card {
  display: flex;
  flex-direction: column;
  background: var(--df-paper);
  border: 1px solid var(--df-rule);
  padding: 18px 20px;
  gap: 6px;
}
.df-edge-card--urgent {
  background: var(--df-ink);
  color: var(--df-paper);
  border-color: var(--df-ink);
}
.df-edge-card--warning {
  border-color: var(--df-accent);
}
.df-edge-card__label {
  font-family: var(--df-mono);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--df-accent);
}
.df-edge-card__player {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.008em;
  line-height: 1.1;
  color: var(--df-ink);
  font-variation-settings: "opsz" 24;
}
.df-edge-card--urgent .df-edge-card__player { color: var(--df-paper); }
.df-edge-card__meta {
  font-family: var(--df-sans);
  font-size: 12px;
  color: var(--df-ink-muted);
}
.df-edge-card--urgent .df-edge-card__meta { color: rgba(255,255,255,0.55); }
.df-edge-card__count {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 36px;
  color: var(--df-accent);
  font-variant-numeric: tabular-nums;
  margin-top: 6px;
  letter-spacing: -0.018em;
  font-variation-settings: "opsz" 60;
  line-height: 1;
}
.df-edge-card__threshold {
  font-family: var(--df-mono);
  font-size: 10px;
  color: var(--df-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.df-edge-card--urgent .df-edge-card__threshold { color: rgba(255,255,255,0.5); }

@media (max-width: 1024px) {
  .df-edge-grid { grid-template-columns: repeat(2, 1fr); }
  .df-late-row { grid-template-columns: 36px 28px 1fr 60px; }
  .df-late-row__bar { display: none; }
}
@media (max-width: 600px) {
  .df-edge-grid { grid-template-columns: 1fr; }
}

/* ─── Race Watch destination ────────────────────────────────────────────── */
.df-race-hero {
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--df-rule);
}
.df-race-hero__kicker { margin-bottom: 18px; }
.df-race-hero__title {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--df-ink);
  margin-bottom: 18px;
  font-variation-settings: "opsz" 144;
}
.df-race-hero__dek {
  font-family: var(--df-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  color: var(--df-ink-soft);
  max-width: 720px;
  margin-bottom: 32px;
  font-variation-settings: "opsz" 36, "SOFT" 50;
}
.df-race-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.df-race-filter__btn {
  font-family: var(--df-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 14px;
  border: 1px solid var(--df-rule-strong);
  color: var(--df-ink-soft);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.df-race-filter__btn:hover { border-color: var(--df-accent); color: var(--df-accent); }
.df-race-filter__btn--active {
  background: var(--df-ink);
  color: var(--df-paper);
  border-color: var(--df-ink);
}
.df-race-body {
  padding: 48px 0 80px;
}
.df-race-banner {
  background: var(--df-paper-warm);
  border-left: 4px solid var(--df-accent);
  padding: 16px 20px;
  margin-bottom: 32px;
  font-family: var(--df-sans);
  font-size: 14px;
  color: var(--df-ink-soft);
}
.df-race-table-wrap {
  overflow-x: auto;
  margin-bottom: 48px;
}
.df-race-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--df-sans);
  font-size: 13px;
}
.df-race-table thead {
  border-top: 2px solid var(--df-ink);
  border-bottom: 2px solid var(--df-ink);
}
.df-race-table th {
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--df-ink-muted);
  padding: 12px 8px;
  text-align: center;
  font-weight: 600;
  white-space: nowrap;
}
.df-race-table th:nth-child(2) { text-align: left; }
.df-race-table td {
  padding: 14px 8px;
  border-bottom: 1px solid var(--df-rule);
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.df-race-table tr:hover { background: var(--df-paper-warm); }
.df-race-table__pos {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 18px;
  color: var(--df-ink-muted);
  font-variation-settings: "opsz" 24;
  width: 50px;
}
.df-race-table__club {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.008em;
  text-align: left !important;
  font-variation-settings: "opsz" 24;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}
.df-race-table__num { font-family: var(--df-mono); font-size: 13px; }

.df-race-row--promo td:first-child {
  border-left: 4px solid var(--df-positive);
}
.df-race-row--playoff td:first-child {
  border-left: 4px solid #3b82f6;
}
.df-race-row--releg td:first-child {
  border-left: 4px solid var(--df-accent);
}

/* Race cell variants */
.df-race-cell {
  font-family: var(--df-serif);
  font-weight: 500;
  font-size: 16px;
  font-variation-settings: "opsz" 24;
}
.df-race-cell--zero {
  color: var(--df-rule-strong);
  font-size: 14px;
}
.df-race-cell--low { color: var(--df-ink-muted); }
.df-race-cell--mid { color: var(--df-ink); }
.df-race-cell--high {
  color: var(--df-accent);
  font-weight: 600;
}
.df-race-cell--high-bad {
  color: var(--df-accent);
  font-weight: 600;
}
.df-race-cell--locked {
  font-weight: 700;
  color: var(--df-positive);
}
.df-race-cell--locked-bad {
  font-weight: 700;
  color: var(--df-accent);
}

.df-race-methodology {
  background: var(--df-paper-warm);
  padding: 32px;
  border-left: 4px solid var(--df-accent);
  max-width: 800px;
}
.df-race-methodology h3 {
  font-family: var(--df-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--df-accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.df-race-methodology p {
  font-family: var(--df-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--df-ink-soft);
  margin-bottom: 14px;
}
.df-race-methodology__refresh {
  font-family: var(--df-mono);
  font-size: 11px;
  color: var(--df-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--df-rule);
}

/* ─── Sack-o-Meter destination ──────────────────────────────────────────── */
.df-sack-hero {
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--df-rule);
}
.df-sack-hero__kicker { margin-bottom: 18px; }
.df-sack-hero__title {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--df-ink);
  margin-bottom: 18px;
  font-variation-settings: "opsz" 144;
}
.df-sack-hero__dek {
  font-family: var(--df-serif);
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  color: var(--df-ink-soft);
  max-width: 720px;
  margin-bottom: 32px;
  font-variation-settings: "opsz" 36, "SOFT" 50;
}
.df-sack-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.df-sack-filter__btn {
  font-family: var(--df-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 8px 14px;
  border: 1px solid var(--df-rule-strong);
  color: var(--df-ink-soft);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}
.df-sack-filter__btn:hover { border-color: var(--df-accent); color: var(--df-accent); }
.df-sack-filter__btn--active {
  background: var(--df-ink);
  color: var(--df-paper);
  border-color: var(--df-ink);
}

.df-sack-body {
  padding: 40px 0 80px;
}
.df-pressure-list {
  background: var(--df-ink);
  margin-bottom: 48px;
}
.df-pressure-list__headers {
  display: grid;
  grid-template-columns: 60px 50px 1fr 140px 80px 180px;
  gap: 16px;
  padding: 14px 24px;
  background: rgba(0, 0, 0, 0.45);
  font-family: var(--df-mono);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.df-pressure-list__headers > :nth-child(4),
.df-pressure-list__headers > :nth-child(5) { text-align: center; }
.df-pressure-list__headers > :nth-child(6) { text-align: right; }
.df-pressure-row {
  display: grid;
  grid-template-columns: 60px 50px 1fr 140px 80px 180px;
  gap: 16px;
  padding: 16px 24px;
  align-items: center;
  background: var(--df-ink);
  color: var(--df-paper);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.df-pressure-row:hover { background: #14141a; }
.df-pressure-row--danger {
  background: linear-gradient(90deg, rgba(200, 16, 46, 0.22), rgba(200, 16, 46, 0.04));
}
.df-pressure-row--danger:hover { background: linear-gradient(90deg, rgba(200, 16, 46, 0.30), rgba(200, 16, 46, 0.08)); }
.df-pressure-row__rank {
  font-family: var(--df-mono);
  font-size: 13px;
  color: var(--df-accent);
  font-weight: 600;
}
.df-pressure-row__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--df-mono);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  flex-shrink: 0;
}
.df-pressure-row__avatar--photo {
  background-size: cover;
  background-position: center top;
  background-color: rgba(255, 255, 255, 0.08);
}
.df-pressure-row__info { min-width: 0; }
.df-pressure-row__name {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.008em;
  font-variation-settings: "opsz" 24;
  color: var(--df-paper);
  margin-bottom: 4px;
  line-height: 1.2;
}
.df-pressure-row__name a {
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.df-pressure-row__name a:hover { color: var(--df-paper); border-bottom-color: var(--df-accent); }
.df-pressure-row__separator { color: rgba(255, 255, 255, 0.3); }
.df-pressure-row__club {
  font-family: var(--df-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}
.df-pressure-row__form {
  display: flex;
  gap: 4px;
  justify-content: center;
}
.df-pressure-row__form .df-form__w,
.df-pressure-row__form .df-form__d,
.df-pressure-row__form .df-form__l {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  font-family: var(--df-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--df-paper);
}
.df-pressure-row__form .df-form__w { background: var(--df-positive); }
.df-pressure-row__form .df-form__d { background: rgba(255, 255, 255, 0.2); }
.df-pressure-row__form .df-form__l { background: var(--df-accent); }
.df-pressure-row__score {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 38px;
  line-height: 1;
  color: var(--df-accent);
  font-variant-numeric: tabular-nums;
  text-align: center;
  letter-spacing: -0.018em;
  font-variation-settings: "opsz" 60;
}
.df-pressure-row__note {
  font-family: var(--df-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-align: right;
}

.df-sack-methodology {
  background: var(--df-paper-warm);
  padding: 32px;
  border-left: 4px solid var(--df-accent);
  max-width: 800px;
}
.df-sack-methodology h3 {
  font-family: var(--df-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--df-accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.df-sack-methodology p {
  font-family: var(--df-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--df-ink-soft);
  margin-bottom: 14px;
}
.df-sack-methodology ul {
  font-family: var(--df-sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--df-ink-soft);
  padding-left: 18px;
  margin-bottom: 14px;
  list-style: disc;
}
.df-sack-methodology ul li { margin-bottom: 6px; }
.df-sack-methodology__refresh {
  font-family: var(--df-mono);
  font-size: 11px;
  color: var(--df-ink-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--df-rule);
}

/* ─── Sack-o-Meter mobile ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .df-pressure-list__headers,
  .df-pressure-row {
    grid-template-columns: 40px 40px 1fr 80px;
    gap: 10px;
    padding: 12px 16px;
  }
  .df-pressure-list__headers > :nth-child(4),
  .df-pressure-list__headers > :nth-child(5),
  .df-pressure-list__headers > :nth-child(6) { display: none; }
  .df-pressure-row__form,
  .df-pressure-row__note { display: none; }
  .df-pressure-row__score { font-size: 30px; }
}

/* ─── Skip link for accessibility ───────────────────────────────────────── */
.df-skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--df-ink);
  color: var(--df-paper);
  padding: 8px 16px;
  z-index: 1000;
  transition: top 0.15s ease;
}
.df-skip-link:focus { top: 0; color: var(--df-paper); }

/* ─── Team hub ──────────────────────────────────────────────────────────── */
.df-team-hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--df-rule);
}
.df-team-hero__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.df-team-hero__crest-wrap { flex-shrink: 0; }
.df-team-hero__crest {
  width: 120px;
  height: 120px;
  object-fit: contain;
}
.df-team-hero__content { flex: 1; }
.df-team-hero__kicker { margin-bottom: 16px; }
.df-team-hero__name {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--df-ink);
  margin-bottom: 20px;
  font-variation-settings: "opsz" 96;
}
.df-team-hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.df-team-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.df-team-hero__stat-num {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--df-ink);
  font-variant-numeric: tabular-nums;
}
.df-team-hero__stat-label {
  font-family: var(--df-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--df-ink-muted);
}
.df-team-hero__meta {
  font-family: var(--df-sans);
  font-size: 14px;
  color: var(--df-ink-muted);
}
.df-team-body {
  padding: 48px 0 80px;
}
.df-team-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
}
.df-team-grid__main { min-width: 0; }
.df-team-grid__aside { display: flex; flex-direction: column; gap: 32px; }
.df-team-section { margin-bottom: 48px; }
.df-team-section--placeholder {
  padding: 20px;
  background: var(--df-paper-warm);
  border: 1px dashed var(--df-rule-strong);
  border-radius: 2px;
}
.df-team-aside__title {
  font-family: var(--df-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--df-ink-muted);
  margin-bottom: 12px;
  font-weight: 600;
}
.df-team-aside__placeholder,
.df-team-aside__ground {
  font-family: var(--df-sans);
  font-size: 14px;
  color: var(--df-ink-soft);
  line-height: 1.5;
}

/* ─── Fixture page ──────────────────────────────────────────────────────── */
.df-fixture-hero {
  padding: 56px 0 48px;
  background: var(--df-paper-warm);
  border-bottom: 1px solid var(--df-rule);
}
.df-fixture-hero__kicker {
  text-align: center;
  margin-bottom: 28px;
}
.df-fixture-hero__teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.df-fixture-hero__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.df-fixture-hero__crest {
  width: 80px;
  height: 80px;
  object-fit: contain;
}
.df-fixture-hero__name {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--df-ink);
  font-variation-settings: "opsz" 36;
}
.df-fixture-hero__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--df-serif);
  color: var(--df-ink);
}
.df-fixture-hero__num {
  font-weight: 600;
  font-size: clamp(56px, 8vw, 96px);
  line-height: 1;
  letter-spacing: -0.012em;
  font-variant-numeric: tabular-nums;
  font-variation-settings: "opsz" 144;
}
.df-fixture-hero__sep {
  font-size: 32px;
  color: var(--df-ink-muted);
  margin: 0 8px;
  display: inline;
  font-weight: 400;
}
.df-fixture-hero__score .df-fixture-hero__num + .df-fixture-hero__sep + .df-fixture-hero__num,
.df-fixture-hero__score .df-fixture-hero__num + .df-fixture-hero__sep {
  display: inline;
}
.df-fixture-hero__score {
  flex-direction: row;
  gap: 4px;
  align-items: baseline;
}
.df-fixture-hero__v {
  font-family: var(--df-serif);
  font-weight: 400;
  font-style: italic;
  font-size: 36px;
  color: var(--df-ink-muted);
  font-variation-settings: "opsz" 60, "SOFT" 50, "WONK" 1;
}
.df-fixture-hero__when {
  font-family: var(--df-mono);
  font-size: 20px;
  color: var(--df-ink-soft);
  font-weight: 600;
}
.df-fixture-hero__live-badge {
  font-family: var(--df-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--df-paper);
  background: var(--df-accent);
  padding: 4px 10px;
  border-radius: 2px;
  margin-left: 12px;
  align-self: center;
  animation: df-pulse 2s infinite;
}
@keyframes df-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}
.df-fixture-hero__meta {
  font-family: var(--df-sans);
  font-size: 14px;
  color: var(--df-ink-muted);
  text-align: center;
  margin-top: 28px;
}

/* ─── Player / manager / referee profile ────────────────────────────────── */
.df-player-hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--df-rule);
}
.df-player-hero__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}
.df-player-hero__photo-wrap { flex-shrink: 0; }
.df-player-hero__photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--df-paper-warm);
}
.df-player-hero__content { flex: 1; }
.df-player-hero__kicker { margin-bottom: 16px; }
.df-player-hero__name {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--df-ink);
  margin-bottom: 16px;
  font-variation-settings: "opsz" 96;
}
.df-player-hero__meta {
  font-family: var(--df-sans);
  font-size: 14px;
  color: var(--df-ink-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.df-player-section { margin-bottom: 48px; }
.df-player-saga__dek {
  margin: 4px 0 16px;
  color: var(--df-ink-soft, #555);
  font-size: 0.95rem;
  line-height: 1.5;
}
.df-nm-candidates {
  margin: 0 0 12px;
  padding-left: 20px;
}
.df-nm-candidates li {
  margin-bottom: 6px;
  line-height: 1.5;
}
.df-psr-calc {
  border: 1px solid var(--df-line, #e2e2e2);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 28px;
}
.df-psr-calc__controls {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.df-psr-calc__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.85rem;
  font-weight: 600;
}
.df-psr-calc__field select,
.df-psr-calc__field input {
  padding: 8px 10px;
  border: 1px solid var(--df-line, #ccc);
  border-radius: 6px;
  font-size: 1rem;
}
.df-psr-calc__verdict {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 12px 0 0;
}
.df-psr-calc__result--ok .df-psr-calc__verdict { color: #1a7f37; }
.df-psr-calc__result--warn .df-psr-calc__verdict { color: #9a6700; }
.df-psr-calc__result--danger .df-psr-calc__verdict { color: #b42318; }
.df-psr-calc__share {
  background: none;
  border: 1px solid var(--df-line, #ccc);
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
  font-size: 0.85rem;
}
.df-quiz {
  border: 1px solid var(--df-line, #e2e2e2);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 28px;
}
.df-quiz__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--df-ink-soft, #555);
  margin-bottom: 12px;
}
.df-quiz__q { margin: 0 0 14px; font-size: 1.25rem; }
.df-quiz__clue {
  border-left: 3px solid var(--df-line, #ccc);
  padding: 8px 14px;
  margin-bottom: 14px;
  line-height: 1.7;
}
.df-quiz__options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}
.df-quiz__opt {
  padding: 12px 14px;
  border: 1px solid var(--df-line, #ccc);
  border-radius: 8px;
  background: none;
  font-size: 1rem;
  cursor: pointer;
  text-align: left;
}
.df-quiz__opt:hover:not(:disabled) { border-color: var(--df-ink-soft, #555); }
.df-quiz__opt--right { border-color: #1a7f37; background: rgba(26, 127, 55, 0.08); }
.df-quiz__opt--wrong { border-color: #b42318; background: rgba(180, 35, 24, 0.08); }
.df-quiz__why { margin: 14px 0 10px; font-size: 0.95rem; }
.df-quiz__next,
.df-quiz__share {
  padding: 10px 18px;
  border: 1px solid var(--df-ink, #111);
  border-radius: 8px;
  background: var(--df-ink, #111);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
}
.df-quiz__share {
  background: none;
  color: var(--df-ink, #111);
}
.df-player-stats {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--df-sans);
  font-size: 13px;
}
.df-player-stats thead {
  background: var(--df-ink);
  color: var(--df-paper);
}
.df-player-stats th {
  padding: 10px;
  text-align: left;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.df-player-stats td {
  padding: 10px;
  border-bottom: 1px solid var(--df-rule);
  font-variant-numeric: tabular-nums;
}
.df-player-stats tr:hover { background: var(--df-paper-warm); }

/* ─── League hub / archive heroes ───────────────────────────────────────── */
.df-league-hero {
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--df-rule);
}
.df-league-hero__kicker { margin-bottom: 18px; }
.df-league-hero__name {
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  letter-spacing: -0.012em;
  color: var(--df-ink);
  margin-bottom: 14px;
  font-variation-settings: "opsz" 96;
}
.df-league-hero__name em {
  font-style: italic;
  font-variation-settings: "opsz" 96, "SOFT" 50, "WONK" 1;
  color: var(--df-accent);
}
.df-league-hero__dek {
  font-family: var(--df-serif);
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  color: var(--df-ink-soft);
  max-width: 700px;
  font-variation-settings: "opsz" 36;
}
.df-league-body {
  /* Vertical only — must not reset the left/right gutter that .df-container
     supplies on the same element (the shorthand was zeroing it). */
  padding-top: 48px;
  padding-bottom: 80px;
}
.df-league-section {
  margin-bottom: 56px;
}
/* History season picker */
.df-history-picker {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 18px;
}
.df-history-picker label {
  font-family: var(--df-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--df-ink-muted);
}
.df-history-picker select {
  font-family: var(--df-mono);
  font-size: 14px;
  font-weight: 600;
  color: var(--df-ink);
  padding: 10px 34px 10px 14px;
  border: 1px solid var(--df-rule-strong, #cfcabf);
  background-color: var(--df-paper, #fff);
  border-radius: 4px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230f0f0f' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.df-history-picker select:focus { outline: 2px solid var(--df-accent); outline-offset: 1px; }
.df-history-caption {
  font-family: var(--df-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--df-ink-muted);
  margin: 0 0 14px;
}
.df-league-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}

/* ─── Club list (used on archive + league hub) ──────────────────────────── */
.df-club-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 24px;
}
.df-club-list li a {
  display: block;
  font-family: var(--df-serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.008em;
  padding: 8px 0;
  border-bottom: 1px solid var(--df-rule);
  color: var(--df-ink);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.df-club-list li a:hover {
  color: var(--df-accent);
  border-bottom-color: var(--df-accent);
}

/* ─── Player card (used in /players/ archive) ───────────────────────────── */
.df-player-card {
  display: block;
  color: inherit;
  text-align: center;
}
.df-player-card__photo {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  background: var(--df-paper-warm);
  margin-bottom: 12px;
  transition: transform 0.2s ease;
}
.df-player-card__photo--placeholder { background: var(--df-paper-warm); }
.df-player-card:hover .df-player-card__photo { transform: scale(1.04); }
.df-player-card__name {
  display: block;
  font-family: var(--df-serif);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.008em;
  color: var(--df-ink);
}
.df-player-card:hover .df-player-card__name { color: var(--df-accent); }

/* ─── Search form ───────────────────────────────────────────────────────── */
.df-search-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  margin-top: 24px;
}
.df-search-form__input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid var(--df-rule-strong);
  font-family: var(--df-sans);
  font-size: 15px;
  color: var(--df-ink);
  background: var(--df-paper);
}
.df-search-form__input:focus {
  outline: none;
  border-color: var(--df-accent);
}
.df-search-form__btn {
  padding: 12px 22px;
  background: var(--df-accent);
  color: var(--df-paper);
  border: none;
  font-family: var(--df-sans);
  font-size: 14px;
  font-weight: 600;
}
.df-search-form__btn:hover { background: var(--df-accent-dark); }

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}

/* ─── Mobile adjustments for new templates ─────────────────────────────── */
@media (max-width: 768px) {
  .df-team-hero__inner,
  .df-player-hero__inner { flex-direction: column; gap: 24px; text-align: center; }
  .df-team-hero__stats { justify-content: center; gap: 24px; }
  .df-team-grid { grid-template-columns: 1fr; gap: 32px; }
  .df-fixture-hero__teams { grid-template-columns: 1fr; gap: 16px; }
  .df-fixture-hero__num { font-size: 64px; }
  .df-league-grid { grid-template-columns: 1fr; gap: 32px; }
  .df-club-list { grid-template-columns: repeat(2, 1fr); }
  .df-destinations__grid { grid-template-columns: 1fr; gap: 16px; }
  .df-paired__grid { grid-template-columns: 1fr; gap: 20px; }
  .df-series__grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 1024px) {
  .df-club-list { grid-template-columns: repeat(3, 1fr); }
}

/* ─────────────────────────────────────────────────────────────────────────
   Football Finance: table, sub-nav, sort, tags, club hub, PSR bands
   Added with the iXBRL parser landing in May 2026.
   ───────────────────────────────────────────────────────────────────────── */

.df-finance-hero__counters {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 16px 0 8px;
    font-family: var(--df-font-sans);
    font-size: 14px;
    color: var(--df-fg-secondary);
}
.df-finance-hero__counters strong { color: var(--df-fg); font-weight: 600; }

/* Old inline subnav (kept for backward compat, not used on the main hub anymore) */
.df-finance-subnav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 24px 0 16px;
}

/* ───────── Editorial section index (replaces the old card grid) ─────────
   Magazine TOC look: numbered list, hairline rules, big serif headlines,
   oversized hero figure as the visual anchor.
   ────────────────────────────────────────────────────────────────────── */
.df-finance-index {
    padding: 72px 0 48px;
    background: var(--df-paper);
}
.df-finance-index__head {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding-bottom: 18px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--df-fg);
}
.df-finance-index__kicker {
    font-family: var(--df-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--df-fg-secondary);
}
.df-finance-index__heading {
    font-family: var(--df-serif);
    font-weight: 600;
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1;
    letter-spacing: -0.012em;
    margin: 0;
    font-variation-settings: "opsz" 96;
}
.df-finance-index__count {
    margin-left: auto;
    font-family: var(--df-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--df-fg-secondary);
}

/* Two columns on desktop, single on mobile. Each row is a complete editorial entry. */
.df-finance-index__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 56px;
}
.df-finance-index__item {
    border-bottom: 1px solid var(--df-border);
}
.df-finance-index__link {
    display: grid;
    grid-template-areas:
        "num section"
        "num title"
        ".   lede"
        ".   figure";
    grid-template-columns: 56px 1fr;
    align-items: start;
    gap: 4px 18px;
    padding: 28px 0;
    color: var(--df-fg);
    text-decoration: none;
    transition: color .12s ease;
}
.df-finance-index__link:hover { color: var(--df-accent); }
.df-finance-index__link:hover .df-finance-index__title { color: var(--df-accent); }

.df-finance-index__num {
    grid-area: num;
    font-family: var(--df-mono);
    font-size: 13px;
    font-weight: 600;
    color: var(--df-fg-secondary);
    padding-top: 4px;
    letter-spacing: 0.02em;
}

.df-finance-index__section {
    grid-area: section;
    font-family: var(--df-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--df-accent);
    margin-bottom: 2px;
}

.df-finance-index__title {
    grid-area: title;
    font-family: var(--df-serif);
    font-weight: 600;
    font-size: clamp(26px, 2.4vw, 32px);
    line-height: 1.1;
    letter-spacing: -0.012em;
    margin: 0;
    color: var(--df-fg);
    transition: color .12s ease;
    font-variation-settings: "opsz" 60;
}

.df-finance-index__lede {
    grid-area: lede;
    font-family: var(--df-sans);
    font-size: 14px;
    line-height: 1.55;
    margin: 8px 0 0;
    color: var(--df-fg-secondary);
}

.df-finance-index__figure-row {
    grid-area: figure;
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--df-border);
}
.df-finance-index__figure {
    font-family: var(--df-serif);
    font-weight: 600;
    font-size: clamp(34px, 4vw, 48px);
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--df-fg);
    font-variation-settings: "opsz" 96;
}
.df-finance-index__figure--loss { color: var(--df-accent); }
.df-finance-index__caption {
    font-family: var(--df-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--df-fg-secondary);
    line-height: 1.4;
}

/* The lower border on each row makes the bottom row a bit heavy on its own.
   Drop it on the last two (which form the bottom edge of the grid). */
.df-finance-index__list .df-finance-index__item:nth-last-of-type(-n+2):not(:only-child) { border-bottom: none; }

@media (max-width: 800px) {
    .df-finance-index__list { grid-template-columns: 1fr; column-gap: 0; }
    .df-finance-index__list .df-finance-index__item:nth-last-of-type(-n+2) { border-bottom: 1px solid var(--df-border); }
    .df-finance-index__list .df-finance-index__item:last-child { border-bottom: none; }
}

/* Old card system — kept for any other templates that still reference it,
   but no longer used on the finance landing. */
.df-finance-cards {
    padding: 56px 0 32px;
    background: var(--df-paper);
}
.df-finance-cards__heading {
    font-family: var(--df-serif);
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0 0 20px;
    color: var(--df-fg);
}
.df-finance-cards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 1100px) {
    .df-finance-cards__grid { grid-template-columns: repeat(2, 1fr); }
}
.df-finance-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px 28px 24px;
    border: 1px solid var(--df-border);
    border-radius: 8px;
    background: var(--df-paper);
    color: var(--df-fg);
    text-decoration: none;
    transition: border-color .15s ease, transform .15s ease, box-shadow .2s ease;
    min-height: 280px;
    /* Subtle default elevation so the card reads as a card, not a panel */
    box-shadow: 0 1px 2px rgba(15,15,15,0.04), 0 4px 12px rgba(15,15,15,0.06);
    overflow: hidden;
}
/* Coloured accent stripe at the top of each card (category cue) */
.df-finance-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--df-fg);
}
.df-finance-card--psr::before       { background: var(--df-accent); }
.df-finance-card--debt::before      { background: #1f8b4c; }
.df-finance-card--late::before      { background: #8a6300; }
.df-finance-card--netspend::before  { background: #0057b8; }
.df-finance-card--contracts::before { background: #6a3e9a; }
.df-finance-card--insolv::before    { background: #a64b00; }

.df-finance-card:hover {
    border-color: var(--df-fg);
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(15,15,15,0.08), 0 16px 32px rgba(15,15,15,0.10);
}
.df-finance-card--psr:hover { border-color: var(--df-accent); }
.df-finance-card__kicker {
    font-family: var(--df-mono);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--df-fg-secondary);
    margin-bottom: 12px;
}
.df-finance-card__title {
    font-family: var(--df-serif);
    font-weight: 600;
    font-size: 28px;
    letter-spacing: -0.01em;
    margin: 0 0 10px;
    color: var(--df-fg);
    font-variation-settings: "opsz" 36;
}
.df-finance-card__dek {
    font-family: var(--df-sans);
    font-size: 14px;
    line-height: 1.5;
    color: var(--df-fg-secondary);
    margin: 0 0 18px;
}
.df-finance-card__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px 0;
    border-top: 1px solid var(--df-border);
    margin-top: auto;
    margin-bottom: 14px;
}
.df-finance-card__stat-label {
    font-family: var(--df-mono);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--df-fg-tertiary, #999);
}
.df-finance-card__stat-value {
    font-family: var(--df-sans);
    font-size: 15px;
    font-weight: 600;
    color: var(--df-fg);
    margin-top: 4px;
}
.df-finance-card__stat-num {
    font-family: var(--df-sans);
    font-size: 18px;
    font-weight: 600;
    margin-top: 2px;
    font-variant-numeric: tabular-nums;
}
.df-finance-card__cta {
    font-family: var(--df-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--df-accent);
    margin-top: 2px;
}
.df-finance-card:hover .df-finance-card__cta { text-decoration: underline; }

/* Controls row above the table */
.df-finance-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 32px;
    margin-bottom: 8px;
}
.df-finance-subnav__link {
    display: block;
    padding: 18px 20px;
    border: 1px solid var(--df-border);
    border-radius: 6px;
    color: var(--df-fg);
    text-decoration: none;
    transition: border-color .15s, background .15s;
}
.df-finance-subnav__link:hover { border-color: var(--df-accent); background: rgba(0,0,0,.02); }
.df-finance-subnav__link--featured { border-color: var(--df-accent); }
.df-finance-subnav__title {
    display: block;
    font-family: var(--df-font-serif);
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 4px;
}
.df-finance-subnav__sub { display: block; font-size: 13px; color: var(--df-fg-secondary); }

.df-finance-sort {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
    font-size: 13px;
    font-family: var(--df-font-sans);
}
.df-finance-sort__label { color: var(--df-fg-secondary); margin-right: 4px; text-transform: uppercase; letter-spacing: .08em; font-size: 11px; }
.df-finance-sort__btn {
    padding: 4px 10px;
    border: 1px solid var(--df-border);
    border-radius: 999px;
    color: var(--df-fg);
    text-decoration: none;
    font-size: 12px;
}
.df-finance-sort__btn:hover { border-color: var(--df-fg); }
.df-finance-sort__btn--active { background: var(--df-fg); color: var(--df-bg); border-color: var(--df-fg); }

/* Tables */
.df-finance-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-family: var(--df-font-sans);
    font-size: 14px;
}
.df-finance-table thead {
    background: var(--df-ink, #0f0f0f);
}
.df-finance-table thead th {
    text-align: right;
    padding: 12px 14px;
    border-bottom: 1px solid var(--df-ink, #0f0f0f);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--df-paper, #ffffff);
    white-space: nowrap;
}
.df-finance-table thead th.df-finance-table__rank,
.df-finance-table thead th.df-finance-table__name,
.df-finance-table thead th.df-finance-table__text { text-align: left; }
.df-finance-table tbody td.df-finance-table__text { text-align: left; }

/* Recent-rumours table: almost all columns are text. Flip the default to
   left-align and only the numeric date column needs special handling. */
.df-rumour-recent .df-finance-table thead th,
.df-rumour-recent .df-finance-table tbody td {
    text-align: left;
}
.df-rumour-recent .df-finance-table .df-rumour-date-col { white-space: nowrap; }
.df-rumour-recent .df-finance-table .df-rumour-status-col { white-space: nowrap; }
.df-rumour-recent .df-finance-table tbody td { vertical-align: top; line-height: 1.45; }
.df-rumour-recent .df-rumour-confidence { display: inline-block; max-width: 360px; }

/* Sortable column headers — dual chevron up/down on every column */
.df-finance-sortable a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.df-finance-sortable a:hover { color: var(--df-accent); }
.df-finance-sortable--active a { color: var(--df-paper); }

.df-sort-chevrons {
    display: inline-flex;
    flex-direction: column;
    line-height: 0.85;
    font-size: 9px;
    align-items: center;
    justify-content: center;
}
.df-sort-chevron {
    color: rgba(255,255,255,0.35);
    transition: color .12s ease;
}
.df-sort-chevron--on { color: var(--df-accent); }
.df-finance-sortable a:hover .df-sort-chevron { color: rgba(255,255,255,0.7); }
.df-finance-sortable a:hover .df-sort-chevron--on { color: var(--df-accent); }

/* "Data not available" row */
.df-finance-row--stub td { color: var(--df-fg-secondary); }
.df-finance-table__unavailable {
    text-align: left !important;
    font-style: italic;
}
.df-finance-na__reason {
    display: inline-block;
    margin-left: 10px;
    color: var(--df-fg-tertiary, #999);
    font-size: 12px;
    font-style: italic;
}

.df-finance-table tbody td {
    padding: 12px;
    border-bottom: 1px solid var(--df-border);
    vertical-align: middle;
    text-align: right;
    font-variant-numeric: tabular-nums;
}
.df-finance-table tbody td.df-finance-table__rank,
.df-finance-table tbody td.df-finance-table__name { text-align: left; }

.df-finance-table tbody tr:hover { background: rgba(0,0,0,.02); }
.df-finance-table__rank { width: 44px; color: var(--df-fg-secondary); }
.df-finance-table__name { font-weight: 500; min-width: 220px; }
.df-finance-table__name a { color: var(--df-fg); text-decoration: none; }
.df-finance-table__name a:hover { color: var(--df-accent); }
.df-finance-table__name-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}
.df-finance-table__name-inner .df-finance-row__crest {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    object-fit: contain;
}
.df-finance-table__name-inner a { white-space: nowrap; }

/* ───────────────────────────────────────────────────────────────────────
   Team avatar (monogram tile in club brand colour).
   Used sitewide as a trademark-clean alternative to club crests.
   ─────────────────────────────────────────────────────────────────────── */
.df-team-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--df-mono);
    font-weight: 700;
    letter-spacing: 0.04em;
    border-radius: 4px;
    flex-shrink: 0;
    line-height: 1;
    text-transform: uppercase;
    user-select: none;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06);
}

/* Contracts destination */
.df-contracts-club {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--df-border);
}
.df-contracts-club__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.df-contracts-club__name {
    font-family: var(--df-serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--df-fg);
    text-decoration: none;
}
.df-contracts-club__name:hover { color: var(--df-accent); }
.df-contracts-club__count {
    margin-left: auto;
    font-family: var(--df-mono);
    font-size: 12px;
    color: var(--df-fg-secondary);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.df-contracts-list { list-style: none; padding: 0; margin: 0; font-family: var(--df-font-sans); font-size: 14px; }
.df-contracts-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1.4fr;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    align-items: center;
}
.df-contracts-row--urgent { background: #fff4d6; padding-left: 8px; padding-right: 8px; }
.df-contracts-row__name { font-weight: 500; }
.df-contracts-row__captain { color: var(--df-accent); font-weight: 700; margin-left: 4px; }
.df-contracts-row__pos { color: var(--df-fg-secondary); font-size: 13px; }
.df-contracts-row__end { font-variant-numeric: tabular-nums; text-align: right; }
.df-contracts-row__days { color: var(--df-fg-tertiary, #999); font-size: 12px; margin-left: 4px; }

/* Insolvency flags */
.df-insolv-flags { display: inline-flex; flex-wrap: wrap; gap: 6px; }
.df-insolv-flag {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    background: var(--df-border);
    color: var(--df-fg-secondary);
}
.df-insolv-flag--insolvency    { background: #fde2e2; color: var(--df-accent); }
.df-insolv-flag--going-concern { background: #fde2e2; color: var(--df-accent); }
.df-insolv-flag--hmrc-balance  { background: #ffe1c2; color: #a64b00; }
.df-insolv-flag--charges       { background: #fff4d6; color: #8a6300; }
.df-insolv-flag--overdue       { background: #fff4d6; color: #8a6300; }

/* Hint text under finance subsections */
.df-finance-section__hint {
    font-family: var(--df-font-sans);
    font-size: 12px;
    color: var(--df-fg-secondary);
    font-style: italic;
    margin: 12px 0 0;
    line-height: 1.5;
}
.df-finance-table__year { color: var(--df-fg-secondary); font-size: 12px; white-space: nowrap; }

.df-finance-num--loss { color: var(--df-accent); }
.df-finance-num--profit { color: var(--df-positive, #1f8b4c); }
.df-finance-na { color: var(--df-fg-tertiary, #999); font-style: italic; font-size: 13px; }

.df-finance-tag {
    display: inline-block;
    padding: 2px 6px;
    margin-left: 6px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    background: var(--df-border);
    color: var(--df-fg-secondary);
}
.df-finance-tag--seed { background: #f1f1ee; }

.df-finance-owner {
    display: block;
    font-size: 11px;
    color: var(--df-fg-secondary);
    margin-top: 4px;
    font-weight: 400;
    font-style: italic;
}

/* PSR band pills */
.df-psr-band {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.df-psr-band--safe { background: #e7f5ec; color: #1f8b4c; }
.df-psr-band--tight { background: #fff4d6; color: #8a6300; }
.df-psr-band--on-the-edge { background: #ffe1c2; color: #a64b00; }
.df-psr-band--breach { background: #fde2e2; color: var(--df-accent); }

/* Filed late */
.df-late-status { display: inline-block; padding: 4px 10px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.df-late-status--overdue { background: #fde2e2; color: var(--df-accent); }
.df-late-status--late { background: #fff4d6; color: #8a6300; }

/* Per-club hub */
.df-finance-club-hero__main {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-top: 12px;
}
.df-finance-club-hero__crest { flex-shrink: 0; }
.df-finance-club-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 32px 0;
    padding: 24px;
    border: 1px solid var(--df-border);
    border-radius: 6px;
    background: rgba(0,0,0,.015);
}
.df-finance-stat__note { font-size: 11px; color: var(--df-fg-tertiary,#999); margin-top: 4px; font-style: italic; }
.df-finance-club-owner, .df-finance-club-psc, .df-finance-club-address, .df-finance-club-incorp {
    font-family: var(--df-font-sans);
    font-size: 14px;
    margin: 8px 0;
}
.df-finance-filings { list-style: none; padding: 0; margin: 0; font-family: var(--df-font-sans); font-size: 13px; }
.df-finance-filings li { display: grid; grid-template-columns: 100px 120px 1fr; gap: 12px; padding: 8px 0; border-bottom: 1px solid var(--df-border); }
.df-filing-date { color: var(--df-fg-secondary); font-variant-numeric: tabular-nums; }
.df-filing-cat { color: var(--df-fg-secondary); font-size: 11px; text-transform: uppercase; letter-spacing: .04em; }

@media (max-width: 900px) {
    .df-finance-subnav { grid-template-columns: 1fr; }
    .df-finance-cards__grid { grid-template-columns: 1fr; }
    .df-finance-card { min-height: 0; padding: 22px; }
    .df-finance-club-stats { grid-template-columns: repeat(2, 1fr); }
    .df-finance-table { font-size: 12px; }
    .df-finance-table thead th, .df-finance-table tbody td { padding: 8px 6px; }
    .df-finance-filings li { grid-template-columns: 1fr; gap: 2px; }
}

/* ─────────────────────────────────────────────────────────────────────
   New finance destinations (Owner Watch, Richest, FFP Explained etc)
   ───────────────────────────────────────────────────────────────────── */
.df-finance-hero__callout {
    font-family: var(--df-serif);
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.35;
    color: var(--df-fg);
    margin: 18px 0 16px;
    padding: 16px 20px;
    background: rgba(0,0,0,0.04);
    border-left: 3px solid var(--df-accent);
    font-variation-settings: "opsz" 36;
}
.df-finance-hero__callout strong { color: var(--df-accent); font-weight: 700; }

/* Owner Watch */
.df-owner-block {
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--df-border);
}
.df-owner-block--multi { background: rgba(0,0,0,0.015); padding: 24px 24px 20px; border-radius: 4px; border: 1px solid var(--df-border); margin-bottom: 24px; }
.df-owner-block__head { display: flex; align-items: baseline; gap: 16px; margin-bottom: 16px; }
.df-owner-block__name { font-family: var(--df-serif); font-weight: 600; font-size: 24px; margin: 0; }
.df-owner-block__count { margin-left: auto; font-family: var(--df-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--df-fg-secondary); }
.df-owner-block__clubs { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 8px; }
.df-owner-club__link { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; padding: 8px 10px; text-decoration: none; color: var(--df-fg); border: 1px solid var(--df-border); border-radius: 4px; background: var(--df-paper); transition: border-color .12s; }
.df-owner-club__link:hover { border-color: var(--df-fg); }
.df-owner-club__name { font-weight: 500; font-size: 14px; }
.df-owner-club__league { grid-column: 2; font-size: 11px; color: var(--df-fg-secondary); text-transform: uppercase; letter-spacing: 0.06em; }
.df-owner-club__wages { grid-column: 3; grid-row: 1 / span 2; font-family: var(--df-mono); font-size: 12px; color: var(--df-fg-secondary); text-align: right; }

/* Richest — side-by-side rankings */
.df-finance-grid--richest { grid-template-columns: 1fr 1fr; gap: 36px; }
@media (max-width: 800px) { .df-finance-grid--richest { grid-template-columns: 1fr; gap: 24px; } }

/* FFP Explained — long-form article styling */
.df-finance-explainer__inner { max-width: 760px; }
.df-finance-explainer { padding-bottom: 80px; }
.df-finance-explainer h2 { font-family: var(--df-serif); font-weight: 600; font-size: clamp(24px, 2.5vw, 32px); margin: 48px 0 16px; line-height: 1.2; font-variation-settings: "opsz" 60; }
.df-finance-explainer p { font-family: var(--df-sans); font-size: 16px; line-height: 1.7; margin: 0 0 16px; color: var(--df-fg); }
.df-finance-explainer ul, .df-finance-explainer ol { font-family: var(--df-sans); font-size: 16px; line-height: 1.7; margin: 0 0 20px; padding-left: 24px; }
.df-finance-explainer li { margin-bottom: 8px; }
.df-finance-explainer strong { font-weight: 600; }
.df-finance-explainer__toc { background: rgba(0,0,0,0.04); padding: 20px 24px; border-left: 3px solid var(--df-fg); margin: 0 0 40px; }
.df-finance-explainer__toc-heading { font-family: var(--df-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--df-fg-secondary); margin: 0 0 10px; font-weight: 600; }
.df-finance-explainer__toc ol { font-family: var(--df-sans); font-size: 14px; line-height: 1.6; margin: 0; padding-left: 24px; }
.df-finance-explainer__toc a { color: var(--df-fg); text-decoration: none; }
.df-finance-explainer__toc a:hover { color: var(--df-accent); }
.df-finance-glossary dt { font-family: var(--df-serif); font-weight: 600; font-size: 18px; margin-top: 16px; color: var(--df-fg); }
.df-finance-glossary dd { font-family: var(--df-sans); font-size: 15px; line-height: 1.6; margin: 4px 0 0; color: var(--df-fg-secondary); padding-left: 0; }
.df-finance-explainer__cta { margin-top: 56px; padding: 28px; background: var(--df-ink, #0f0f0f); color: var(--df-paper); }
.df-finance-explainer__cta h2 { color: var(--df-paper); margin-top: 0; }
.df-finance-explainer__cta a { color: var(--df-accent); text-decoration: none; }
.df-finance-explainer__cta a:hover { color: var(--df-paper); }

/* Revenue Breakdown destination */
.df-revenue-list { list-style: none; padding: 0; margin: 0; }
.df-revenue-row { padding: 18px 0; border-bottom: 1px solid var(--df-border); }
.df-revenue-row__head { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.df-revenue-row__rank { font-family: var(--df-mono); font-size: 12px; color: var(--df-fg-secondary); width: 28px; }
.df-revenue-row__name { font-family: var(--df-serif); font-weight: 600; font-size: 20px; color: var(--df-fg); text-decoration: none; flex: 1; }
.df-revenue-row__name:hover { color: var(--df-accent); }
.df-revenue-row__total { font-family: var(--df-mono); font-size: 13px; color: var(--df-fg-secondary); text-transform: uppercase; letter-spacing: 0.06em; }
.df-revenue-bar { display: flex; height: 16px; border-radius: 2px; overflow: hidden; background: var(--df-border); margin-bottom: 8px; }
.df-revenue-bar__seg { display: block; height: 100%; transition: opacity .15s; }
.df-revenue-bar__seg:hover { opacity: 0.85; cursor: help; }
.df-revenue-bar__seg--broadcast  { background: #0057B8; }
.df-revenue-bar__seg--commercial { background: #1F8B4C; }
.df-revenue-bar__seg--matchday   { background: #EF6C00; }
.df-revenue-bar__seg--player     { background: #6A3E9A; }
.df-revenue-bar__seg--other      { background: #888; }
.df-revenue-row__legend { display: flex; flex-wrap: wrap; gap: 8px; }
.df-revenue-tag {
    font-family: var(--df-font-sans); font-size: 12px;
    padding: 2px 8px; border-radius: 3px;
    color: var(--df-fg);
}
.df-revenue-tag::before { content: ''; display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; vertical-align: middle; }
.df-revenue-tag--broadcast::before  { background: #0057B8; }
.df-revenue-tag--commercial::before { background: #1F8B4C; }
.df-revenue-tag--matchday::before   { background: #EF6C00; }
.df-revenue-tag--player::before     { background: #6A3E9A; }
.df-revenue-tag--other::before      { background: #888; }

/* Ownership network — D3 force graph */
.df-ownership-graph {
    position: relative;
    background: rgba(0,0,0,0.02);
    border: 1px solid var(--df-border);
    border-radius: 4px;
    margin: 12px 0 8px;
    overflow: hidden;
    cursor: grab;
}
.df-ownership-graph:active { cursor: grabbing; }
.df-ownership-graph svg { display: block; width: 100%; }

/* Clickable group index above the graph */
/* League filter on finance pages: give it room from the hero meta + below */
.df-finance-league-nav { gap: 10px; margin-top: 22px; }

.df-ownership-chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 28px 0 10px; }
.df-ownership-chip {
    font: inherit; font-size: 0.82rem; font-weight: 600;
    padding: 6px 13px; border: 1px solid var(--df-rule, #ddd); border-radius: 999px;
    background: #fff; color: var(--df-ink, #0f0f0f); cursor: pointer;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}
.df-ownership-chip:hover { border-color: var(--df-accent, #cc0000); }
.df-ownership-chip--active { background: var(--df-ink, #0f0f0f); color: #fff; border-color: var(--df-ink, #0f0f0f); }
.df-ownership-graph__hint { font-size: 0.78rem; color: var(--df-ink-muted, #777); margin: 0 0 14px; }
.df-ownership-tooltip {
    position: absolute;
    pointer-events: none;
    background: var(--df-ink, #0f0f0f);
    color: var(--df-paper, #fff);
    padding: 8px 12px;
    border-radius: 4px;
    font-family: var(--df-font-sans);
    font-size: 13px;
    line-height: 1.4;
    z-index: 10;
    transition: opacity 0.15s;
    max-width: 220px;
}
.df-ownership-tooltip span { color: rgba(255,255,255,0.7); font-size: 11px; }

.df-ownership-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin: 12px 0 40px;
    font-family: var(--df-font-sans);
    font-size: 12px;
    color: var(--df-fg-secondary);
}
.df-ownership-legend__item { display: inline-flex; align-items: center; gap: 6px; }
.df-ownership-legend__dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.df-ownership-legend__dot--owner    { background: #0f0f0f; }
.df-ownership-legend__dot--english  { background: var(--df-accent); }
.df-ownership-legend__dot--overseas { background: #bbb; }

.df-ownership-listings-heading {
    font-family: var(--df-serif);
    font-weight: 600;
    font-size: clamp(24px, 2.5vw, 32px);
    margin: 60px 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--df-fg);
}

.df-ownership-network {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--df-border);
}
.df-ownership-network__name {
    font-family: var(--df-serif);
    font-weight: 600;
    font-size: 26px;
    margin: 0 0 8px;
}
.df-ownership-network__ultimate { font-family: var(--df-font-sans); font-size: 14px; margin: 4px 0; }
.df-ownership-network__note { font-family: var(--df-font-sans); font-size: 13px; color: var(--df-fg-secondary); font-style: italic; margin: 4px 0 16px; }
.df-ownership-network__columns { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.df-ownership-network__columns h4 { font-family: var(--df-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--df-fg-secondary); margin: 0 0 10px; font-weight: 600; }
.df-ownership-network__columns ul { list-style: none; padding: 0; margin: 0; font-family: var(--df-font-sans); font-size: 14px; }
.df-ownership-network__columns li { padding: 6px 0; border-bottom: 1px solid rgba(0,0,0,0.04); }
.df-ownership-network__columns a { color: var(--df-fg); text-decoration: none; }
.df-ownership-network__columns a:hover { color: var(--df-accent); }
.df-ownership-country { font-size: 12px; color: var(--df-fg-secondary); }
.df-ownership-stake { font-family: var(--df-mono); font-size: 12px; color: var(--df-fg-secondary); margin-left: 8px; }

@media (max-width: 800px) {
    .df-ownership-network__columns { grid-template-columns: 1fr; gap: 16px; }
}

/* Section group headings on the finance landing */
.df-finance-index__group { margin-bottom: 40px; }
.df-finance-index__group-heading {
    font-family: var(--df-font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: var(--df-fg-secondary);
    margin: 32px 0 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--df-border);
}
.df-finance-index__group:first-of-type .df-finance-index__group-heading { margin-top: 0; }

/* Cross-link partial — sits at the bottom of every sub-destination */
.df-finance-more {
    padding: 56px 0 64px;
    background: rgba(0,0,0,0.025);
    border-top: 1px solid var(--df-border);
    margin-top: 56px;
}
.df-finance-more__heading {
    font-family: var(--df-serif);
    font-weight: 600;
    font-size: clamp(20px, 2vw, 26px);
    margin: 0 0 24px;
    color: var(--df-fg);
}
.df-finance-more__grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0;
    border-top: 1px solid var(--df-border);
    border-left: 1px solid var(--df-border);
}
.df-finance-more__item {
    border-right: 1px solid var(--df-border);
    border-bottom: 1px solid var(--df-border);
    background: var(--df-paper);
}
.df-finance-more__item a {
    display: block;
    padding: 14px 16px;
    text-decoration: none;
    color: var(--df-fg);
    transition: background .12s ease, color .12s ease;
    height: 100%;
}
.df-finance-more__item a:hover {
    background: var(--df-ink, #0f0f0f);
    color: var(--df-paper);
}
.df-finance-more__item a:hover .df-finance-more__kicker { color: var(--df-accent); }
.df-finance-more__kicker {
    display: block;
    font-family: var(--df-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--df-fg-secondary);
    margin-bottom: 4px;
}
.df-finance-more__title {
    display: block;
    font-family: var(--df-serif);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;
}

/* ─────────────────────────────────────────────────────────────────────
   Restructured landing: 3 featured cards → table → compact grid
   ───────────────────────────────────────────────────────────────────── */

/* Featured cards — 3 across, editorial scale, above the table */
.df-finance-featured {
    padding: 48px 0 24px;
}
.df-finance-featured__head {
    display: flex;
    align-items: baseline;
    gap: 16px;
    padding-bottom: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid var(--df-fg);
}
.df-finance-featured__kicker {
    font-family: var(--df-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--df-fg-secondary);
}
.df-finance-featured__heading {
    font-family: var(--df-serif);
    font-weight: 600;
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1;
    letter-spacing: -0.012em;
    margin: 0;
    font-variation-settings: "opsz" 96;
}

.df-finance-featured__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--df-border);
}
.df-finance-featured__item {
    border-right: 1px solid var(--df-border);
    border-bottom: 1px solid var(--df-border);
}
.df-finance-featured__item:last-child { border-right: none; }
.df-finance-featured__link {
    display: grid;
    grid-template-areas:
        "num section"
        "num title"
        ".   lede"
        ".   figure";
    grid-template-columns: 44px 1fr;
    gap: 4px 16px;
    padding: 22px 22px 22px 0;
    color: var(--df-fg);
    text-decoration: none;
    transition: color .12s ease;
}
.df-finance-featured__link:hover,
.df-finance-featured__link:hover .df-finance-featured__title {
    color: var(--df-accent);
}
.df-finance-featured__num {
    grid-area: num;
    font-family: var(--df-mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--df-fg-secondary);
    padding: 4px 0 0 22px;
}
.df-finance-featured__section {
    grid-area: section;
    font-family: var(--df-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--df-accent);
}
.df-finance-featured__title {
    grid-area: title;
    font-family: var(--df-serif);
    font-weight: 600;
    font-size: clamp(22px, 1.8vw, 26px);
    line-height: 1.15;
    letter-spacing: -0.012em;
    margin: 4px 0 0;
    transition: color .12s ease;
    font-variation-settings: "opsz" 60;
}
.df-finance-featured__lede {
    grid-area: lede;
    font-family: var(--df-sans);
    font-size: 13px;
    line-height: 1.5;
    margin: 8px 0 0;
    color: var(--df-fg-secondary);
}
.df-finance-featured__figure-row {
    grid-area: figure;
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid var(--df-border);
}
.df-finance-featured__figure {
    font-family: var(--df-serif);
    font-weight: 600;
    font-size: clamp(26px, 2.6vw, 34px);
    line-height: 1;
    letter-spacing: -0.02em;
    font-variation-settings: "opsz" 96;
}
.df-finance-featured__figure--loss { color: var(--df-accent); }
.df-finance-featured__caption {
    font-family: var(--df-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--df-fg-secondary);
    line-height: 1.4;
}

/* Compact card grid — below the table, 4 across */
.df-finance-compact {
    padding: 56px 0 64px;
    background: rgba(0,0,0,0.025);
    border-top: 1px solid var(--df-border);
    margin-top: 56px;
}
.df-finance-compact__head {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 24px;
}
.df-finance-compact__heading {
    font-family: var(--df-serif);
    font-weight: 600;
    font-size: clamp(22px, 2vw, 30px);
    margin: 0;
}
.df-finance-compact__count {
    margin-left: auto;
    font-family: var(--df-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--df-fg-secondary);
}

.df-finance-compact__grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--df-border);
    border-left: 1px solid var(--df-border);
}
.df-finance-compact__item {
    border-right: 1px solid var(--df-border);
    border-bottom: 1px solid var(--df-border);
    background: var(--df-paper);
    transition: background .15s ease;
}

/* Quilt pattern — alternating dark cards by default.
   In a 4-col grid the pattern is:
   row 1:  light  dark   light  dark
   row 2:  dark   light  dark   light
   row 3:  light  dark   light  dark
   Achieved via :nth-child(8n + offset) to flip each row. */
.df-finance-compact__item:nth-child(8n+2),
.df-finance-compact__item:nth-child(8n+4),
.df-finance-compact__item:nth-child(8n+5),
.df-finance-compact__item:nth-child(8n+7) {
    background: var(--df-ink, #0f0f0f);
}
.df-finance-compact__item:nth-child(8n+2) .df-finance-compact__link,
.df-finance-compact__item:nth-child(8n+4) .df-finance-compact__link,
.df-finance-compact__item:nth-child(8n+5) .df-finance-compact__link,
.df-finance-compact__item:nth-child(8n+7) .df-finance-compact__link {
    color: var(--df-paper);
}
.df-finance-compact__item:nth-child(8n+2) .df-finance-compact__section,
.df-finance-compact__item:nth-child(8n+4) .df-finance-compact__section,
.df-finance-compact__item:nth-child(8n+5) .df-finance-compact__section,
.df-finance-compact__item:nth-child(8n+7) .df-finance-compact__section {
    color: var(--df-accent);
}
.df-finance-compact__item:nth-child(8n+2) .df-finance-compact__caption,
.df-finance-compact__item:nth-child(8n+4) .df-finance-compact__caption,
.df-finance-compact__item:nth-child(8n+5) .df-finance-compact__caption,
.df-finance-compact__item:nth-child(8n+7) .df-finance-compact__caption {
    color: rgba(255,255,255,0.55);
}
.df-finance-compact__item:nth-child(8n+2) .df-finance-compact__figure-row,
.df-finance-compact__item:nth-child(8n+4) .df-finance-compact__figure-row,
.df-finance-compact__item:nth-child(8n+5) .df-finance-compact__figure-row,
.df-finance-compact__item:nth-child(8n+7) .df-finance-compact__figure-row {
    border-top-color: rgba(255,255,255,0.15);
}
.df-finance-compact__item:nth-child(8n+2) .df-finance-compact__figure,
.df-finance-compact__item:nth-child(8n+4) .df-finance-compact__figure,
.df-finance-compact__item:nth-child(8n+5) .df-finance-compact__figure,
.df-finance-compact__item:nth-child(8n+7) .df-finance-compact__figure {
    color: var(--df-paper);
}

.df-finance-compact__link {
    display: block;
    padding: 16px 18px;
    color: inherit;
    text-decoration: none;
    height: 100%;
    transition: color .12s ease;
}

/* Hover: every card (light or dark) shifts to accent red so the affordance
   reads consistently across the quilt. */
.df-finance-compact__item:hover { background: var(--df-accent) !important; }
.df-finance-compact__item:hover .df-finance-compact__link,
.df-finance-compact__item:hover .df-finance-compact__title,
.df-finance-compact__item:hover .df-finance-compact__figure { color: var(--df-paper); }
.df-finance-compact__item:hover .df-finance-compact__section,
.df-finance-compact__item:hover .df-finance-compact__caption { color: rgba(255,255,255,0.75); }
.df-finance-compact__item:hover .df-finance-compact__figure-row { border-top-color: rgba(255,255,255,0.3); }

.df-finance-compact__section {
    display: block;
    font-family: var(--df-mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--df-accent);
    margin-bottom: 4px;
}
.df-finance-compact__title {
    font-family: var(--df-serif);
    font-weight: 600;
    font-size: 17px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin: 0 0 12px;
    font-variation-settings: "opsz" 36;
}
.df-finance-compact__figure-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.07);
}
.df-finance-compact__figure {
    font-family: var(--df-serif);
    font-weight: 600;
    font-size: 22px;
    line-height: 1;
    letter-spacing: -0.015em;
    color: var(--df-fg);
}
.df-finance-compact__figure--loss { color: var(--df-accent); }
.df-finance-compact__figure--profit { color: var(--df-positive, #1f8b4c); }
.df-finance-compact__caption {
    font-family: var(--df-mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--df-fg-secondary);
    line-height: 1.4;
    flex: 1;
}

@media (max-width: 1000px) {
    .df-finance-featured__list { grid-template-columns: 1fr; }
    .df-finance-featured__item { border-right: none; }
    .df-finance-compact__grid { grid-template-columns: repeat(2, 1fr); }
    /* Recompute the quilt at 2 cols: 4n+2 and 4n+3 are dark, others light */
    .df-finance-compact__item:nth-child(8n+2),
    .df-finance-compact__item:nth-child(8n+4),
    .df-finance-compact__item:nth-child(8n+5),
    .df-finance-compact__item:nth-child(8n+7) {
        background: var(--df-paper);
    }
    .df-finance-compact__item:nth-child(8n+2) .df-finance-compact__link,
    .df-finance-compact__item:nth-child(8n+4) .df-finance-compact__link,
    .df-finance-compact__item:nth-child(8n+5) .df-finance-compact__link,
    .df-finance-compact__item:nth-child(8n+7) .df-finance-compact__link {
        color: var(--df-fg);
    }
    .df-finance-compact__item:nth-child(8n+2) .df-finance-compact__section,
    .df-finance-compact__item:nth-child(8n+4) .df-finance-compact__section,
    .df-finance-compact__item:nth-child(8n+5) .df-finance-compact__section,
    .df-finance-compact__item:nth-child(8n+7) .df-finance-compact__section {
        color: var(--df-accent);
    }
    .df-finance-compact__item:nth-child(8n+2) .df-finance-compact__caption,
    .df-finance-compact__item:nth-child(8n+4) .df-finance-compact__caption,
    .df-finance-compact__item:nth-child(8n+5) .df-finance-compact__caption,
    .df-finance-compact__item:nth-child(8n+7) .df-finance-compact__caption {
        color: var(--df-fg-secondary);
    }
    .df-finance-compact__item:nth-child(8n+2) .df-finance-compact__figure,
    .df-finance-compact__item:nth-child(8n+4) .df-finance-compact__figure,
    .df-finance-compact__item:nth-child(8n+5) .df-finance-compact__figure,
    .df-finance-compact__item:nth-child(8n+7) .df-finance-compact__figure {
        color: var(--df-fg);
    }
    .df-finance-compact__item:nth-child(8n+2) .df-finance-compact__figure-row,
    .df-finance-compact__item:nth-child(8n+4) .df-finance-compact__figure-row,
    .df-finance-compact__item:nth-child(8n+5) .df-finance-compact__figure-row,
    .df-finance-compact__item:nth-child(8n+7) .df-finance-compact__figure-row {
        border-top-color: rgba(0,0,0,0.07);
    }
    /* 2-col quilt: cards 2, 3, 6, 7, 10, 11 (etc) dark — i.e. positions 4n+2 and 4n+3 */
    .df-finance-compact__item:nth-child(4n+2),
    .df-finance-compact__item:nth-child(4n+3) {
        background: var(--df-ink, #0f0f0f);
    }
    .df-finance-compact__item:nth-child(4n+2) .df-finance-compact__link,
    .df-finance-compact__item:nth-child(4n+3) .df-finance-compact__link {
        color: var(--df-paper);
    }
    .df-finance-compact__item:nth-child(4n+2) .df-finance-compact__caption,
    .df-finance-compact__item:nth-child(4n+3) .df-finance-compact__caption {
        color: rgba(255,255,255,0.55);
    }
    .df-finance-compact__item:nth-child(4n+2) .df-finance-compact__figure,
    .df-finance-compact__item:nth-child(4n+3) .df-finance-compact__figure {
        color: var(--df-paper);
    }
    .df-finance-compact__item:nth-child(4n+2) .df-finance-compact__figure-row,
    .df-finance-compact__item:nth-child(4n+3) .df-finance-compact__figure-row {
        border-top-color: rgba(255,255,255,0.15);
    }
}
@media (max-width: 600px) {
    .df-finance-compact__grid { grid-template-columns: 1fr; }
    /* On mobile, simple alternating: odd cards light, even cards dark */
    .df-finance-compact__item:nth-child(4n+2),
    .df-finance-compact__item:nth-child(4n+3) { background: var(--df-paper); }
    .df-finance-compact__item:nth-child(4n+2) .df-finance-compact__link,
    .df-finance-compact__item:nth-child(4n+3) .df-finance-compact__link { color: var(--df-fg); }
    .df-finance-compact__item:nth-child(even) { background: var(--df-ink, #0f0f0f); }
    .df-finance-compact__item:nth-child(even) .df-finance-compact__link { color: var(--df-paper); }
    .df-finance-compact__item:nth-child(even) .df-finance-compact__caption { color: rgba(255,255,255,0.55); }
    .df-finance-compact__item:nth-child(even) .df-finance-compact__figure { color: var(--df-paper); }
    .df-finance-compact__item:nth-child(even) .df-finance-compact__figure-row { border-top-color: rgba(255,255,255,0.15); }
}

/* ─────────────────────────────────────────────────────────────────────
   Visual data cells — sparklines, ratio bars, rank pills, trend arrows
   ───────────────────────────────────────────────────────────────────── */
.df-cell-stat {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    line-height: 1;
}
.df-cell-stat__num {
    font-family: var(--df-font-sans);
    font-variant-numeric: tabular-nums;
    font-weight: 500;
}
.df-spark, .df-ratio-bar { display: block; }
.df-spark--empty, .df-ratio-bar--empty {
    color: var(--df-fg-tertiary, #999);
    font-size: 11px;
    font-style: italic;
}

.df-rank-pill {
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    font-family: var(--df-mono);
    font-size: 10px;
    color: var(--df-fg-secondary);
    background: rgba(0,0,0,0.04);
    padding: 2px 6px;
    border-radius: 3px;
    letter-spacing: 0.02em;
}
.df-rank-pill strong { font-weight: 700; color: var(--df-fg); }
.df-rank-pill__of { color: var(--df-fg-tertiary, #999); font-size: 9px; margin-left: 2px; }
.df-rank-pill--top { background: #e7f5ec; color: #1f8b4c; }
.df-rank-pill--top strong { color: #1f8b4c; }
.df-rank-pill--bottom { background: #fde2e2; color: var(--df-accent); }
.df-rank-pill--bottom strong { color: var(--df-accent); }

.df-trend {
    font-family: var(--df-mono);
    font-size: 10px;
    font-weight: 600;
    padding: 1px 4px;
    border-radius: 2px;
}
.df-trend--up   { color: var(--df-positive, #1f8b4c); }
.df-trend--down { color: var(--df-accent, #cc0000); }
.df-trend--flat { color: var(--df-fg-tertiary, #999); }

/* When sparklines + ratio bars sit in a tight table cell, give them a bit of
   breathing room from the number above. */
.df-finance-table .df-cell-stat svg { margin-top: 1px; }

/* ─── Through the years (per-club season archive) ────────────────────── */

.df-history-table .df-history-season {
    font-family: var(--df-mono);
    font-size: 14px;
    color: var(--df-fg-primary);
    text-decoration: none;
    border-bottom: 1px dotted var(--df-accent);
}
.df-history-table .df-history-season:hover { color: var(--df-accent); }
.df-history-wdl {
    display: inline-flex;
    gap: 4px;
    margin-left: 6px;
    font-family: var(--df-mono);
    font-size: 11px;
    font-weight: 600;
}
.df-wdl-w, .df-history-wdl .df-wdl-w { color: var(--df-positive, #1f8b4c); }
.df-wdl-d, .df-history-wdl .df-wdl-d { color: var(--df-fg-tertiary, #999); }
.df-wdl-l, .df-history-wdl .df-wdl-l { color: var(--df-accent, #cc0000); }
.df-history-gd.gd-pos { color: var(--df-positive, #1f8b4c); font-weight: 600; }
.df-history-gd.gd-neg { color: var(--df-accent, #cc0000); font-weight: 600; }
.df-history-fee { color: var(--df-fg-tertiary, #777); font-size: 12px; }
.df-history-blank { color: var(--df-fg-tertiary, #999); font-style: italic; font-size: 12px; }

/* Through-the-years tile on club dashboard */
.df-tty-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 12px;
}
@media (max-width: 700px) {
    .df-tty-grid { grid-template-columns: repeat(2, 1fr); }
}
.df-tty-card {
    display: block;
    padding: 12px;
    border: 1px solid var(--df-border, #e5e5e5);
    border-radius: 6px;
    text-decoration: none;
    color: var(--df-fg-primary);
    background: var(--df-bg-card, #fff);
    transition: border-color .15s, transform .15s;
}
.df-tty-card:hover {
    border-color: var(--df-accent);
    transform: translateY(-1px);
}
.df-tty-card__season {
    font-family: var(--df-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--df-accent);
}
.df-tty-card__mgr {
    font-size: 13px;
    color: var(--df-fg-secondary);
    margin-top: 2px;
}
.df-tty-card__line {
    font-family: var(--df-mono);
    font-size: 12px;
    color: var(--df-fg-secondary);
    margin-top: 8px;
}
.df-tty-card__line .gd-pos { color: var(--df-positive, #1f8b4c); font-weight: 600; }
.df-tty-card__line .gd-neg { color: var(--df-accent, #cc0000); font-weight: 600; }
.df-tty-card__editorial {
    margin-top: 8px;
    padding: 3px 6px;
    background: #fff4e5;
    color: #a25f00;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
    display: inline-block;
}

/* Per-season detail page */
.df-history-summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin: 24px 0;
}
@media (max-width: 700px) { .df-history-summary { grid-template-columns: repeat(2, 1fr); } }
.df-history-stat {
    padding: 16px;
    background: var(--df-bg-card, #fff);
    border: 1px solid var(--df-border, #e5e5e5);
    border-radius: 6px;
}
.df-history-stat__label {
    font-family: var(--df-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--df-fg-tertiary, #777);
}
.df-history-stat__value {
    font-size: 28px;
    font-weight: 700;
    margin-top: 4px;
    color: var(--df-fg-primary);
}
.df-history-stat__value.gd-pos { color: var(--df-positive, #1f8b4c); }
.df-history-stat__value.gd-neg { color: var(--df-accent, #cc0000); }
.df-history-stat__sub {
    font-size: 12px;
    color: var(--df-fg-secondary);
    margin-top: 4px;
}

.df-season-block {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--df-border, #e5e5e5);
}
.df-season-block h2 { font-size: 22px; margin: 0 0 8px; }
.df-season-xfer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 700px) { .df-season-xfer-grid { grid-template-columns: 1fr; } }
.df-season-xfer-list { list-style: none; padding: 0; margin: 12px 0 0; }
.df-season-xfer-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--df-border-soft, #eee);
}
.df-season-xfer-list li:last-child { border-bottom: none; }
.df-history-fixtures th, .df-history-fixtures td { font-size: 13px; }

/* Season review article block */
.df-season-review {
    margin: 32px 0;
    padding: 24px;
    background: var(--df-bg-card, #fff);
    border-left: 4px solid var(--df-accent);
    border-radius: 4px;
}
.df-season-review--empty {
    background: #fafafa;
    border-left-color: var(--df-fg-tertiary, #999);
}
.df-season-review__kicker {
    font-family: var(--df-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--df-accent);
    font-weight: 700;
}
.df-season-review__title { font-size: 26px; margin: 6px 0 8px; line-height: 1.2; }
.df-season-review__meta { font-size: 13px; color: var(--df-fg-secondary); margin: 0 0 16px; }
.df-season-review__body { font-size: 16px; line-height: 1.7; max-width: 70ch; }
.df-season-review__body p { margin: 0 0 1em; }
.df-season-review__cta {
    display: inline-block;
    margin-top: 8px;
    color: var(--df-accent);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid var(--df-accent);
}

/* ─── Editorial archive + single template ────────────────────────────── */

.df-era-pieces { margin-top: 48px; }
.df-era-pieces h2 { font-size: 22px; margin: 0 0 8px; }
.df-era-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}
@media (max-width: 900px) { .df-era-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .df-era-grid { grid-template-columns: 1fr; } }
.df-era-card {
    display: block;
    padding: 16px;
    background: var(--df-bg-card, #fff);
    border: 1px solid var(--df-border, #e5e5e5);
    border-radius: 6px;
    text-decoration: none;
    color: var(--df-fg-primary);
    transition: border-color .15s, transform .15s;
}
.df-era-card:hover { border-color: var(--df-accent); transform: translateY(-1px); }
.df-era-card__kind {
    font-family: var(--df-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--df-accent);
    font-weight: 700;
}
.df-era-card__title { font-size: 17px; margin: 6px 0 8px; line-height: 1.3; }
.df-era-card__excerpt { font-size: 13px; color: var(--df-fg-secondary); line-height: 1.5; margin: 0; }
.df-era-card__byline { font-size: 11px; color: var(--df-fg-tertiary, #888); margin: 8px 0 0; font-style: italic; }

/* Single editorial piece */
.df-editorial-single { background: var(--df-bg, #fafafa); }
.df-container--narrow { max-width: 760px; margin: 0 auto; padding: 0 var(--df-gutter); }
.df-editorial-hero {
    padding: 48px 0 32px;
    background: var(--df-bg-card, #fff);
    border-bottom: 1px solid var(--df-border, #e5e5e5);
}
.df-editorial-kicker {
    font-family: var(--df-mono);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--df-accent);
    font-weight: 700;
}
.df-editorial-kicker a { color: var(--df-accent); text-decoration: none; border-bottom: 1px dotted var(--df-accent); }
.df-editorial-title {
    font-size: 38px;
    line-height: 1.15;
    margin: 12px 0 16px;
    max-width: 24ch;
}
.df-editorial-dek {
    font-size: 19px;
    line-height: 1.4;
    color: var(--df-fg-secondary);
    max-width: 60ch;
    margin: 0 0 16px;
}
.df-editorial-meta {
    font-size: 13px;
    color: var(--df-fg-tertiary, #777);
    margin: 0;
}
.df-editorial-feature { margin: 32px 0; }
.df-editorial-feature img { width: 100%; height: auto; border-radius: 4px; }
.df-editorial-feature figcaption {
    font-size: 12px;
    color: var(--df-fg-tertiary, #888);
    margin-top: 6px;
    font-style: italic;
}

/* Captions inside long-read body content. Previously these inherited the 18px
   body font, which read like body copy. They are footnotes, so 12-13px italic
   muted — matches .df-article__body figcaption. */
.df-editorial-body figcaption,
.df-editorial-body .wp-element-caption,
.df-editorial-body .wp-block-image figcaption,
.df-article__body .wp-element-caption,
.df-article__body .wp-block-image figcaption {
    font-family: var(--df-sans);
    font-size: 13px;
    line-height: 1.45;
    color: var(--df-ink-muted, #6b6660);
    margin-top: 8px;
    font-style: italic;
    text-align: left;
}
.df-editorial-body {
    font-size: 18px;
    line-height: 1.7;
    color: var(--df-fg-primary);
    margin: 32px 0;
}
.df-editorial-body p { margin: 0 0 1.4em; }
.df-editorial-body h2 { font-size: 24px; margin: 1.6em 0 0.6em; }
.df-editorial-body h3 { font-size: 19px; margin: 1.4em 0 0.5em; }
.df-editorial-body blockquote {
    border-left: 3px solid var(--df-accent);
    padding-left: 18px;
    margin: 1.6em 0;
    font-style: italic;
    color: var(--df-fg-secondary);
}
.df-editorial-bio,
.df-editorial-sources,
.df-editorial-context {
    margin: 32px 0;
    padding: 16px 20px;
    background: var(--df-bg-card, #fff);
    border: 1px solid var(--df-border, #e5e5e5);
    border-radius: 4px;
}
.df-editorial-bio h3,
.df-editorial-sources h3,
.df-editorial-context h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 8px;
    color: var(--df-fg-tertiary, #888);
}
.df-editorial-sources ul,
.df-editorial-context ul { margin: 0; padding-left: 18px; font-size: 14px; line-height: 1.6; }

/* Match deep-dive on fixture page */
.df-fixture-deepdive {
    margin: 24px 0;
    padding: 20px;
    background: var(--df-bg-card, #fff);
    border-left: 4px solid var(--df-accent);
    border-radius: 4px;
}
.df-fixture-deepdive__kicker {
    font-family: var(--df-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--df-accent);
    font-weight: 700;
}
.df-fixture-deepdive__title { font-size: 24px; margin: 6px 0 6px; line-height: 1.25; }
.df-fixture-deepdive__byline { font-size: 13px; color: var(--df-fg-secondary); margin: 0 0 14px; }
.df-fixture-deepdive__body { font-size: 16px; line-height: 1.7; }
.df-fixture-deepdive__footer { margin-top: 12px; font-size: 14px; }
.df-fixture-ai-heading {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--df-fg-tertiary, #888);
    margin: 24px 0 4px;
}
.df-fixture-ai-subnote {
    font-size: 13px;
    color: var(--df-fg-tertiary, #888);
    margin: 0 0 12px;
}

.df-pagination {
    margin: 32px 0;
    text-align: center;
    font-family: var(--df-mono);
    font-size: 13px;
}
.df-pagination .page-numbers {
    display: inline-block;
    padding: 6px 12px;
    margin: 0 2px;
    border: 1px solid var(--df-border, #e5e5e5);
    border-radius: 3px;
    text-decoration: none;
    color: var(--df-fg-primary);
}
.df-pagination .page-numbers.current {
    background: var(--df-accent);
    color: #fff;
    border-color: var(--df-accent);
}

/* ─── Manager career history ─────────────────────────────────────────── */

.df-manager-career__summary {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 16px 0 24px;
}
@media (max-width: 700px) {
    .df-manager-career__summary { grid-template-columns: repeat(2, 1fr); }
}
.df-manager-career__stat {
    padding: 14px;
    background: var(--df-bg-card, #fff);
    border: 1px solid var(--df-border, #e5e5e5);
    border-radius: 6px;
}
.df-manager-career__num {
    display: block;
    font-family: var(--df-mono);
    font-size: 26px;
    font-weight: 700;
    color: var(--df-accent);
    line-height: 1.1;
}
.df-manager-career__label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--df-fg-tertiary, #777);
    margin-top: 4px;
}
.df-manager-career__table th, .df-manager-career__table td { vertical-align: top; }
.df-manager-career__years {
    font-family: var(--df-mono);
    font-weight: 600;
    color: var(--df-fg-primary);
}
.df-manager-career__now {
    display: inline-block;
    padding: 1px 6px;
    margin-left: 4px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--df-accent);
    color: #fff;
    border-radius: 3px;
    vertical-align: middle;
}
.df-manager-career__current {
    background: rgba(204, 0, 0, 0.03);
}
.df-manager-career__archive-link {
    font-size: 11px;
    color: var(--df-fg-tertiary, #777);
    text-decoration: none;
    border-bottom: 1px dotted var(--df-fg-tertiary, #999);
}
.df-manager-career__archive-link:hover {
    color: var(--df-accent);
    border-color: var(--df-accent);
}
.df-manager-career__honours {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
}
.df-manager-career__honours li {
    padding: 2px 0;
    color: var(--df-fg-secondary);
}
.df-manager-career__honours li::before {
    content: '\2022';
    color: var(--df-accent);
    font-weight: 700;
    margin-right: 6px;
}

.df-manager-list__club--past { color: var(--df-fg-tertiary, #777); font-style: italic; }
.df-manager-list__trophies { color: var(--df-accent); font-weight: 600; }

.df-managers-filter__btn--accent {
    background: var(--df-accent);
    color: #fff;
    border-color: var(--df-accent);
}
.df-managers-filter__btn--accent:hover {
    opacity: 0.9;
}

.df-dash-stadium__details {
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 4px 12px;
    margin: 12px 0;
    font-size: 13px;
}
.df-dash-stadium__details dt {
    font-weight: 600;
    color: var(--df-fg-tertiary, #777);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.05em;
}
.df-dash-stadium__details dd { margin: 0; }
.df-dash-stadium__note {
    font-size: 12px;
    color: var(--df-fg-secondary);
    line-height: 1.5;
    margin: 8px 0 4px;
    padding: 8px 10px;
    background: var(--df-bg-card, #fafafa);
    border-left: 3px solid var(--df-accent);
}
.df-dash-stadium__source {
    font-size: 12px;
    margin: 8px 0 0;
}

/* ─── Latest match reports rail ─────────────────────────────────────── */

.df-mreports-rail { padding: 48px 0; }
.df-mreports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 16px;
}
@media (max-width: 900px) {
    .df-mreports-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .df-mreports-grid { grid-template-columns: 1fr; }
}
.df-mreport-card {
    display: block;
    padding: 18px;
    background: var(--df-bg-card, #fff);
    border: 1px solid var(--df-border, #e5e5e5);
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s, transform 0.15s;
}
.df-mreport-card:hover {
    border-color: var(--df-accent);
    transform: translateY(-2px);
}
.df-mreport-card__kicker {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--df-accent);
    margin-bottom: 8px;
}
.df-mreport-card__score {
    font-size: 18px;
    line-height: 1.3;
    margin: 0 0 10px;
    font-weight: 600;
}
.df-mreport-card__goals {
    font-family: var(--df-mono);
    font-weight: 700;
    color: var(--df-accent);
    margin: 0 4px;
}
.df-mreport-card__excerpt {
    font-size: 13px;
    line-height: 1.55;
    color: var(--df-fg-secondary);
    margin: 0 0 8px;
}
.df-mreport-card__date {
    font-size: 11px;
    color: var(--df-fg-tertiary, #777);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Make scores in the Last 5 results tile linkable + flag rows with reports */
.df-dash-results__score--link {
    text-decoration: none;
    color: inherit;
    font-family: var(--df-mono);
    border-bottom: 1px dotted transparent;
    transition: border-color 0.15s, color 0.15s;
}
.df-dash-results__score--link:hover {
    color: var(--df-accent);
    border-bottom-color: var(--df-accent);
}
.df-dash-results__score--report::after {
    content: '\B7'; /* middle dot */
    color: var(--df-accent);
    margin-left: 4px;
    font-size: 14px;
}

/* ─── Recent rumours list on /transfers/rumour-sources/ ─────────────── */

.df-rumour-recent { margin: 40px 0; }
.df-rumour-confidence {
    font-size: 12px;
    color: var(--df-ink-soft);
    font-style: italic;
}
.df-rumour-status {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 2px 6px;
    border-radius: 3px;
    margin-right: 4px;
}
.df-rumour-status--pending { background: #fff5d6; color: #8a6500; }
.df-rumour-status--confirmed { background: #d9f0dd; color: #1c5b25; }
.df-rumour-status--expired { background: #f3d6d6; color: #8a1c1c; }
.df-rumour-source-link {
    font-size: 11px;
    color: var(--df-ink-muted);
    text-decoration: none;
    border-bottom: 1px dotted var(--df-ink-muted);
}
.df-rumour-source-link:hover {
    color: var(--df-accent);
    border-color: var(--df-accent);
}

/* ─── Tier 1 X-API rumour rail on /transfer-rumours/ ────────────────── */

.df-rumours-tier1 {
    margin-bottom: 48px;
    padding: 24px;
    background: var(--df-paper-warm, #faf8f5);
    border-left: 4px solid var(--df-accent);
}
.df-rumours-tier1__header { margin-bottom: 16px; }
.df-rumours-tier1__title {
    font-family: var(--df-serif);
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}
.df-rumours-tier1__dek {
    font-size: 13px;
    color: var(--df-ink-muted);
    margin: 0;
}
.df-rumours-tier1__dek a {
    color: var(--df-accent);
    border-bottom: 1px dotted var(--df-accent);
}
.df-rumours-tier1__list { margin: 0; padding: 0; list-style: none; }
.df-rumour-tier1-row {
    padding: 12px 0;
    border-bottom: 1px solid var(--df-rule);
}
.df-rumour-tier1-row:last-child { border-bottom: none; }
.df-rumour-tier1-row__main {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 4px;
}
.df-rumour-tier1-row__player {
    font-family: var(--df-serif);
    font-size: 17px;
    font-weight: 600;
    color: var(--df-ink);
}
.df-rumour-tier1-row__move {
    font-size: 13px;
    color: var(--df-ink-soft);
}
.df-rumour-tier1-row__arrow {
    color: var(--df-accent);
    font-weight: 700;
    margin: 0 4px;
}
.df-rumour-tier1-row__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--df-ink-muted);
}
.df-rumour-tier1-row__confidence {
    font-style: italic;
    color: var(--df-ink-soft);
}
.df-rumour-tier1-row__byline { color: var(--df-ink-soft); }
.df-rumour-tier1-row__byline .df-rumour-handle {
    margin-left: 4px;
    color: var(--df-ink-muted);
    font-size: 11px;
}
.df-rumour-tier1-row__date {
    font-family: var(--df-mono);
    font-size: 11px;
    color: var(--df-ink-muted);
}
.df-rumours-publisher-header {
    margin: 32px 0 16px;
    padding-top: 16px;
    border-top: 1px solid var(--df-rule);
}
.df-rumours-publisher-header__title {
    font-family: var(--df-serif);
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 4px;
    letter-spacing: -0.01em;
}
.df-rumours-publisher-header__dek {
    font-size: 13px;
    color: var(--df-ink-muted);
    margin: 0;
}

/* ─── Rumour landing page (WOW redesign) ──────────────────────────────
   Mobile-first. Card stack on phones, 2-col on tablet, 3-col + hero on
   desktop. Each card is the editorial unit — journalist photo, club
   monograms, player face, confidence pill, quote, source link.
*/

.df-rumour-page { padding-bottom: 60px; }

/* Hero / page header */
.df-rumour-hero {
    background: linear-gradient(180deg, var(--df-paper-warm, #faf8f5) 0%, var(--df-paper) 100%);
    padding: 32px 0 24px;
    border-bottom: 1px solid var(--df-rule);
}
.df-rumour-hero__kicker { margin-bottom: 8px; }
.df-rumour-hero__title {
    font-family: var(--df-serif);
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 600;
    margin: 0 0 12px;
    color: var(--df-ink);
}
.df-rumour-hero__dek {
    font-size: clamp(15px, 2vw, 17px);
    color: var(--df-ink-soft);
    line-height: 1.5;
    margin: 0 0 16px;
    max-width: 680px;
}
.df-rumour-hero__ticker {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--df-ink-soft);
    padding: 8px 12px;
    background: rgba(200, 16, 46, 0.04);
    border-left: 3px solid var(--df-accent);
    border-radius: 4px;
    max-width: 720px;
}
.df-rumour-hero__pulse {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--df-accent);
    animation: df-pulse 1.6s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes df-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.6); transform: scale(1); }
    50%      { box-shadow: 0 0 0 8px rgba(200, 16, 46, 0); transform: scale(1.15); }
}
.df-rumour-hero__source-link {
    margin-left: auto;
    font-size: 12px;
    color: var(--df-ink-muted);
    text-decoration: none;
    border-bottom: 1px dotted var(--df-ink-muted);
}
.df-rumour-hero__source-link:hover { color: var(--df-accent); border-color: var(--df-accent); }

/* Filter chips */
.df-rumour-filters {
    padding: 16px 0;
    border-bottom: 1px solid var(--df-rule);
    background: var(--df-paper);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    background: rgba(255,255,255,0.92);
}
.df-rumour-filters__clear {
    display: inline-block;
    font-family: var(--df-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--df-accent);
    text-decoration: none;
    margin-bottom: 12px;
}
.df-rumour-filters__group {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 2px;
}
.df-rumour-filters__group::-webkit-scrollbar { display: none; }
.df-rumour-filters__group:last-child { margin-bottom: 0; }
.df-rumour-filters__label {
    font-family: var(--df-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--df-ink-muted);
    flex-shrink: 0;
    min-width: 60px;
}
.df-rumour-filters__chips {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    flex: 1;
}
.df-rumour-filters__chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--df-ink-soft);
    background: var(--df-paper-warm);
    border: 1px solid var(--df-rule);
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.15s;
    flex-shrink: 0;
}
.df-rumour-filters__chip:hover {
    border-color: var(--df-accent);
    color: var(--df-accent);
}
.df-rumour-filters__chip.is-active {
    background: var(--df-ink);
    color: #fff;
    border-color: var(--df-ink);
}
.df-rumour-filters__chip--club { padding-left: 6px; }
.df-rumour-filters__chip-mono {
    display: inline-block;
    width: 22px; height: 22px;
    border-radius: 50%;
    color: #fff;
    font-family: var(--df-mono);
    font-size: 10px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
    flex-shrink: 0;
}

/* Hero card label */
.df-rumour-hero-card {
    margin: 24px 0 32px;
}
.df-rumour-hero-card__label {
    font-family: var(--df-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--df-accent);
    font-weight: 700;
    margin-bottom: 12px;
}

/* Grid of cards */
.df-rumour-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 24px 0;
}
@media (min-width: 720px) {
    .df-rumour-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (min-width: 1100px) {
    .df-rumour-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

/* ─── Individual rumour card ───────────────────────────────────────── */

.df-rumour-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
    background: var(--df-paper);
    border: 1px solid var(--df-rule);
    border-radius: 8px;
    transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.df-rumour-card:hover {
    border-color: var(--df-ink-muted);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px -8px rgba(0,0,0,0.08);
}
.df-rumour-card--hero {
    background: linear-gradient(135deg, #fafafa 0%, var(--df-paper-warm) 100%);
    border: 2px solid var(--df-ink);
    padding: 28px;
}
.df-rumour-card--done {
    border-color: var(--df-positive, #2a8e3a);
    background: rgba(42, 142, 58, 0.03);
}
.df-rumour-card__done-stamp {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 10px;
    background: var(--df-positive, #2a8e3a);
    color: #fff;
    font-family: var(--df-mono);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 3px;
    transform: rotate(2deg);
}

/* Journalist row at top */
.df-rumour-card__journalist {
    display: flex;
    align-items: center;
    gap: 10px;
}
.df-rumour-card__journo-photo {
    width: 36px; height: 36px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--df-paper-warm);
    flex-shrink: 0;
}
.df-rumour-card__journo-photo--placeholder { background: var(--df-rule); }
.df-rumour-card__journo-name {
    flex: 1;
    min-width: 0;
    font-size: 13px;
    line-height: 1.3;
}
.df-rumour-card__journo-name strong { display: block; color: var(--df-ink); font-weight: 600; }
.df-rumour-card__journo-handle {
    color: var(--df-ink-muted);
    font-size: 11px;
    text-decoration: none;
}
.df-rumour-card__confidence {
    flex-shrink: 0;
    padding: 4px 10px;
    border-radius: 999px;
    font-family: var(--df-mono);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.df-rumour-card__confidence--here-we-go { background: var(--df-accent); color: #fff; }
.df-rumour-card__confidence--medical    { background: #ff8c00; color: #fff; }
.df-rumour-card__confidence--advanced   { background: #ffc107; color: #000; }
.df-rumour-card__confidence--interest   { background: #e0e0e0; color: var(--df-ink); }
.df-rumour-card__confidence--exit-talks { background: #6c757d; color: #fff; }
.df-rumour-card__confidence--rumour     { background: var(--df-paper-warm); color: var(--df-ink-soft); border: 1px solid var(--df-rule); }

/* Club from → club to row */
.df-rumour-card__move {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px;
    background: var(--df-paper-warm);
    border-radius: 6px;
    font-size: 12px;
}
.df-rumour-card__club {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    color: var(--df-ink);
    min-width: 0;
}
.df-rumour-card__club-mono {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: #fff;
    font-family: var(--df-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}
.df-rumour-card__club-mono--unknown { background: var(--df-rule); color: var(--df-ink-muted); }
.df-rumour-card__club-name {
    font-size: 11px;
    text-align: center;
    line-height: 1.2;
    color: var(--df-ink-soft);
    max-width: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.df-rumour-card__arrow {
    color: var(--df-accent);
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Player block */
.df-rumour-card__player {
    display: flex;
    align-items: center;
    gap: 12px;
}
.df-rumour-card__player-photo {
    width: 56px; height: 56px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--df-paper-warm);
    flex-shrink: 0;
}
.df-rumour-card__player-name {
    flex: 1;
    font-family: var(--df-serif);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--df-ink);
}
.df-rumour-card__player-name a { color: inherit; text-decoration: none; }
.df-rumour-card__player-name a:hover { color: var(--df-accent); }
.df-rumour-card__fee {
    font-family: var(--df-mono);
    font-size: 15px;
    font-weight: 700;
    color: var(--df-accent);
    flex-shrink: 0;
}

/* Quote */
.df-rumour-card__quote {
    margin: 0;
    padding: 0;
    font-family: var(--df-serif);
    font-size: 14px;
    font-style: italic;
    color: var(--df-ink-soft);
    line-height: 1.45;
    border-left: 3px solid var(--df-accent);
    padding-left: 12px;
}

/* Footer */
.df-rumour-card__footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--df-rule);
    font-size: 12px;
    color: var(--df-ink-muted);
    flex-wrap: wrap;
}
.df-rumour-card__when {
    font-family: var(--df-mono);
    font-size: 11px;
}
.df-rumour-card__corro {
    color: var(--df-accent);
    font-weight: 600;
}
.df-rumour-card__embed-toggle {
    margin-left: auto;
    background: transparent;
    border: 1px solid var(--df-rule);
    border-radius: 4px;
    padding: 5px 10px;
    font-family: var(--df-sans);
    font-size: 11px;
    color: var(--df-ink-soft);
    cursor: pointer;
    transition: all 0.15s;
}
.df-rumour-card__embed-toggle:hover {
    border-color: var(--df-accent);
    color: var(--df-accent);
}
.df-rumour-card__embed-toggle-icon {
    font-family: var(--df-mono);
    margin-right: 4px;
}
.df-rumour-card__embed {
    margin-top: 12px;
}
.df-rumour-card__embed .twitter-tweet { margin: 0 !important; }

/* Hero card variant: bigger player name, side-by-side layout on desktop */
@media (min-width: 720px) {
    .df-rumour-card--hero {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 24px;
        align-items: start;
    }
    .df-rumour-card--hero .df-rumour-card__journalist {
        grid-column: 1 / -1;
    }
    .df-rumour-card--hero .df-rumour-card__player-name {
        font-size: clamp(28px, 4vw, 40px);
    }
    .df-rumour-card--hero .df-rumour-card__quote {
        font-size: 16px;
    }
    .df-rumour-card--hero .df-rumour-card__footer {
        grid-column: 1 / -1;
    }
}

/* Scorecard (data view at bottom) */
.df-rumour-scorecard {
    margin-top: 60px;
    padding: 40px 0;
    background: var(--df-paper-warm);
    border-top: 1px solid var(--df-rule);
}
.df-rumour-scorecard__header { margin-bottom: 20px; }
.df-rumour-scorecard__title {
    font-family: var(--df-serif);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0 0 6px;
}
.df-rumour-scorecard__dek {
    font-size: 14px;
    color: var(--df-ink-soft);
    max-width: 680px;
    margin: 0;
}

/* Empty states */
.df-rumour-empty {
    padding: 32px;
    background: var(--df-paper-warm);
    border: 1px dashed var(--df-rule);
    border-radius: 8px;
    text-align: center;
    margin: 24px 0;
}
.df-rumour-empty h3 {
    font-family: var(--df-serif);
    font-size: 20px;
    margin: 0 0 8px;
}
.df-rumour-empty p {
    color: var(--df-ink-soft);
    margin: 0;
    font-size: 14px;
}

/* Publisher card variant — used on /transfer-rumours/ for RSS headlines */
.df-rumour-card--publisher {
    background: var(--df-paper-warm);
}
.df-rumour-card__journo-photo--publisher {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--df-ink);
    color: #fff;
    font-family: var(--df-mono);
    font-size: 14px;
    font-weight: 700;
}
.df-rumour-card__confidence--publisher {
    background: var(--df-ink);
    color: #fff;
}
.df-rumour-card__publisher-headline {
    font-family: var(--df-serif);
    font-size: 19px;
    line-height: 1.25;
    font-weight: 600;
    margin: 0;
    letter-spacing: -0.01em;
}
.df-rumour-card__publisher-headline a {
    color: var(--df-ink);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s, color 0.15s;
}
.df-rumour-card__publisher-headline a:hover {
    color: var(--df-accent);
    border-bottom-color: var(--df-accent);
}
.df-rumour-card__publisher-link {
    margin-left: auto;
    font-family: var(--df-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--df-ink-muted);
    text-decoration: none;
}
.df-rumour-card__publisher-link:hover { color: var(--df-accent); }

/* Section nav above the rumour hero. Sits like a breadcrumb strip, not a
   heavy tab row. Scrolls horizontally on mobile so all 7 destinations
   remain reachable. */
.df-rumour-section-nav {
    padding: 14px 0 12px;
    border-bottom: 1px solid var(--df-rule);
    background: var(--df-paper);
}
.df-rumour-section-nav .df-tab-nav {
    display: flex;
    gap: 4px;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    margin: 0;
    padding: 0;
}
.df-rumour-section-nav .df-tab-nav::-webkit-scrollbar { display: none; }
.df-rumour-section-nav .df-tab-nav__item {
    flex-shrink: 0;
    padding: 6px 12px;
    font-family: var(--df-sans);
    font-size: 13px;
    font-weight: 500;
    color: var(--df-ink-muted);
    text-decoration: none;
    border-radius: 4px;
    transition: color 0.15s, background 0.15s;
    white-space: nowrap;
}
.df-rumour-section-nav .df-tab-nav__item:hover {
    color: var(--df-ink);
    background: var(--df-paper-warm);
}
.df-rumour-section-nav .df-tab-nav__item.is-active {
    color: var(--df-ink);
    font-weight: 600;
    background: var(--df-paper-warm);
    border-bottom: 2px solid var(--df-accent);
    border-radius: 4px 4px 0 0;
}

/* ─── Rumour heat meter ─────────────────────────────────────────────── */

/* Thin bar across the top of every card, filled proportional to heat */
.df-rumour-card { position: relative; overflow: hidden; }
.df-rumour-card__heat-bar {
    position: absolute;
    top: 0; left: 0;
    height: 4px;
    width: 100%;
    background: var(--df-rule);
    z-index: 1;
}
.df-rumour-card__heat-bar-fill {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #3a8df0 0%, #f0c238 50%, #c8102e 85%, #8a0a1e 100%);
    transition: width 0.4s ease-out;
}

/* Heat badge in the top-right, sat above the journalist row */
.df-rumour-card__heat {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1;
    z-index: 2;
    padding: 4px 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.df-rumour-card__heat-num {
    font-family: var(--df-mono);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.df-rumour-card__heat-label {
    font-family: var(--df-mono);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 1px;
}

/* Heat tier colours — drives both the badge text and the card border accent */
.df-rumour-card--heat-boiling .df-rumour-card__heat-num,
.df-rumour-card--heat-boiling .df-rumour-card__heat-label { color: #8a0a1e; }
.df-rumour-card--heat-hot     .df-rumour-card__heat-num,
.df-rumour-card--heat-hot     .df-rumour-card__heat-label { color: var(--df-accent); }
.df-rumour-card--heat-warm    .df-rumour-card__heat-num,
.df-rumour-card--heat-warm    .df-rumour-card__heat-label { color: #c87a00; }
.df-rumour-card--heat-tepid   .df-rumour-card__heat-num,
.df-rumour-card--heat-tepid   .df-rumour-card__heat-label { color: #888; }
.df-rumour-card--heat-cold    .df-rumour-card__heat-num,
.df-rumour-card--heat-cold    .df-rumour-card__heat-label { color: #6688aa; }

/* Boiling cards get an extra pulsing accent so the user-eye lands on them */
.df-rumour-card--heat-boiling .df-rumour-card__heat {
    animation: df-heat-pulse 2.4s ease-in-out infinite;
}
@keyframes df-heat-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(200, 16, 46, 0.4); }
    50%      { box-shadow: 0 0 0 6px rgba(200, 16, 46, 0); }
}

/* Confidence pill gets nudged left so it doesn't overlap the heat badge */
.df-rumour-card__journalist .df-rumour-card__confidence { margin-right: 56px; }

/* Heat filter pill styling */
.df-rumour-filters__chip--heat {
    background: linear-gradient(90deg, rgba(58,141,240,0.08) 0%, rgba(200,16,46,0.12) 100%);
}
.df-rumour-filters__chip--heat.is-active {
    background: var(--df-accent);
    border-color: var(--df-accent);
    color: #fff;
}

/* Hero card heat badge is bigger and sits inline */
.df-rumour-card--hero .df-rumour-card__heat {
    position: static;
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
    background: transparent;
    padding: 0;
    margin-left: auto;
    align-self: flex-start;
}
.df-rumour-card--hero .df-rumour-card__heat-num { font-size: 32px; }
.df-rumour-card--hero .df-rumour-card__heat-label { font-size: 11px; margin-top: 0; }
.df-rumour-card--hero .df-rumour-card__journalist .df-rumour-card__confidence { margin-right: 0; }

/* ─── Per-club rumour landing page ─────────────────────────────────── */

.df-rumour-hero__title .df-club-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    color: #fff;
    font-family: var(--df-mono);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.02em;
    vertical-align: middle;
    margin-right: 14px;
    transform: translateY(-3px);
}
@media (min-width: 720px) {
    .df-rumour-hero__title .df-club-mark { width: 56px; height: 56px; font-size: 17px; margin-right: 18px; }
}
.df-rumour-team-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 16px 0;
}
@media (min-width: 600px) {
    .df-rumour-team-stats { grid-template-columns: repeat(5, 1fr); gap: 14px; }
}
.df-rumour-team-stat {
    display: flex;
    flex-direction: column;
    padding: 12px;
    background: var(--df-paper);
    border: 1px solid var(--df-rule);
    border-radius: 6px;
}
.df-rumour-team-stat__num {
    font-family: var(--df-mono);
    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--df-ink);
}
.df-rumour-team-stat__label {
    font-family: var(--df-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--df-ink-muted);
    margin-top: 4px;
}
.df-rumour-section { margin: 32px 0; }

/* ─── Loan Watch ────────────────────────────────────────────────────── */

.df-loan-leaderboard { margin: 32px 0; }
.df-loan-feed { margin: 32px 0; }

.df-loan-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 16px;
}
@media (min-width: 700px) { .df-loan-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .df-loan-grid { grid-template-columns: repeat(3, 1fr); } }

.df-loan-card {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background: var(--df-paper);
    border: 1px solid var(--df-rule);
    border-radius: 8px;
    transition: border-color 0.15s, transform 0.15s;
}
.df-loan-card:hover {
    border-color: var(--df-ink-muted);
    transform: translateY(-2px);
}
.df-loan-card__parent {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--df-ink-muted);
}
.df-loan-card__parent .df-rumour-card__club-mono {
    width: 22px;
    height: 22px;
    font-size: 10px;
}
.df-loan-card__parent-name {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.df-loan-card__parent-name a {
    color: var(--df-ink-soft);
    font-weight: 600;
    text-decoration: none;
}
.df-loan-card__parent-name a:hover { color: var(--df-accent); }
.df-loan-card__when {
    font-family: var(--df-mono);
    font-size: 10px;
    color: var(--df-ink-muted);
}
.df-loan-card__player {
    display: flex;
    align-items: center;
    gap: 12px;
}
.df-loan-card__player-name {
    flex: 1;
    font-family: var(--df-serif);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--df-ink);
}
.df-loan-card__player-name a { color: inherit; text-decoration: none; }
.df-loan-card__player-name a:hover { color: var(--df-accent); }
.df-loan-card__to {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--df-rule);
    font-size: 13px;
}
.df-loan-card__arrow {
    color: var(--df-accent);
    font-weight: 700;
    flex-shrink: 0;
}
.df-loan-card__loan-club {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--df-ink);
    font-weight: 500;
}
.df-loan-card__loan-club .df-rumour-card__club-mono {
    width: 26px;
    height: 26px;
    font-size: 10px;
}
.df-loan-card__loan-club:hover { color: var(--df-accent); }
.df-loan-watch--team .df-loan-card__player {
    flex-direction: column;
    align-items: flex-start;
}
.df-loan-watch--team .df-loan-card__player-name { font-size: 22px; }

/* ─── On This Day ──────────────────────────────────────────────────── */

.df-otd-widget { padding: 32px 0; background: var(--df-paper-warm); border-top: 1px solid var(--df-rule); border-bottom: 1px solid var(--df-rule); }
.df-otd-widget__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 16px;
}
@media (min-width: 700px) { .df-otd-widget__grid { grid-template-columns: repeat(3, 1fr); } }
.df-otd-widget__card {
    display: block;
    padding: 16px;
    background: var(--df-paper);
    border: 1px solid var(--df-rule);
    border-radius: 6px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.15s;
}
.df-otd-widget__card:hover { border-color: var(--df-accent); }
.df-otd-widget__yearago {
    display: block;
    font-family: var(--df-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--df-accent);
    font-weight: 700;
    margin-bottom: 6px;
}
.df-otd-widget__match {
    font-family: var(--df-serif);
    font-size: 17px;
    line-height: 1.25;
    font-weight: 600;
    margin: 0 0 6px;
}
.df-otd-widget__score {
    font-family: var(--df-mono);
    color: var(--df-accent);
    margin: 0 4px;
}
.df-otd-widget__league {
    font-family: var(--df-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--df-ink-muted);
}
.df-otd-widget__excerpt {
    font-size: 12px;
    line-height: 1.5;
    color: var(--df-ink-soft);
    margin: 6px 0 0;
}

/* Full /on-this-day/ page */
.df-otd-list { display: flex; flex-direction: column; gap: 16px; margin: 24px 0; }
.df-otd-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 16px;
    padding: 16px;
    background: var(--df-paper);
    border: 1px solid var(--df-rule);
    border-radius: 6px;
}
.df-otd-row__year {
    display: block;
    font-family: var(--df-mono);
    font-size: 24px;
    font-weight: 800;
    color: var(--df-ink);
    line-height: 1;
}
.df-otd-row__ago {
    display: block;
    font-family: var(--df-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--df-accent);
    margin-top: 4px;
}
.df-otd-row__match {
    font-family: var(--df-serif);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0 0 6px;
}
.df-otd-row__match a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s, color 0.15s;
}
.df-otd-row__match a:hover { color: var(--df-accent); border-bottom-color: var(--df-accent); }
.df-otd-row__score {
    font-family: var(--df-mono);
    color: var(--df-accent);
    margin: 0 4px;
}
.df-otd-row__meta {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 6px;
}
.df-otd-row__league {
    font-family: var(--df-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--df-ink-muted);
}
.df-otd-row__report {
    background: var(--df-positive, #2a8e3a);
    color: #fff;
    font-family: var(--df-mono);
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 2px 6px;
    border-radius: 3px;
}
.df-otd-row__excerpt {
    font-size: 13px;
    line-height: 1.5;
    color: var(--df-ink-soft);
    margin: 0;
}

/* ─── Series brief on /series/{slug}/ + Contributors page ──────────── */

.df-series-brief {
    margin: 32px 0;
    padding: 28px;
    background: var(--df-paper-warm);
    border: 1px solid var(--df-rule);
    border-radius: 8px;
}
.df-series-brief__head { margin-bottom: 24px; }
.df-kicker--accent { color: var(--df-accent); font-weight: 700; }
.df-series-brief__title {
    font-family: var(--df-serif);
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 6px 0 10px;
}
.df-series-brief__dek {
    font-size: 14px;
    color: var(--df-ink-soft);
    line-height: 1.55;
    margin: 0;
}
.df-series-brief__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 24px;
}
@media (min-width: 720px) {
    .df-series-brief__grid { grid-template-columns: 1fr 2fr; }
    .df-series-brief__grid + .df-series-brief__grid { grid-template-columns: 1fr 1fr; }
}
.df-series-brief__col h3 {
    font-family: var(--df-mono);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--df-ink-muted);
    margin: 0 0 8px;
}
.df-series-brief__col p {
    font-size: 15px;
    line-height: 1.55;
    color: var(--df-ink);
    margin: 0;
}
.df-series-brief__spec {
    margin: 0;
    display: grid;
    grid-template-columns: max-content 1fr;
    gap: 4px 12px;
    font-size: 14px;
}
.df-series-brief__spec dt {
    font-family: var(--df-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--df-ink-muted);
    align-self: center;
}
.df-series-brief__spec dd { margin: 0; color: var(--df-ink); font-weight: 500; }
.df-series-brief__cta {
    padding: 20px;
    background: var(--df-ink);
    color: #fff;
    border-radius: 6px;
    margin-top: 8px;
}
.df-series-brief__cta h3 {
    font-family: var(--df-mono);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.6);
    margin: 0 0 8px;
}
.df-series-brief__cta p {
    font-size: 14px;
    line-height: 1.55;
    color: #fff;
    margin: 0 0 16px;
}
.df-series-brief__pitch {
    display: inline-block;
    padding: 10px 18px;
    background: var(--df-accent);
    color: #fff;
    font-family: var(--df-mono);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 4px;
    text-decoration: none;
}
.df-series-brief__pitch:hover { background: var(--df-accent-dark, #a30c25); }

/* Contributors landing page */
.df-contributors__intro { max-width: 760px; margin: 32px 0; }
.df-contributors__intro h2 {
    font-family: var(--df-serif);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 28px 0 8px;
}
.df-contributors__intro p, .df-contributors__intro li {
    font-size: 15px;
    line-height: 1.6;
    color: var(--df-ink-soft);
}
.df-contributors__voice { margin: 8px 0 0 18px; }
.df-contributors__voice li { margin-bottom: 4px; }
.df-contributors__series-row {
    padding: 20px 0;
    border-bottom: 1px solid var(--df-rule);
}
.df-contributors__series-row:last-child { border-bottom: none; }
.df-contributors__series-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 10px;
}
.df-contributors__series-title {
    font-family: var(--df-serif);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.01em;
    margin: 0;
}
.df-contributors__series-title a {
    color: var(--df-ink);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.df-contributors__series-title a:hover { color: var(--df-accent); border-bottom-color: var(--df-accent); }
.df-contributors__series-spec {
    display: flex;
    gap: 16px;
    margin: 0;
    font-size: 12px;
}
.df-contributors__series-spec > span {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.df-contributors__series-spec dt {
    font-family: var(--df-mono);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--df-ink-muted);
}
.df-contributors__series-spec dd {
    margin: 0;
    font-weight: 500;
    color: var(--df-ink);
}
.df-contributors__series-want, .df-contributors__series-who {
    font-size: 14px;
    line-height: 1.5;
    margin: 8px 0;
    color: var(--df-ink-soft);
}
.df-contributors__series-cta {
    margin: 8px 0 0;
    font-family: var(--df-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.df-contributors__series-cta a {
    color: var(--df-accent);
    text-decoration: none;
    border-bottom: 1px dotted var(--df-accent);
}
.df-contributors__pitch-cta {
    margin: 48px 0 24px;
    padding: 28px;
    background: var(--df-paper-warm);
    border-radius: 8px;
}
.df-contributors__pitch-cta h2 {
    font-family: var(--df-serif);
    font-size: 24px;
    margin: 0 0 8px;
}
.df-contributors__pitch-cta p { font-size: 15px; line-height: 1.55; margin: 0 0 6px; }

/* ─── Loan Watch Phase 2: performance + trajectory + returning home ── */

.df-loan-card__perf {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px solid var(--df-rule);
    font-size: 12px;
    flex-wrap: wrap;
}
.df-loan-card__stats {
    font-family: var(--df-mono);
    color: var(--df-ink-soft);
}
.df-loan-card__stats strong { color: var(--df-ink); font-weight: 700; }
.df-loan-card__tier {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 3px;
    font-family: var(--df-mono);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1;
}
.df-loan-card__tier--thriving { background: #d9f0dd; color: #1c5b25; }
.df-loan-card__tier--settling { background: #fff5d6; color: #8a6500; }
.df-loan-card__tier--bench    { background: #e8e8e8; color: #555; }
.df-loan-card__tier--cold     { background: #f3d6d6; color: #8a1c1c; }

/* Returning home tile on dashboard */
.df-dash-tile--returning { border-left: 4px solid var(--df-accent); }
.df-dash-returning {
    list-style: none;
    padding: 0;
    margin: 0;
}
.df-dash-returning__row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--df-rule);
    font-size: 13px;
    flex-wrap: wrap;
}
.df-dash-returning__row:last-child { border-bottom: none; }
.df-dash-returning__player { font-weight: 500; flex: 1; min-width: 120px; }
.df-dash-returning__player a { color: var(--df-ink); text-decoration: none; }
.df-dash-returning__player a:hover { color: var(--df-accent); }
.df-dash-returning__at {
    font-size: 12px;
    color: var(--df-ink-muted);
}
.df-dash-returning__days {
    font-family: var(--df-mono);
    font-size: 11px;
    color: var(--df-accent);
    font-weight: 700;
    margin-left: auto;
}

/* ─── Boardroom dashboard tile + /boardroom/ landing ────────────────── */

.df-dash-tile--boardroom { border-left: 4px solid var(--df-ink); }
.df-dash-board { list-style: none; padding: 0; margin: 0; }
.df-dash-board__row {
    display: flex;
    gap: 10px;
    align-items: baseline;
    padding: 8px 0;
    border-bottom: 1px solid var(--df-rule);
    font-size: 13px;
    flex-wrap: wrap;
}
.df-dash-board__row:last-child { border-bottom: none; }
.df-dash-board__name { font-weight: 500; flex: 1; min-width: 120px; }
.df-dash-board__role {
    font-family: var(--df-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--df-ink-muted);
}
.df-dash-board__since {
    font-family: var(--df-mono);
    font-size: 11px;
    color: var(--df-ink-muted);
    margin-left: auto;
}

/* /boardroom/ landing */
.df-boardroom__section { margin: 32px 0; }
.df-boardroom__clubs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
}
@media (min-width: 720px) { .df-boardroom__clubs { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .df-boardroom__clubs { grid-template-columns: repeat(3, 1fr); } }
.df-boardroom__club-card {
    padding: 18px;
    background: var(--df-paper);
    border: 1px solid var(--df-rule);
    border-radius: 6px;
}
.df-boardroom__club-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.df-boardroom__club-head h3 {
    font-family: var(--df-serif);
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    flex: 1;
}
.df-boardroom__club-head h3 a { color: var(--df-ink); text-decoration: none; }
.df-boardroom__club-head h3 a:hover { color: var(--df-accent); }
.df-boardroom__club-count {
    font-family: var(--df-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--df-ink-muted);
}
.df-boardroom__psc {
    font-size: 12px;
    color: var(--df-ink-soft);
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--df-rule);
}
.df-boardroom__officers { list-style: none; padding: 0; margin: 0; }
.df-boardroom__officers li {
    padding: 6px 0;
    font-size: 13px;
    line-height: 1.4;
}
.df-boardroom__officers li strong { display: block; color: var(--df-ink); }
.df-boardroom__role {
    font-family: var(--df-mono);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--df-accent);
    margin-right: 8px;
}
.df-boardroom__since {
    font-family: var(--df-mono);
    font-size: 10px;
    color: var(--df-ink-muted);
}
.df-boardroom__more {
    font-size: 11px;
    color: var(--df-ink-muted);
    margin: 8px 0 0;
}

/* ─── Deadline Day landing ─────────────────────────────────────────── */

.df-deadline-day__live-dot {
    display: inline-block;
    width: 14px; height: 14px;
    border-radius: 50%;
    background: var(--df-accent);
    vertical-align: middle;
    margin-right: 12px;
    animation: df-pulse 1.2s ease-in-out infinite;
    box-shadow: 0 0 0 4px rgba(200, 16, 46, 0.15);
}
.df-deadline-day--live .df-rumour-hero {
    background: linear-gradient(180deg, rgba(200, 16, 46, 0.06) 0%, var(--df-paper) 100%);
}
.df-deadline-day__explainer p { font-size: 15px; line-height: 1.55; color: var(--df-ink-soft); margin: 0 0 12px; }
.df-deadline-day__empty {
    padding: 24px;
    background: var(--df-paper-warm);
    border: 1px dashed var(--df-rule);
    border-radius: 6px;
    font-size: 14px;
    color: var(--df-ink-soft);
}

/* ─── Magnitude bars + rank pills + delta indicators on finance tables ─ */

.df-magbar {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 110px;
}
.df-magbar__num {
    font-family: var(--df-mono);
    font-weight: 600;
    text-align: right;
}
.df-magbar__track {
    display: block;
    height: 4px;
    width: 100%;
    background: var(--df-rule);
    border-radius: 2px;
    overflow: hidden;
}
.df-magbar__fill {
    display: block;
    height: 100%;
    border-radius: 2px;
    transition: width 0.3s ease-out;
}
.df-magbar--accent .df-magbar__fill   { background: var(--df-accent); }
.df-magbar--positive .df-magbar__fill { background: var(--df-positive, #2a8e3a); }
.df-magbar--muted .df-magbar__fill    { background: var(--df-ink-muted); }
.df-magbar--debt .df-magbar__fill     { background: #c8102e; }
.df-magbar--wage .df-magbar__fill     { background: #4a90e2; }

.df-rank-pill {
    display: inline-block;
    min-width: 28px;
    padding: 3px 8px;
    border-radius: 999px;
    font-family: var(--df-mono);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}
.df-rank-pill--top { background: var(--df-accent); color: #fff; }
.df-rank-pill--mid { background: var(--df-ink); color: #fff; }
.df-rank-pill--low { background: var(--df-paper-warm); color: var(--df-ink-muted); border: 1px solid var(--df-rule); }

.df-delta {
    display: inline-block;
    font-family: var(--df-mono);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
}
.df-delta--good { color: #1c5b25; background: #d9f0dd; }
.df-delta--bad  { color: #8a1c1c; background: #f3d6d6; }
.df-delta--flat { color: var(--df-ink-muted); }

/* Rank badge (distinct from rank pill which renders "Nth of M") */
.df-rank-badge {
    display: inline-block;
    min-width: 32px;
    padding: 4px 10px;
    border-radius: 999px;
    font-family: var(--df-mono);
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
}
.df-rank-badge--top { background: var(--df-accent); color: #fff; }
.df-rank-badge--mid { background: var(--df-ink); color: #fff; }
.df-rank-badge--low { background: var(--df-paper-warm); color: var(--df-ink-muted); border: 1px solid var(--df-rule); }

/* ─── Pre-window guide ────────────────────────────────────────────────── */
.df-window-guide__body { max-width: 720px; font-size: 1.06rem; line-height: 1.65; margin: 0 auto 2.5rem; }
.df-window-guide__body p { margin: 0 0 1.1em; }
.df-window-guide__byline { font-size: 0.85rem; color: var(--df-ink-muted); border-top: 1px solid var(--df-rule); padding-top: 1rem; margin-top: 1.5rem; }

.df-window-guide__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin: 2rem 0; }
.df-window-guide__panel { background: var(--df-paper-warm); border: 1px solid var(--df-rule); border-radius: 8px; padding: 1.25rem 1.5rem; }
.df-window-guide__panel h3 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--df-ink-muted); margin: 0 0 1rem; }

.df-window-guide__counts { list-style: none; padding: 0; margin: 0; }
.df-window-guide__counts li { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--df-rule); }
.df-window-guide__counts li:last-child { border-bottom: 0; }
.df-window-guide__counts li strong { font-variant-numeric: tabular-nums; font-size: 1.1rem; }

.df-window-guide__expiring { list-style: none; padding: 0; margin: 0; font-size: 0.93rem; }
.df-window-guide__expiring li { display: flex; gap: 0.5rem; align-items: baseline; padding: 0.4rem 0; border-bottom: 1px dashed var(--df-rule); }
.df-window-guide__expiring li:last-child { border-bottom: 0; }
.df-window-guide__expiring a { flex: 1; }
.df-window-guide__pos { font-size: 0.72rem; color: var(--df-ink-muted); background: #fff; padding: 0.1rem 0.4rem; border-radius: 4px; border: 1px solid var(--df-rule); }
.df-window-guide__date { font-size: 0.82rem; color: var(--df-ink-muted); font-variant-numeric: tabular-nums; }

.df-window-guide__finance { display: grid; grid-template-columns: auto 1fr; gap: 0.4rem 1rem; font-size: 0.95rem; }
.df-window-guide__finance dt { color: var(--df-ink-muted); }
.df-window-guide__finance dd { margin: 0; font-variant-numeric: tabular-nums; }

/* ─── Player season-by-season ──────────────────────────────────────────── */
.df-player-totals { display: grid; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); gap: 0.5rem 1rem; background: var(--df-paper-warm); border: 1px solid var(--df-rule); border-radius: 8px; padding: 1rem 1.25rem; margin: 0 0 1.25rem; }
.df-player-total { display: flex; flex-direction: column; }
.df-player-total__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--df-ink-muted); }
.df-player-total__num { font-size: 1.4rem; font-weight: 700; font-variant-numeric: tabular-nums; line-height: 1.1; }

.df-player-stats--seasons { font-variant-numeric: tabular-nums; }
.df-player-stats--seasons th { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.04em; color: #fff; }
.df-player-stats__season { font-weight: 600; white-space: nowrap; }
.df-player-stats__club { max-width: 240px; }
.df-player-stats__source { font-size: 0.78rem; color: var(--df-ink-muted); margin-top: 0.75rem; }

.df-stat-card { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 22px; border-radius: 2px; font-size: 0.7rem; font-weight: 700; color: #fff; margin-right: 2px; }
.df-stat-card--y { background: #f5c84b; color: #6a4b00; }
.df-stat-card--r { background: #d83b3b; }

/* ─── Backroom staff tile ─────────────────────────────────────────────── */
.df-dash-backroom { list-style: none; padding: 0; margin: 0; }
.df-dash-backroom__row { padding: 0.55rem 0; border-bottom: 1px dashed var(--df-rule); display: grid; grid-template-columns: 1fr auto; row-gap: 2px; align-items: baseline; }
.df-dash-backroom__row:last-child { border-bottom: 0; }
.df-dash-backroom__name { grid-column: 1 / 2; font-size: 0.96rem; }
.df-dash-backroom__role { grid-column: 2 / 3; text-align: right; font-size: 0.78rem; color: var(--df-ink-muted); text-transform: uppercase; letter-spacing: 0.04em; }
.df-dash-backroom__nat { grid-column: 1 / -1; font-size: 0.78rem; color: var(--df-ink-muted); }

/* ─── Staff profile page ──────────────────────────────────────────────── */
.df-staff-hero { padding: 36px 0 28px; border-bottom: 1px solid var(--df-rule); }
.df-staff-hero__inner { display: flex; gap: 28px; align-items: flex-start; }
.df-staff-hero__photo { border-radius: 50%; object-fit: cover; }
.df-staff-hero__kicker { margin-bottom: 8px; }
.df-staff-hero__name { font-size: 2.2rem; line-height: 1.1; margin: 0 0 0.5rem; }
.df-staff-hero__meta { color: var(--df-ink-muted); font-size: 1rem; margin: 0 0 0.75rem; }
.df-staff-hero__pills { margin: 0; }

.df-staff-body { padding: 36px 0 60px; }
.df-staff-section + .df-staff-section { margin-top: 36px; }

.df-staff-career { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.df-staff-career th { text-align: left; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--df-ink-muted); padding: 8px 10px; border-bottom: 1px solid var(--df-rule); }
.df-staff-career td { padding: 12px 10px; border-bottom: 1px solid var(--df-rule); font-size: 0.94rem; vertical-align: top; }
.df-staff-career tr.is-current td { background: var(--df-paper-warm); }
.df-staff-career__club a { color: inherit; text-decoration: none; }
.df-staff-career__club a:hover { text-decoration: underline; }
.df-staff-career__current { color: var(--df-accent); font-weight: 600; }
.df-staff-career__notes { font-size: 0.87rem; color: var(--df-ink-muted); }

/* ─── Backroom archive: well-travelled leaderboard + role chip counts ──── */
.df-staff-travelled { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 12px; }
.df-staff-travelled__card { display: flex; align-items: center; gap: 14px; padding: 14px 16px; border: 1px solid var(--df-rule); border-radius: 4px; text-decoration: none; color: inherit; transition: border-color 0.15s, transform 0.15s; }
.df-staff-travelled__card:hover { border-color: var(--df-accent); transform: translateY(-1px); }
.df-staff-travelled__count { flex: 0 0 auto; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--df-accent); color: #fff; font-weight: 700; font-size: 1.25rem; border-radius: 4px; font-variant-numeric: tabular-nums; }
.df-staff-travelled__body { display: flex; flex-direction: column; min-width: 0; }
.df-staff-travelled__name { font-weight: 600; }
.df-staff-travelled__role { font-size: 0.82rem; color: var(--df-ink-muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.df-staff-travelled__note { font-size: 0.8rem; color: var(--df-ink-muted); margin-top: 12px; }
.df-managers-filter__count { display: inline-block; font-size: 0.72rem; opacity: 0.6; margin-left: 2px; font-variant-numeric: tabular-nums; }

/* ─── News hub (/news/) ───────────────────────────────────────────────── */
.df-news-hero-wrap { padding: 28px 0 12px; }
.df-news-hero-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 28px; }
@media (max-width: 900px) { .df-news-hero-grid { grid-template-columns: 1fr; } }

.df-news-lead__link { display: block; color: inherit; text-decoration: none; }
.df-news-lead__img-wrap { aspect-ratio: 16/9; overflow: hidden; border-radius: 6px; background: var(--df-paper-warm); }
.df-news-lead__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.df-news-lead__img--placeholder { background: linear-gradient(135deg, var(--df-paper-warm), var(--df-rule)); }
.df-news-lead__body { padding: 16px 0 0; }
.df-news-lead__headline { font-size: 2.1rem; line-height: 1.12; margin: 8px 0; }
.df-news-lead__link:hover .df-news-lead__headline { color: var(--df-accent); }
.df-news-lead__dek { font-size: 1.05rem; color: var(--df-ink-muted); margin: 0 0 10px; }
.df-news-lead__meta { font-size: 0.82rem; color: var(--df-ink-muted); }

.df-news-secondary__head { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; color: var(--df-accent); border-bottom: 2px solid var(--df-accent); padding-bottom: 8px; margin-bottom: 4px; }
.df-news-secondary__list { list-style: none; margin: 0; padding: 0; }
.df-news-secondary__item { border-bottom: 1px solid var(--df-rule); }
.df-news-secondary__item a { display: grid; grid-template-columns: 1fr auto; gap: 2px 10px; padding: 12px 0; color: inherit; text-decoration: none; }
.df-news-secondary__kicker { grid-column: 1; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--df-accent); }
.df-news-secondary__title { grid-column: 1; font-weight: 600; line-height: 1.25; }
.df-news-secondary__item a:hover .df-news-secondary__title { color: var(--df-accent); }
.df-news-secondary__date { grid-column: 2; grid-row: 2; font-size: 0.78rem; color: var(--df-ink-muted); white-space: nowrap; }

.df-news-section { padding: 24px 0; border-top: 1px solid var(--df-rule); margin-top: 12px; }
.df-news-section--tools { background: var(--df-paper-warm); }

/* ─── Broadsheet dateline masthead (/news/) ─────────────────────────────── */
.df-news-masthead { padding: 10px 0 0; }
.df-news-masthead__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 9px 0; border-top: 2px solid var(--df-ink); border-bottom: 1px solid var(--df-ink);
  font-family: var(--df-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--df-ink-muted);
}
.df-news-masthead__date { font-weight: 700; color: var(--df-ink); letter-spacing: 0.06em; }
.df-news-masthead__edition, .df-news-masthead__coverage { flex: 1 1 0; }
.df-news-masthead__coverage { text-align: right; }
@media (max-width: 700px) {
  .df-news-masthead__inner { flex-direction: column; gap: 4px; text-align: center; font-size: 10px; }
  .df-news-masthead__coverage { text-align: center; }
  .df-news-masthead__edition, .df-news-masthead__coverage { flex: none; }
}

/* ─── The back page: games strip ────────────────────────────────────────── */
.df-news-games { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 16px; margin-top: 4px; }
.df-news-game {
  display: flex; flex-direction: column; gap: 4px; min-height: 132px;
  padding: 18px; border: 1px solid var(--df-rule); border-radius: 12px;
  background: var(--df-paper); color: var(--df-ink); transition: border-color .15s ease, transform .15s ease;
}
.df-news-game:hover { border-color: var(--df-accent); transform: translateY(-2px); }
.df-news-game__badge {
  align-self: flex-start; font-family: var(--df-mono); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--df-accent);
  border: 1px solid var(--df-accent); border-radius: 4px; padding: 1px 6px; margin-bottom: 2px;
}
.df-news-game__name { font-family: var(--df-serif); font-weight: 700; font-size: 1.18rem; line-height: 1.15; }
.df-news-game--daily .df-news-game__name { font-size: 1.4rem; }
.df-news-game__dek { font-size: 0.86rem; line-height: 1.4; color: var(--df-ink-muted); flex: 1 1 auto; }
.df-news-game__cta { font-family: var(--df-sans); font-size: 0.8rem; font-weight: 600; color: var(--df-accent); margin-top: 4px; }
.df-news-game--daily { background: linear-gradient(150deg, #11151c, #1d2530); border-color: #11151c; color: #f7f5f0; }
.df-news-game--daily .df-news-game__dek { color: #b7bcc4; }
@media (max-width: 900px) { .df-news-games { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .df-news-games { grid-template-columns: 1fr; } }

.df-news-deals { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 0 24px; }
.df-news-deal { display: grid; grid-template-columns: 1fr auto; gap: 0 10px; padding: 10px 0; border-bottom: 1px solid var(--df-rule); align-items: baseline; }
.df-news-deal__player { font-weight: 600; grid-column: 1; }
.df-news-deal__move { grid-column: 1; font-size: 0.83rem; color: var(--df-ink-muted); }
.df-news-deal__arrow { color: var(--df-accent); }
.df-news-deal__fee { grid-column: 2; grid-row: 1; font-variant-numeric: tabular-nums; font-weight: 600; }
.df-news-deal__date { grid-column: 2; grid-row: 2; font-size: 0.78rem; color: var(--df-ink-muted); }

.df-news-tools { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; }
.df-news-tool { display: block; padding: 16px 18px; background: #fff; border: 1px solid var(--df-rule); border-radius: 6px; text-decoration: none; color: inherit; transition: border-color 0.15s, transform 0.15s; }
.df-news-tool:hover { border-color: var(--df-accent); transform: translateY(-1px); }
.df-news-tool__name { display: block; font-weight: 700; margin-bottom: 4px; }
.df-news-tool__dek { display: block; font-size: 0.85rem; color: var(--df-ink-muted); line-height: 1.4; }

.df-rumour-grid--compact { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; }

/* ─── Players archive: meta line + position filter row ────────────────── */
.df-player-card__meta {
  display: block;
  font-size: 0.78rem;
  color: var(--df-ink-muted);
  margin-top: 3px;
  line-height: 1.3;
}
.df-managers-filter--positions { margin-top: 8px; }
/* Reset photo dimensions for archive cards (the season-stats badge rename
   freed up .df-player-card, but be explicit so img sizing is predictable). */
.df-grid--4 .df-player-card__photo { width: 80px; height: 80px; margin-left: auto; margin-right: auto; }
.df-letter-group + .df-letter-group { margin-top: 28px; }

/* ─── Dragon Rankings (/rankings/) ────────────────────────────────────── */
.df-rank-tabs { display: flex; flex-wrap: wrap; gap: 4px; margin: 16px 0 12px; }
.df-rank-tabs__btn { padding: 9px 18px; border: 1px solid var(--df-rule); border-radius: 999px; font-weight: 600; font-size: 0.92rem; text-decoration: none; color: var(--df-ink); background: #fff; }
.df-rank-tabs__btn:hover { border-color: var(--df-accent); }
.df-rank-tabs__btn--active { background: var(--df-accent); color: #fff; border-color: var(--df-accent); }

.df-rank-filters { display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center; }
.df-rank-u21 { font-size: 0.85rem; padding: 6px 12px; border: 1px dashed var(--df-rule); border-radius: 6px; text-decoration: none; color: var(--df-ink-muted); }
.df-rank-u21.is-on { background: var(--df-accent); color: #fff; border-style: solid; border-color: var(--df-accent); }

.df-rank-list { list-style: none; counter-reset: none; margin: 0; padding: 0; }
.df-rank-row { border: 1px solid var(--df-rule); border-radius: 8px; padding: 14px 16px; margin-bottom: 10px; }
.df-rank-row__head { display: flex; align-items: center; gap: 14px; }
.df-rank-row__pos { flex: 0 0 28px; font-size: 1.3rem; font-weight: 800; color: var(--df-ink-muted); font-variant-numeric: tabular-nums; text-align: center; }
.df-rank-row__photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; background: var(--df-paper-warm); flex: 0 0 48px; }
.df-rank-row__photo--ph { background: linear-gradient(135deg, var(--df-paper-warm), var(--df-rule)); }
.df-rank-row__id { flex: 1; min-width: 0; }
.df-rank-row__name { display: block; font-weight: 700; font-size: 1.05rem; }
.df-rank-row__name a { color: inherit; text-decoration: none; }
.df-rank-row__name a:hover { color: var(--df-accent); }
.df-rank-row__meta { display: block; font-size: 0.82rem; color: var(--df-ink-muted); }
.df-rank-row__score { flex: 0 0 auto; text-align: center; }
.df-rank-row__score-num { display: block; font-size: 1.7rem; font-weight: 800; line-height: 1; color: var(--df-accent); font-variant-numeric: tabular-nums; }
.df-rank-row__score-lbl { display: block; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--df-ink-muted); }

.df-rank-row__stats { margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--df-rule); }
.df-rank-row__quick { font-size: 0.82rem; color: var(--df-ink-muted); font-weight: 600; }
.df-rank-row__bars { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 4px 18px; margin-top: 8px; }
.df-rank-bar { display: grid; grid-template-columns: 1fr 70px 26px; align-items: center; gap: 8px; font-size: 0.78rem; }
.df-rank-bar__label { color: var(--df-ink-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.df-rank-bar__track { height: 6px; background: var(--df-paper-warm); border-radius: 3px; overflow: hidden; }
.df-rank-bar__fill { display: block; height: 100%; background: var(--df-accent); border-radius: 3px; }
.df-rank-bar__val { text-align: right; font-variant-numeric: tabular-nums; color: var(--df-ink); }

/* ─── Team of the Week (/team-of-the-week/) ───────────────────────────── */
.df-totw-pitch {
  position: relative;
  background: linear-gradient(180deg, #1f7a3d 0%, #176032 100%);
  background-image: repeating-linear-gradient(180deg, rgba(255,255,255,0.04) 0 60px, rgba(0,0,0,0.04) 60px 120px);
  border-radius: 10px;
  padding: 28px 14px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 28px;
  border: 2px solid rgba(255,255,255,0.15);
}
.df-totw-pitch__formation {
  position: absolute; top: 10px; right: 14px;
  color: rgba(255,255,255,0.7); font-weight: 700; font-size: 0.8rem;
  letter-spacing: 0.08em;
}
.df-totw-row { display: flex; justify-content: center; gap: 10px 22px; flex-wrap: wrap; }

.df-totw-card { width: 92px; text-align: center; color: #fff; position: relative; }
.df-totw-card__rating {
  position: absolute; top: -6px; right: 8px;
  background: var(--df-accent); color: #fff; font-size: 0.7rem; font-weight: 800;
  padding: 2px 6px; border-radius: 10px; font-variant-numeric: tabular-nums;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.df-totw-card__photo {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover;
  background: #fff; border: 2px solid #fff; display: block; margin: 0 auto 5px;
}
.df-totw-card__photo--ph { background: rgba(255,255,255,0.85); }
.df-totw-card__name { display: block; font-size: 0.82rem; font-weight: 700; line-height: 1.15; }
.df-totw-card__name a { color: #fff; text-decoration: none; }
.df-totw-card__name a:hover { text-decoration: underline; }
.df-totw-card__club { display: block; font-size: 0.68rem; opacity: 0.8; }
.df-totw-card__club a { color: #fff; text-decoration: none; }

@media (max-width: 600px) {
  .df-totw-card { width: 78px; }
  .df-totw-card__photo { width: 46px; height: 46px; }
  .df-totw-row { gap: 8px 12px; }
}
.df-totw-list { margin-top: 8px; }

/* ─── Predictability (/predictability/) ───────────────────────────────── */
.df-predict-lead { text-align: center; padding: 24px; background: var(--df-paper-warm); border: 1px solid var(--df-rule); border-radius: 10px; margin-bottom: 28px; }
.df-predict-lead__label { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--df-ink-muted); }
.df-predict-lead__name { display: block; font-size: 2.2rem; font-weight: 800; line-height: 1.1; margin: 4px 0; }
.df-predict-lead__sub { display: block; font-size: 0.9rem; color: var(--df-ink-muted); }

.df-predict-table { margin-bottom: 32px; }
.df-predict-row { display: grid; grid-template-columns: 28px 1fr 2fr 40px; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--df-rule); }
.df-predict-row__rank { font-weight: 800; color: var(--df-ink-muted); font-variant-numeric: tabular-nums; text-align: center; }
.df-predict-row__name { font-weight: 700; color: var(--df-ink); text-decoration: none; }
.df-predict-row__name:hover { color: var(--df-accent); }
.df-predict-row__bar { height: 12px; background: var(--df-paper-warm); border-radius: 6px; overflow: hidden; }
.df-predict-row__fill { display: block; height: 100%; background: linear-gradient(90deg, var(--df-accent), #d83b3b); border-radius: 6px; }
.df-predict-row__val { font-weight: 800; font-variant-numeric: tabular-nums; text-align: right; }
.df-predict-markets__intro { font-size: 0.95rem; color: var(--df-ink-muted); margin-bottom: 14px; }

/* ─── Pressure / momentum chart (match centre) ────────────────────────── */
.df-pressure { margin: 24px 0; border: 1px solid var(--df-rule); border-radius: 8px; padding: 16px 18px; background: #fff; }
.df-pressure__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.df-pressure__title { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--df-ink-muted); font-weight: 700; }
.df-pressure__team { font-size: 0.85rem; font-weight: 700; }
.df-pressure__svg { width: 100%; height: auto; display: block; }
.df-pressure__note { font-size: 0.76rem; color: var(--df-ink-muted); margin: 8px 0 0; }

/* ── Inline stat tooltips (glossary.php) ─────────────────────────────── */
.df-tip { position: relative; border-bottom: 1px dotted var(--df-ink-muted); cursor: help; }
.df-tip:focus { outline: 2px solid var(--df-accent); outline-offset: 2px; }
.df-tip__bubble {
    position: absolute; left: 50%; bottom: calc(100% + 8px); transform: translateX(-50%);
    width: max-content; max-width: 260px; z-index: 60;
    background: var(--df-ink, #14181f); color: #fff; text-align: left;
    font-size: 0.8rem; line-height: 1.4; font-weight: 400; letter-spacing: 0;
    text-transform: none; padding: 9px 11px; border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.22);
    opacity: 0; visibility: hidden; transition: opacity 0.12s ease;
    pointer-events: none;
}
.df-tip__bubble::after {
    content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
    border: 6px solid transparent; border-top-color: var(--df-ink, #14181f);
}
.df-tip:hover .df-tip__bubble,
.df-tip:focus .df-tip__bubble { opacity: 1; visibility: visible; }
@media (max-width: 640px) {
    .df-tip__bubble { max-width: 200px; left: 0; transform: none; }
    .df-tip__bubble::after { left: 18px; }
}

/* ── Auto-bio paragraph (bios.php) ───────────────────────────────────── */
.df-bio p { font-size: 1.02rem; line-height: 1.6; color: var(--df-ink); margin: 0 0 1rem; }

/* Club page intro bio (single-df_team) */
.df-club-dash__intro { margin: 18px 0 4px; }
.df-club-dash__intro .df-bio p { margin: 0; color: var(--df-ink-muted); font-size: 1rem; }

/* ── League stat leaderboards (page-league-stat.php) ─────────────────── */
.df-stat-hero { padding: 28px 0 8px; }
.df-stat-hero__title { font-family: var(--df-serif, Fraunces), serif; font-size: clamp(1.8rem, 4vw, 2.8rem); margin: 6px 0 8px; }
.df-stat-hero__dek { color: var(--df-ink-muted); max-width: 60ch; margin: 0 0 12px; }
.df-stat-nav { display: flex; gap: 18px; flex-wrap: wrap; font-size: 0.85rem; font-weight: 600; }
.df-stat-nav a { color: var(--df-accent); }
.df-stat-body { padding: 12px 0 40px; }
.df-stat-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.df-stat-table th, .df-stat-table td { padding: 10px 8px; border-bottom: 1px solid var(--df-rule, #e7e7e2); text-align: left; }
.df-stat-table th { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--df-ink-muted); }
.df-stat-table__rank { width: 2.5rem; color: var(--df-ink-muted); font-variant-numeric: tabular-nums; }
.df-stat-table__num { text-align: right; font-variant-numeric: tabular-nums; }
.df-stat-table__value { font-weight: 700; }
.df-stat-foot { margin-top: 16px; font-size: 0.88rem; color: var(--df-ink-muted); }

/* ── Points Deductions tracker (page-points-deductions.php) ──────────── */
.df-pd-summary { display: flex; flex-wrap: wrap; gap: 28px; margin: 4px 0 24px; }
.df-pd-stat { display: flex; flex-direction: column; }
.df-pd-stat__num { font-family: var(--df-serif, Fraunces), serif; font-size: 2rem; font-weight: 700; line-height: 1; }
.df-pd-stat__label { font-size: 0.78rem; color: var(--df-ink-muted); margin-top: 4px; max-width: 22ch; }
.df-pd-table td { vertical-align: top; }
.df-pd-note { display: block; font-size: 0.78rem; color: var(--df-ink-muted); margin-top: 3px; }
/* Active-case callout on the deductions hub + the 115 tracker page. */
.df-pd-active { margin: 0 0 22px; }
.df-pd-active__link { display: block; padding: 14px 18px; background: #fdf3f4; border: 1px solid #f0c8cc; border-left: 4px solid var(--df-accent, #c8102e); border-radius: 8px; text-decoration: none; color: var(--df-ink); font-size: 0.95rem; }
.df-pd-active__link:hover { background: #fbe9eb; }
.df-pd-stat__num--status { font-size: 1.15rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--df-accent, #c8102e); }
.df-pd-related { list-style: none; margin: 0 0 26px; padding: 0; }
.df-pd-related li { padding: 9px 0; border-bottom: 1px solid var(--df-rule, #e7e3dc); }
.df-pd-related a { font-weight: 600; text-decoration: none; color: inherit; }
.df-pd-related a:hover { color: var(--df-accent, #c8102e); }
.df-stat-h2 { font-family: var(--df-serif, Fraunces), serif; font-size: 1.45rem; margin: 34px 0 12px; }
/* Journalist profile hero (/transfers/journalist/{slug}/) */
.df-journo-hero { display: flex; align-items: center; gap: 18px; }
.df-journo-hero__photo { border-radius: 50%; object-fit: cover; flex: none; }
.df-rumour-card__journo-link { color: inherit; text-decoration: none; }
.df-rumour-card__journo-link:hover { color: var(--df-accent, #c8102e); }

/* Series index tiers (page-series-index.php) */
.df-series-tier { margin-bottom: 8px; }
.df-series-tier__intro { color: var(--df-ink-muted); font-size: 0.92rem; margin: 2px 0 16px; }

/* Series brief reference links (taxonomy-df_series.php) */
.df-series-brief__refs { margin: 18px 0 6px; }
.df-series-brief__refs h3 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--df-ink-muted); margin: 0 0 6px; }
.df-series-brief__refs ul { margin: 0; padding-left: 18px; }
.df-series-brief__refs li { font-size: 0.9rem; margin: 2px 0; }

/* Contributors: open roles (page-contributors.php) */
.df-contributors__role { border-top: 1px solid var(--df-rule, #e7e7e2); padding-top: 18px; margin-top: 18px; }
.df-contributors__role-summary { font-size: 1.02rem; color: var(--df-ink); margin: 4px 0 12px; }
.df-contributors__role h4 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--df-ink-muted); margin: 14px 0 6px; }
.df-contributors__role ul { margin: 0 0 6px; padding-left: 18px; }
.df-contributors__role li { margin: 3px 0; }

/* ── Grouped "All leagues" menu (header competitions strip) ──────────── */
.df-comp-quick { white-space: nowrap; }
.df-leaguemenu { position: relative; display: inline-flex; }
.df-leaguemenu__trigger { display: inline-flex; align-items: center; gap: 5px; background: none; border: 0; cursor: pointer; padding: 0; white-space: nowrap; font-family: var(--df-mono); font-size: 11px; font-weight: 500; text-transform: uppercase; letter-spacing: .06em; color: rgba(255, 255, 255, 0.75); }
.df-leaguemenu__trigger:hover { color: #fff; }
.df-leaguemenu__trigger svg { transition: transform .15s ease; }
.df-leaguemenu__trigger[aria-expanded="true"] svg { transform: rotate(180deg); }
/* Fixed so it escapes the strip's overflow-x clipping; JS sets top/left. */
/* Columns size to their longest league name (max-content) rather than being
   forced into an equal 1fr third of 540px — at that width "Women's Super League"
   was wider than its column and, unable to wrap (see the white-space reset on
   __group a below), painted over the Cups column. The panel caps at the viewport
   so it can't outgrow the screen; if it ever does get squeezed, the columns fall
   back to 150px and the names wrap instead of colliding. */
.df-leaguemenu__panel { position: fixed; z-index: 95; background: #fff; color: var(--df-ink, #11151c); border: 1px solid var(--df-rule, #e7e7e2); border-radius: 12px; box-shadow: 0 14px 36px rgba(0,0,0,.20); padding: 18px 20px; display: grid; grid-template-columns: repeat(3, minmax(150px, max-content)); gap: 22px; max-width: min(720px, calc(100vw - 24px)); }
.df-leaguemenu__panel[hidden] { display: none; }
.df-leaguemenu__heading { font-family: var(--df-mono); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--df-ink-muted, #8a8f98); margin: 0 0 8px; font-weight: 600; }
/* white-space reset: the panel is nested inside .df-header__nav--secondary, so
   its links match that strip's `a` rule and inherited its `white-space: nowrap`
   — which the strip needs (it scrolls horizontally) but the panel must not, as
   an unwrappable name overflows its grid cell and overlaps the next column. */
.df-leaguemenu__group a { display: block; padding: 5px 0; font-size: .92rem; color: var(--df-ink, #11151c); border: 0; white-space: normal; }
.df-leaguemenu__group a:hover { color: var(--df-accent, #d4232e); }
@media (max-width: 640px) {
    .df-leaguemenu__panel { left: 10px !important; right: 10px !important; max-width: none; grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* League history: season outcome line + legend */
.df-history-outcome { font-size: .92rem; color: var(--df-ink); margin: 4px 0 10px; line-height: 1.65; }
.df-history-legend { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; font-size: .78rem; color: var(--df-ink-muted); margin: 12px 0 0; }
.df-legend__key { display: inline-block; width: 12px; height: 12px; border-radius: 3px; vertical-align: middle; margin-right: 5px; }
.df-legend__key--promo { background: #2a8e3a; }
.df-legend__key--playoff { background: #3b82f6; }
.df-legend__key--releg { background: #c8102e; }

/* ── Data provenance / accountability block ───────────────────────────────── */
.df-credit { margin: 28px 0 4px; padding: 14px 16px; border: 1px solid var(--df-border, #e5e2dc); border-radius: 8px; background: var(--df-surface, #faf9f6); }
.df-credit__note { margin: 0 0 6px; font-size: .82rem; color: var(--df-ink-muted, #6b6660); font-style: italic; }
.df-credit__line { margin: 0; font-size: .8rem; line-height: 1.7; color: var(--df-ink-muted, #6b6660); display: flex; flex-wrap: wrap; gap: 0 8px; align-items: baseline; }
.df-credit__src strong { color: var(--df-ink, #1a1a1a); }
.df-credit__sep { opacity: .5; }
.df-credit__links a { color: var(--df-accent, #c8102e); text-decoration: none; }
.df-credit__links a:hover { text-decoration: underline; }

/* ── Trust pages (about / responsible gambling / methodology) ─────────────── */
.df-trust-hero { padding: 48px 0 32px; border-bottom: 1px solid var(--df-border, #e5e2dc); background: var(--df-surface, #faf9f6); }
.df-trust-hero__kicker { margin: 0 0 8px; font-family: 'JetBrains Mono', monospace; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--df-accent, #c8102e); }
.df-trust-hero__title { margin: 0 0 10px; font-family: 'Fraunces', Georgia, serif; font-size: clamp(1.9rem, 4vw, 2.8rem); line-height: 1.1; color: var(--df-ink, #1a1a1a); }
.df-trust-hero__dek { margin: 0; max-width: 60ch; font-size: 1.05rem; line-height: 1.6; color: var(--df-ink-muted, #4a463f); }
.df-trust-body { padding: 36px 0 56px; }
.df-trust__inner { max-width: 760px; }
.df-trust__inner section { margin: 0 0 34px; }
.df-trust__inner h2 { font-family: 'Fraunces', Georgia, serif; font-size: 1.4rem; margin: 0 0 12px; color: var(--df-ink, #1a1a1a); }
.df-trust__inner p { font-size: 1rem; line-height: 1.7; color: var(--df-ink, #2a2a2a); margin: 0 0 12px; }
.df-trust__inner ul, .df-trust__inner ol { line-height: 1.7; color: var(--df-ink, #2a2a2a); padding-left: 1.25em; }
.df-trust__inner li { margin: 0 0 7px; }
.df-trust__inner a { color: var(--df-accent, #c8102e); }
.df-trust__toc { margin: 0 0 32px; padding: 16px 20px; border: 1px solid var(--df-border, #e5e2dc); border-radius: 8px; background: var(--df-surface, #faf9f6); }
.df-trust__toc-heading { font-family: 'JetBrains Mono', monospace; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; margin: 0 0 8px; color: var(--df-ink-muted, #6b6660); }
.df-trust__toc ol { margin: 0; padding-left: 1.2em; columns: 2; column-gap: 28px; }
.df-trust__toc li { margin: 0 0 5px; font-size: .9rem; }
.df-rg-help { padding: 18px 20px; border: 2px solid var(--df-accent, #c8102e); border-radius: 10px; background: #fff; }
.df-rg-help__list { list-style: none; padding-left: 0; }
.df-rg-help__list li { margin: 0 0 8px; }
@media (max-width: 640px) { .df-trust__toc ol { columns: 1; } }

/* ── Footer responsible-gambling strip ────────────────────────────────────── */
.df-footer__rg { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; padding: 14px 0; margin-top: 8px; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; color: rgba(255,255,255,.62); }
.df-footer__rg-age { flex: none; font-weight: 700; font-size: .72rem; letter-spacing: .04em; color: #fff; border: 1.5px solid rgba(255,255,255,.55); border-radius: 999px; padding: 2px 8px; }
.df-footer__rg-text { flex: 1 1 320px; line-height: 1.5; }
.df-footer__rg a { color: rgba(255,255,255,.85); text-decoration: underline; }
.df-footer__rg-link { flex: none; white-space: nowrap; }

/* ── Author bylines, cards, profiles ──────────────────────────────────────── */
.df-byline__name { color: var(--df-accent, #c8102e); text-decoration: none; font-weight: 600; }
.df-byline__name:hover { text-decoration: underline; }
.df-byline__role { display: block; font-size: .72rem; color: var(--df-ink-muted, #6b6660); font-weight: 400; }

.df-author-card { display: flex; gap: 16px; align-items: flex-start; margin: 32px 0; padding: 18px 20px; border: 1px solid var(--df-border, #e5e2dc); border-radius: 10px; background: var(--df-surface, #faf9f6); overflow: hidden; }
.df-author-card__media { flex: none; }
.df-author-card__photo, .df-author-card__media img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
/* min-width:0 lets the flex child shrink + wrap, instead of spilling out the right edge of the card */
.df-author-card__body { flex: 1 1 auto; min-width: 0; }
.df-author-card__name { font-family: 'Fraunces', Georgia, serif; font-size: 1.1rem; font-weight: 600; color: var(--df-ink, #1a1a1a); text-decoration: none; }
.df-author-card__role { margin: 2px 0 6px; font-size: .8rem; color: var(--df-accent, #c8102e); }
.df-author-card__bio { margin: 0 0 6px; font-size: .9rem; line-height: 1.6; color: var(--df-ink, #2a2a2a); overflow-wrap: anywhere; }
.df-author-card__creds { margin: 0 0 6px; font-size: .8rem; color: var(--df-ink-muted, #6b6660); }
.df-author-card__pubs { margin: 0 0 6px; font-size: .8rem; color: var(--df-ink, #2a2a2a); }
.df-author-card__pubs-label { color: var(--df-ink-muted, #6b6660); margin-right: 4px; }
/* Visible link rail wraps so it never overflows, even with many profile links */
.df-author-card__links { margin: 6px 0 0; display: flex; flex-wrap: wrap; gap: 6px 14px; }
.df-author-card__links a { font-size: .8rem; color: var(--df-accent, #c8102e); }

.df-author-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; margin-top: 8px; }
.df-author-grid .df-author-card { margin: 0; }
.df-author-empty { color: var(--df-ink-muted, #6b6660); }

.df-author-hero__inner { display: flex; gap: 20px; align-items: center; }
.df-author-hero__photo img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }
.df-author-hero__role { margin: 6px 0 0; color: var(--df-accent, #c8102e); font-size: .95rem; }
.df-author-hero__creds { margin: 4px 0 0; color: var(--df-ink-muted, #6b6660); font-size: .85rem; }
.df-author-hero__links { margin: 10px 0 0; }
.df-author-hero__links a { margin-right: 14px; color: var(--df-accent, #c8102e); font-size: .85rem; }
@media (max-width: 560px) { .df-author-hero__inner { flex-direction: column; align-items: flex-start; } }

/* ── Editorial enrichment (authored in the research app, published here) ───── */
.df-enrichment { margin: 28px 0; padding: 22px 24px; border: 1px solid var(--df-border, #e5e2dc); border-left: 3px solid var(--df-accent, #c8102e); border-radius: 10px; background: #fff; }
.df-enrichment__h { font-family: 'Fraunces', Georgia, serif; font-size: 1.3rem; margin: 0 0 12px; color: var(--df-ink, #1a1a1a); }
.df-enrichment__lead { font-size: 1.05rem; line-height: 1.6; font-weight: 500; margin: 0 0 12px; }
.df-enrichment__body { line-height: 1.7; }
.df-enrichment__body p { margin: 0 0 12px; }
.df-enrichment__verdict { margin: 14px 0; padding: 12px 16px; background: var(--df-surface, #faf9f6); border-radius: 8px; }
.df-enrichment__vlabel { display: block; font-family: 'JetBrains Mono', monospace; font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--df-accent, #c8102e); margin-bottom: 4px; }
.df-enrichment__verdict p { margin: 0; }
.df-enrichment__dyk { margin: 12px 0; padding-left: 1.2em; line-height: 1.7; }
.df-enrichment__sources { margin: 14px 0 0; font-size: .8rem; color: var(--df-ink-muted, #6b6660); }
.df-enrichment__sources a { color: var(--df-accent, #c8102e); }

/* Enrichment quotes */
.df-enrichment__quote { margin: 14px 0; padding: 8px 0 8px 16px; border-left: 3px solid var(--df-border, #e5e2dc); font-style: italic; color: var(--df-ink, #2a2a2a); }
.df-enrichment__quote cite { display: block; margin-top: 6px; font-style: normal; font-size: .85rem; color: var(--df-ink-muted, #6b6660); }
.df-enrichment__quote cite a { color: var(--df-accent, #c8102e); }

/* Women's section landing */
.df-womens-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
@media (max-width: 800px) { .df-womens-grid { grid-template-columns: 1fr; } }
.df-womens-col__h { font-family: 'Fraunces', Georgia, serif; font-size: 1.3rem; margin: 0 0 12px; color: var(--df-ink, #1a1a1a); }
.df-womens-col__links { margin: 10px 0 0; font-size: .9rem; }
.df-womens-col__links a { color: var(--df-accent, #c8102e); }
.df-womens-col__links span { opacity: .5; margin: 0 6px; }
.df-womens-about { margin-top: 36px; max-width: 60ch; }
.df-womens-about h2 { font-family: 'Fraunces', Georgia, serif; font-size: 1.3rem; color: var(--df-ink, #1a1a1a); }
.df-womens-about p { line-height: 1.7; color: var(--df-ink, #2a2a2a); }

/* Compare tool */
.df-compare-form { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.df-compare-form select, .df-compare-form input { padding: 10px 12px; border: 1px solid var(--df-border, #e5e2dc); border-radius: 8px; font-size: 14px; }
.df-compare-form input { flex: 1 1 200px; }
.df-compare-note { color: var(--df-accent, #c8102e); }
.df-compare-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--df-border, #e5e2dc); border-radius: 10px; overflow: hidden; }
.df-compare-table th, .df-compare-table td { padding: 12px 14px; border-bottom: 1px solid var(--df-border, #e5e2dc); text-align: left; font-size: .95rem; }
.df-compare-table thead th { background: var(--df-surface, #faf9f6); font-family: 'Fraunces', Georgia, serif; }
.df-compare-table tbody th { color: var(--df-ink-muted, #6b6660); font-weight: 600; width: 33%; }
.df-compare-table td { font-variant-numeric: tabular-nums; }

/* Legends hub */
.df-legends-club { margin: 0 0 32px; }
.df-legends-club__h { font-family: 'Fraunces', Georgia, serif; font-size: 1.35rem; margin: 0 0 10px; color: var(--df-ink, #1a1a1a); }
.df-legends-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--df-border, #e5e2dc); border-radius: 10px; overflow: hidden; }
.df-legends-table th, .df-legends-table td { padding: 9px 12px; border-bottom: 1px solid var(--df-border, #e5e2dc); text-align: left; font-size: .9rem; }
.df-legends-table thead th { background: var(--df-surface, #faf9f6); font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; color: var(--df-ink-muted, #6b6660); }
.df-legends-table__apps { font-variant-numeric: tabular-nums; font-weight: 600; text-align: right; }
.df-legends-table tr:last-child td { border-bottom: 0; }

/* --- Compliance: Bet Now CTA + cookie settings link (added for launch) --- */
.df-betnow {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--df-accent); color: #fff; font-weight: 700;
  font-size: .8rem; letter-spacing: .01em; line-height: 1;
  padding: 8px 12px; border-radius: 7px; text-decoration: none;
  border: 1px solid var(--df-accent-dark, #a30c25);
  transition: background .15s ease, transform .1s ease;
  white-space: nowrap;
}
.df-betnow:hover { background: var(--df-accent-dark, #a30c25); color: #fff; transform: translateY(-1px); }
.df-betnow__age {
  font-size: .62rem; font-weight: 700; padding: 2px 4px; border-radius: 4px;
  background: rgba(255,255,255,.22); color: #fff;
}
@media (max-width: 600px) {
  .df-betnow__label { display: none; }
  .df-betnow { padding: 8px 9px; }
  .df-betnow::before { content: "Bet"; }
}
.df-footer__cookie-btn {
  background: none; border: 0; padding: 0; margin: 0; cursor: pointer;
  font: inherit; color: inherit; text-decoration: underline; text-underline-offset: 2px;
}
.df-footer__cookie-btn:hover { color: var(--df-accent); }

/* Newsletter compliance line (18+ + Privacy) */
.df-newsletter__legal {
  margin: 12px 0 0; font-size: .76rem; line-height: 1.5;
  color: rgba(255,255,255,.62); text-align: center;
}
.df-newsletter__legal a { color: rgba(255,255,255,.85); text-decoration: underline; text-underline-offset: 2px; }

/* --- DragonBet placements (reusable CTA component) --- */
.df-db-cta-wrap { margin: 28px auto; }
.df-db-cta-wrap--home { margin: 8px auto 32px; }
.df-db-cta {
  position: relative; display: grid; gap: 14px;
  grid-template-columns: 1fr auto; align-items: center;
  padding: 18px 20px; border-radius: 12px;
  background: linear-gradient(135deg, #11151c 0%, #1c232e 100%);
  color: #f7f5f0; border: 1px solid #283040;
}
.df-db-cta__tag {
  position: absolute; top: 10px; right: 12px;
  font-size: .58rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 700;
  color: #8a8f98; border: 1px solid #3a4250; border-radius: 4px; padding: 1px 5px;
}
.df-db-cta__heading { font-family: Fraunces, Georgia, serif; font-weight: 700; font-size: 1.18rem; line-height: 1.2; margin: 0 0 4px; }
.df-db-cta__sub { color: #b7bcc4; font-size: .9rem; line-height: 1.45; margin: 0; max-width: 52ch; }
.df-db-cta__btn {
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
  background: var(--df-accent, #c8102e); color: #fff; font-weight: 700; font-size: .95rem;
  padding: 12px 20px; border-radius: 8px; text-decoration: none;
  border: 1px solid var(--df-accent-dark, #a30c25); transition: background .15s ease, transform .1s ease;
}
.df-db-cta__btn:hover { background: var(--df-accent-dark, #a30c25); color: #fff; transform: translateY(-1px); }
.df-db-cta__age { font-size: .62rem; font-weight: 700; padding: 2px 5px; border-radius: 4px; background: rgba(255,255,255,.22); }
.df-db-cta__action { grid-row: 1; grid-column: 2; }
.df-db-cta .df-gamble-notice {
  grid-column: 1 / -1; margin: 2px 0 0; font-size: .72rem; line-height: 1.5; color: #8a8f98;
}
.df-db-cta .df-gamble-notice a { color: #b7bcc4; text-decoration: underline; text-underline-offset: 2px; }
.df-gamble-notice__age {
  display: inline-block; font-weight: 700; color: #fff; background: var(--df-accent, #c8102e);
  font-size: .62rem; padding: 1px 5px; border-radius: 4px; margin-right: 4px; vertical-align: middle;
}
.df-db-cta--strip { background: linear-gradient(135deg, #c8102e 0%, #8f0c20 100%); border-color: #8f0c20; }
.df-db-cta--strip .df-db-cta__sub { color: rgba(255,255,255,.85); }
.df-db-cta--strip .df-db-cta__btn { background: #fff; color: #c8102e; border-color: #fff; }
.df-db-cta--strip .df-db-cta__btn:hover { background: #f7f5f0; color: #a30c25; }
.df-db-cta--strip .df-gamble-notice, .df-db-cta--strip .df-gamble-notice a { color: rgba(255,255,255,.8); }
.df-db-cta--strip .df-db-cta__tag { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.4); }
.df-db-cta--strip .df-gamble-notice__age { background: #fff; color: #c8102e; }
@media (max-width: 600px) {
  .df-db-cta { grid-template-columns: 1fr; }
  .df-db-cta__action { grid-row: auto; grid-column: 1; }
  .df-db-cta__btn { width: 100%; justify-content: center; }
}

/* DragonBet display banners (image creative) */
.df-db-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 24px auto;
  text-align: center;
}
.df-db-banner .df-db-cta__tag { align-self: center; }
.df-db-banner__link { display: inline-block; line-height: 0; max-width: 100%; }
.df-db-banner__img { display: block; max-width: 100%; height: auto; }
/* Balanced placement wrappers: top banner (intent pages) + in-content rectangle. */
.df-db-top-banner { margin: 22px auto; text-align: center; }
.df-db-incontent { margin: 32px auto; text-align: center; }
.df-db-incontent .df-db-banner { display: inline-flex; }
/* In-content entity auto-links: a quiet dotted underline, solid on hover. */
.df-ilink { color: var(--df-accent); text-decoration: none; border-bottom: 1px dotted currentColor; }
.df-ilink:hover { border-bottom-style: solid; }
.df-db-banner__notice { margin: 0; font-family: var(--df-sans); font-size: 11px; color: var(--df-ink-soft); }
.df-db-banner__notice a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.df-db-banner__notice .df-gamble-notice__age {
  display: inline-block; background: var(--df-accent); color: #fff;
  font-weight: 700; border-radius: 3px; padding: 0 4px; margin-right: 4px;
}
/* Admin-only sized placeholders so empty slots are visible pre-launch */
.df-db-banner__placeholder {
  display: flex; align-items: center; justify-content: center;
  max-width: 100%; border: 1px dashed var(--df-rule); border-radius: 6px;
  color: var(--df-ink-soft); font-family: var(--df-mono); font-size: 12px;
  background: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(0,0,0,.02) 8px, rgba(0,0,0,.02) 16px);
}
/* Breakpoint swap: desktop unit ≥768px, mobile unit below */
.df-db-banner__mobile { display: inline-block; }
.df-db-banner__desktop { display: none; }
@media (min-width: 768px) {
  .df-db-banner__mobile { display: none; }
  .df-db-banner__desktop { display: inline-block; }
}

/* Sticky mobile bottom anchor — highest-viewability unit, dismissible */
.df-db-anchor {
  /* Stacks ABOVE the sticky bottom nav rather than over it. At bottom:0 this
     sat on the nav (z-index 200 vs the nav's 150) and took out site navigation
     for as long as the ad was up. The nav is 56px and owns the safe-area inset,
     so the anchor offsets by both and adds no inset of its own. The anchor is
     mobile-only (hidden ≥768px) and the nav is always present below 768px, so
     the offset never leaves it floating over nothing. */
  position: fixed; left: 0; right: 0; z-index: 200;
  bottom: calc(56px + env(safe-area-inset-bottom, 0px));
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, .98);
  border-top: 1px solid var(--df-rule);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, .08);
}
.df-db-anchor__unit { line-height: 0; }
.df-db-anchor__tag { flex: none; }
.df-db-anchor__age {
  flex: none; display: inline-block; background: var(--df-accent); color: #fff;
  font-size: 10px; font-weight: 700; border-radius: 3px; padding: 1px 4px;
}
.df-db-anchor__close {
  position: absolute; top: -13px; right: 10px; width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center; padding: 0;
  border-radius: 50%; border: 1px solid var(--df-rule); background: #fff;
  color: var(--df-ink); font-size: 17px; line-height: 1; cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .14);
}
@media (min-width: 768px) { .df-db-anchor { display: none; } }

/* CookieYes revisit badge. It ships as position:fixed bottom-left, which on
   mobile lands it on top of the bottom nav's first item ("News"). Lift it clear
   of the nav, and clear the ad anchor too when that's up, so the badge never
   buries either. !important because CookieYes sets its position inline from the
   dashboard config. Desktop is untouched (no bottom nav there). */
@media (max-width: 768px) {
  .cky-btn-revisit-wrapper,
  .cky-revisit-bottom-left {
    bottom: calc(66px + env(safe-area-inset-bottom, 0px)) !important;
  }
  body:has(#df-db-anchor) .cky-btn-revisit-wrapper,
  body:has(#df-db-anchor) .cky-revisit-bottom-left {
    bottom: calc(184px + env(safe-area-inset-bottom, 0px)) !important;
  }
}

/* Desktop side rail (300x600) in the article gutter — only where there's room */
.df-db-rail { display: none; }
@media (min-width: 1450px) {
  .df-db-rail {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    position: fixed; z-index: 90; top: 96px; left: calc(50% + 424px); width: 300px;
    text-align: center;
  }
  .df-db-rail .df-db-banner__notice { margin: 0; font-family: var(--df-sans); font-size: 11px; color: var(--df-ink-soft); }
  .df-db-rail .df-db-banner__notice a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
}

/* Wage-efficiency table value bar */
.df-finance-table--we .df-we__val { position: relative; white-space: nowrap; }
.df-we__bar { position: absolute; left: 0; top: 50%; transform: translateY(-50%); height: 62%; background: rgba(22,130,70,.14); border-radius: 4px; z-index: 0; }
.df-finance-table--we .df-we__val strong { position: relative; z-index: 1; }

/* Journalist reliability badge (rumour track record) */
.df-reliab {
  display: inline-flex; align-items: baseline; gap: 3px;
  font-family: var(--df-mono); font-size: 11px; font-weight: 700;
  padding: 1px 7px; border-radius: 999px; white-space: nowrap;
  border: 1px solid transparent;
}
.df-reliab__lbl { font-weight: 600; opacity: .8; }
.df-reliab--high { background: rgba(22, 130, 70, .12); color: #167a40; border-color: rgba(22, 130, 70, .25); }
.df-reliab--mid  { background: rgba(184, 134, 11, .12); color: #99710a; border-color: rgba(184, 134, 11, .25); }
.df-reliab--low  { background: rgba(196, 36, 46, .10); color: #b21f2c; border-color: rgba(196, 36, 46, .22); }

/* Share the facts — club bragging-rights cards */
.df-facts { margin: 8px 0 36px; }
.df-facts__head { margin-bottom: 16px; }
.df-facts__kicker {
  font-family: var(--df-mono); font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em; color: var(--df-accent);
}
.df-facts__title { font-family: var(--df-serif); font-size: clamp(1.4rem, 4vw, 2rem); margin: 6px 0 2px; }
.df-facts__dek { color: var(--df-ink-soft); font-size: 14px; margin: 0; }
.df-facts__wrapped { display: inline-block; margin-top: 8px; font-family: var(--df-sans); font-size: 13px; font-weight: 600; color: var(--df-accent); text-decoration: none; }
.df-facts__wrapped:hover { text-decoration: underline; }
.df-facts__row {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(190px, 1fr);
  gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 0 12px; margin: 0 calc(-1 * var(--df-gutter)); padding-left: var(--df-gutter); padding-right: var(--df-gutter);
  -webkit-overflow-scrolling: touch;
}
.df-facts__row::-webkit-scrollbar { height: 6px; }
.df-facts__row::-webkit-scrollbar-thumb { background: var(--df-rule); border-radius: 3px; }
/* Desktop: drop the full-bleed scroll carousel for a contained wrapping grid so
   the cards line up with the heading and all fit on screen. The horizontal
   scroll carousel is kept for mobile (the base rule above). */
@media (min-width: 768px) {
  .df-facts__row {
    grid-auto-flow: row;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    grid-auto-columns: auto;
    overflow-x: visible;
    scroll-snap-type: none;
    margin: 0;            /* remove the negative-margin full bleed */
    padding-left: 0;
    padding-right: 0;
  }
}
.df-fact-card {
  /* margin:0 cancels the browser default <figure> margin (1em 40px); without it
     the stat-card figures shrink inside their grid cell and the Share/Card
     buttons overflow. The <a> game cards never had it. */
  scroll-snap-align: start; display: flex; flex-direction: column;
  min-height: 170px; padding: 18px; border-radius: 14px; margin: 0;
  background: var(--df-paper); border: 1px solid var(--df-rule);
  box-shadow: 0 1px 2px rgba(0,0,0,.04); position: relative;
}
.df-fact-card__stat {
  font-family: var(--df-serif); font-weight: 800; line-height: 1;
  font-size: clamp(1.9rem, 6vw, 2.6rem); color: var(--df-ink); letter-spacing: -0.02em;
}
.df-fact-card__label { margin-top: 8px; color: var(--df-ink-soft); font-size: 14px; line-height: 1.3; flex: 1 1 auto; }
.df-fact-card__actions { display: flex; gap: 8px; align-items: center; margin-top: 14px; }
.df-fact-card__share {
  appearance: none; cursor: pointer; border: 0; border-radius: 999px;
  background: var(--df-accent); color: #fff; font-weight: 600; font-size: 13px;
  font-family: var(--df-sans); padding: 7px 16px;
}
.df-fact-card__share.is-copied { background: var(--df-ink); }
.df-fact-card__img {
  font-family: var(--df-sans); font-size: 13px; font-weight: 600; color: var(--df-ink-soft);
  text-decoration: none; padding: 7px 12px; border: 1px solid var(--df-rule); border-radius: 999px;
}
.df-fact-card__img:hover { border-color: var(--df-ink-soft); color: var(--df-ink); }
/* The rival hook card */
.df-fact-card--vs {
  background: linear-gradient(150deg, #11151c, #1d2530); border-color: #11151c;
  text-decoration: none; justify-content: center; gap: 8px;
}
.df-fact-card--vs .df-fact-card__stat { color: #fff; font-style: italic; }
.df-fact-card--vs .df-fact-card__label { color: rgba(255,255,255,.82); }
.df-fact-card--vs .df-fact-card__cta { color: var(--df-accent); font-weight: 700; font-size: 14px; }
.df-fact-card--xi { background: linear-gradient(150deg, #0b3d2e, #135a41); border-color: #0b3d2e; text-decoration: none; justify-content: center; gap: 8px; }
.df-fact-card--xi .df-fact-card__stat { color: #fff; font-style: italic; }
.df-fact-card--xi .df-fact-card__label { color: rgba(255,255,255,.85); }
.df-fact-card--xi .df-fact-card__cta { color: #7cffb2; font-weight: 700; font-size: 14px; }
.df-xi { padding: 8px 0 48px; }
.df-xi__kicker { font-family: var(--df-mono); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--df-accent); }
.df-xi__title { font-family: var(--df-serif); font-size: clamp(1.6rem, 5vw, 2.4rem); margin: 6px 0 8px; }
.df-xi__dek { color: var(--df-ink-soft); margin: 0 0 20px; }
.df-xi-pick__bar { position: sticky; top: 64px; z-index: 20; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; padding: 10px; margin: 0 0 18px; background: rgba(255,255,255,.96); border: 1px solid var(--df-rule); border-radius: 10px; }
.df-xi-count { font-family: var(--df-sans); font-size: 12px; color: var(--df-ink-soft); padding: 3px 8px; border-radius: 999px; background: var(--df-paper); }
.df-xi-count b { color: var(--df-ink); }
.df-xi-count.is-full { background: rgba(22,130,70,.14); color: #167a40; }
.df-xi-submit { margin-left: auto; appearance: none; border: 0; border-radius: 999px; background: var(--df-accent); color: #fff; font-weight: 600; padding: 8px 18px; cursor: pointer; font-family: var(--df-sans); }
.df-xi-submit:disabled { background: var(--df-rule); color: var(--df-ink-soft); cursor: not-allowed; }
.df-xi-group { margin: 0 0 22px; }
.df-xi-group__head { font-family: var(--df-serif); font-size: 1.1rem; margin: 0 0 10px; }
.df-xi-group__head span { font-family: var(--df-sans); font-size: 12px; color: var(--df-ink-soft); font-weight: 400; }
.df-xi-chips { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 8px; }
.df-xi-chip { text-align: left; appearance: none; cursor: pointer; background: var(--df-paper); border: 1px solid var(--df-rule); border-radius: 10px; padding: 10px 12px; display: flex; flex-direction: column; gap: 2px; }
.df-xi-chip.is-on { border-color: var(--df-accent); background: rgba(196,36,46,.06); box-shadow: inset 0 0 0 1px var(--df-accent); }
.df-xi-chip__name { font-weight: 600; font-size: 14px; }
.df-xi-chip__meta { font-size: 11px; color: var(--df-ink-soft); }
.df-xi-result__head { font-family: var(--df-serif); margin: 8px 0 4px; }
.df-xi-result__subs { color: var(--df-ink-soft); font-size: 13px; margin: 0 0 16px; }
.df-xi-row { display: grid; grid-template-columns: 1fr 120px 44px; align-items: center; gap: 10px; padding: 6px 0; border-bottom: 1px solid var(--df-rule); }
.df-xi-row__name { font-weight: 600; }
.df-xi-row__bar { height: 8px; background: var(--df-paper); border-radius: 4px; overflow: hidden; }
.df-xi-row__bar span { display: block; height: 100%; background: var(--df-accent); }
.df-xi-row__pct { font-family: var(--df-mono); font-size: 12px; text-align: right; color: var(--df-ink-soft); }
.df-xi-share { margin-top: 16px; appearance: none; border: 0; border-radius: 999px; background: var(--df-ink); color: #fff; font-weight: 600; padding: 9px 20px; cursor: pointer; font-family: var(--df-sans); }

/* Per-season xG: value + goals-minus-xG over/under badge */
.df-player-stats__xg { font-variant-numeric: tabular-nums; white-space: nowrap; }
.df-xg-diff { display: inline-block; margin-left: 5px; font-size: .68rem; font-weight: 700;
  padding: 1px 5px; border-radius: 4px; vertical-align: middle; }
.df-xg-diff--pos { background: rgba(22,140,75,.14); color: #168c4b; }
.df-xg-diff--neg { background: rgba(200,16,46,.12); color: #b00c25; }

/* ── Share bar ─────────────────────────────────────────────────────────────
   Light styling to match the editorial site. Pills with a quiet border that
   darkens on hover; the copy button flips to brand-dark on success. */
.df-share { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; margin: 20px 0 4px; }
.df-share__label { font-size: .72rem; letter-spacing: .05em; text-transform: uppercase;
  color: #6b7280; font-weight: 700; margin-right: 2px; }
.df-share__btn { display: inline-flex; align-items: center; gap: 6px; font: inherit;
  font-size: .84rem; font-weight: 600; line-height: 1; color: #11151c; background: #fff;
  border: 1px solid #e2e2dd; border-radius: 999px; padding: 9px 14px; cursor: pointer;
  text-decoration: none; transition: border-color .15s, background .15s, color .15s; }
.df-share__btn:hover { border-color: #11151c; }
.df-share__btn svg { width: 15px; height: 15px; display: block; flex: none; }
.df-share__copy.is-copied { background: #11151c; border-color: #11151c; color: #fff; }
@media (max-width: 600px) { .df-share__label { width: 100%; margin: 0 0 2px; } }

/* ── App-like navigation: cross-document view transitions ───────────────────
   Opt the whole site into the View Transitions API. Supporting browsers
   cross-fade between page loads so navigation feels native; everyone else
   gets an ordinary instant nav. Respect reduced-motion. */
@view-transition { navigation: auto; }
@media (prefers-reduced-motion: reduce) {
  @view-transition { navigation: none; }
}
::view-transition-old(root), ::view-transition-new(root) { animation-duration: .22s; }

/* Slim top progress bar shown while the next page loads (the host can be slow,
   so a native-app-style loading cue matters). Injected by main.js. */
.df-navbar { position: fixed; top: 0; left: 0; height: 3px; width: 0; z-index: 2000;
  background: #d4232e; opacity: 0; transition: width .2s ease, opacity .25s ease; pointer-events: none; }
.df-navbar.is-active { opacity: 1; }

/* ── Club legends strip ─────────────────────────────────────────────────── */
.df-legends-strip { list-style: none; margin: 4px 0 0; padding: 0; display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 8px; }
.df-legends-strip__item { display: flex; align-items: baseline; justify-content: space-between;
  gap: 10px; padding: 9px 12px; background: #faf9f5; border: 1px solid #ece9e0; border-radius: 8px; }
.df-legends-strip__name { font-weight: 700; font-size: .92rem; color: #11151c; }
.df-legends-strip__stat { font-size: .78rem; color: #6b7280; white-space: nowrap; font-variant-numeric: tabular-nums; }
@media (max-width: 600px) { .df-legends-strip { grid-template-columns: 1fr; } }

/* ── Follow a club ──────────────────────────────────────────────────────── */
/* auto left/right keeps the .df-container centring (a bare "0" would pin the bar
   to the left edge while the banner/heading/cards stay centred). */
.df-club-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin: 18px auto 4px; }
.df-club-actions .df-share { margin: 0; }
.df-follow-btn { display: inline-flex; align-items: center; gap: 7px; font: inherit; font-size: .84rem;
  font-weight: 700; color: #fff; background: #d4232e; border: 1px solid #d4232e; border-radius: 999px;
  padding: 9px 16px; cursor: pointer; transition: background .15s, border-color .15s; }
.df-follow-btn:hover { background: #b51f28; border-color: #b51f28; }
.df-follow-btn.is-following { background: #11151c; border-color: #11151c; }
.df-follow-btn svg { width: 15px; height: 15px; display: block; }

/* "Your clubs" quick-access bar (injected by main.js) */
.df-follow-bar { display: flex; align-items: center; flex-wrap: wrap; gap: 8px;
  padding: 8px 16px; background: #faf9f5; border-bottom: 1px solid #ece9e0; }
.df-follow-bar__label { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: #6b7280; font-weight: 700; }
.df-follow-bar__chip { font-size: .82rem; font-weight: 600; color: #11151c; background: #fff;
  border: 1px solid #e2e2dd; border-radius: 999px; padding: 5px 12px; text-decoration: none; }
.df-follow-bar__chip:hover { border-color: #11151c; }

/* ── On this day ────────────────────────────────────────────────────────── */
.df-otd { margin: 16px 0; padding: 16px 18px; background: #faf9f5; border: 1px solid #ece9e0; border-radius: 12px; }
.df-otd__head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 10px; }
.df-otd__kicker { font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: #d4232e; font-weight: 700; }
.df-otd__title { font-size: 1.05rem; margin: 0; font-weight: 700; color: #11151c; }
.df-otd__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.df-otd__item { display: flex; align-items: center; gap: 10px; font-size: .9rem; }
.df-otd__year { font-weight: 700; color: #11151c; font-variant-numeric: tabular-nums; min-width: 42px; }
.df-otd__result { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px;
  border-radius: 5px; font-size: .68rem; font-weight: 700; color: #fff; flex: none; }
.df-otd__result--w { background: #168c4b; } .df-otd__result--d { background: #8a8f98; } .df-otd__result--l { background: #c8102e; }
.df-otd__score { font-weight: 700; font-variant-numeric: tabular-nums; color: #11151c; }
.df-otd__opp { color: #4b5563; }

/* ── Club alerts opt-in (push + email) ──────────────────────────────────── */
.df-alerts { position: relative; }
.df-alerts__toggle { display: inline-flex; align-items: center; gap: 6px; font: inherit; font-size: .84rem;
  font-weight: 600; color: #11151c; background: #fff; border: 1px solid #e2e2dd; border-radius: 999px; padding: 9px 14px; cursor: pointer; }
.df-alerts__toggle:hover { border-color: #11151c; }
.df-alerts__panel { position: absolute; top: calc(100% + 8px); left: 0; z-index: 30; width: 300px; max-width: 82vw;
  background: #fff; border: 1px solid #e2e2dd; border-radius: 10px; padding: 14px; box-shadow: 0 8px 28px rgba(17,21,28,.12); }
.df-alerts__lead { font-size: .82rem; color: #4b5563; margin: 0 0 10px; line-height: 1.5; }
.df-alerts__opt { font: inherit; font-size: .82rem; font-weight: 600; color: #fff; background: #11151c;
  border: 1px solid #11151c; border-radius: 8px; padding: 9px 14px; cursor: pointer; }
.df-alerts__opt:hover { background: #000; }
.df-alerts__opt[disabled] { background: #9ca3af; border-color: #9ca3af; cursor: default; }
.df-alerts__email { display: flex; gap: 6px; margin-top: 8px; }
.df-alerts__email input { flex: 1; min-width: 0; border: 1px solid #e2e2dd; border-radius: 8px; padding: 8px 10px; font-size: .85rem; }
.df-alerts__msg { font-size: .78rem; color: #168c4b; margin: 8px 0 0; min-height: 16px; }

/* "Since you last looked" */
.df-since-pill { display: inline-block; font-size: .72rem; font-weight: 700; color: #fff;
  background: #d4232e; border-radius: 999px; padding: 4px 11px; margin: 0 0 10px; }
.df-dash-article--new .df-dash-article__kicker::after { content: "NEW"; margin-left: 8px;
  font-size: .62rem; font-weight: 700; color: #d4232e; letter-spacing: .06em; }

/* ── Games: dark arcade ─────────────────────────────────────────────────────
   The site stays light; games are their own lights-down zone. Scoped to
   .df-arcade so nothing leaks into the editorial pages. */
.df-arcade { background: #11151c; color: #f7f5f0; padding: 44px 16px 60px; }
.df-arcade__wrap { max-width: 560px; margin: 0 auto; }
.df-arcade__kicker { font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: #d4232e; font-weight: 700; margin: 0 0 10px; }
.df-arcade__title { font-size: clamp(1.8rem, 6vw, 2.6rem); line-height: 1.05; margin: 0 0 8px; color: #fff; font-weight: 800; }
.df-arcade__dek { color: #8a8f98; margin: 0 0 24px; }
.df-arcade__foot { color: #6b7280; font-size: .76rem; line-height: 1.6; margin: 20px 0 0; }
.df-tt__pickers { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 10px; margin-bottom: 18px; }
.df-tt__select { width: 100%; background: #1b212b; color: #f7f5f0; border: 1px solid #2a323e; border-radius: 8px; padding: 11px 12px; font-size: .95rem; }
.df-tt__vs { color: #8a8f98; font-weight: 700; font-size: .82rem; }
.df-tt__card { background: #161b24; border: 1px solid #232a34; border-radius: 14px; padding: 16px; }
.df-tt__head { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px; padding-bottom: 12px; margin-bottom: 4px; border-bottom: 1px solid #232a34; }
.df-tt__club { font-weight: 700; color: #fff; font-size: .98rem; }
.df-tt__club--right { text-align: right; }
.df-tt__vs2 { color: #8a8f98; font-size: .8rem; }
.df-tt__row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 8px; padding: 11px 0; border-bottom: 1px solid #1b212b; }
.df-tt__val { font-size: 1.05rem; font-weight: 700; color: #f7f5f0; font-variant-numeric: tabular-nums; }
.df-tt__val--right { text-align: right; }
.df-tt__val.is-win { color: #ff5660; }
.df-tt__metric { text-align: center; display: flex; flex-direction: column; gap: 2px; }
.df-tt__metric span { font-size: .8rem; color: #cdd2d9; }
.df-tt__metric small { font-size: .64rem; color: #6b7280; }
.df-tt__banner { display: flex; align-items: center; justify-content: center; gap: 8px; background: #d4232e; color: #fff; font-weight: 700; border-radius: 8px; padding: 11px; margin-top: 12px; }
.df-tt__actions { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.df-tt__btn { font: inherit; font-size: .85rem; font-weight: 600; color: #f7f5f0; background: #1b212b; border: 1px solid #2a323e; border-radius: 999px; padding: 9px 16px; cursor: pointer; }
.df-tt__btn:hover { border-color: #d4232e; }
.df-tt__btn--share { background: #d4232e; border-color: #d4232e; color: #fff; }
.df-tt__loading { color: #8a8f98; }

/* ── Who's the Legend? (daily guess game) ───────────────────────────────── */
.df-wl__streak { color: #f3a712; font-weight: 700; font-size: .9rem; min-height: 20px; margin-bottom: 10px; }
.df-wl__form { display: flex; gap: 8px; margin-bottom: 8px; }
.df-wl__input { flex: 1; background: #1b212b; color: #f7f5f0; border: 1px solid #2a323e; border-radius: 8px; padding: 12px 14px; font-size: 1rem; }
.df-wl__go { font: inherit; font-weight: 700; color: #fff; background: #d4232e; border: 1px solid #d4232e; border-radius: 8px; padding: 0 18px; cursor: pointer; }
.df-wl__count { color: #8a8f98; font-size: .8rem; margin: 0 0 12px; }
.df-wl__board { display: flex; flex-direction: column; gap: 8px; }
.df-wl__guess { background: #161b24; border: 1px solid #232a34; border-radius: 10px; padding: 10px 12px; }
.df-wl__gname { font-weight: 700; color: #fff; font-size: .95rem; margin-bottom: 7px; }
.df-wl__chips { display: flex; flex-wrap: wrap; gap: 6px; }
.df-wl__chip { font-size: .76rem; font-weight: 600; border-radius: 6px; padding: 4px 9px; border: 1px solid transparent; }
.df-wl__chip--hit { background: #11351f; color: #4ade80; border-color: #1d5c36; }
.df-wl__chip--near { background: #3a2f12; color: #f3a712; border-color: #5c4a1d; }
.df-wl__chip--miss { background: #1b212b; color: #8a8f98; border-color: #2a323e; }
.df-wl__end { margin-top: 16px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.df-wl__endline { width: 100%; color: #f7f5f0; font-size: .95rem; margin: 0 0 4px; }
.df-wl__endline strong { color: #fff; }
/* Legends Top Trumps: position bar, two stacked selects per side, club sub-label. */
.df-tt__posbar { display: flex; gap: 6px; margin-bottom: 14px; flex-wrap: wrap; }
.df-tt__posbar button { font: inherit; font-size: .82rem; font-weight: 600; color: #cdd2d9; background: #1b212b; border: 1px solid #2a323e; border-radius: 999px; padding: 8px 14px; cursor: pointer; }
.df-tt__posbar button.is-active { background: #d4232e; border-color: #d4232e; color: #fff; }
.df-tt__pickers--legends { align-items: start; }
.df-tt__side { display: flex; flex-direction: column; gap: 8px; }
.df-tt__club small { display: block; font-size: .7rem; font-weight: 400; color: #8a8f98; margin-top: 2px; }
.df-tt__empty { color: #8a8f98; text-align: center; padding: 18px 0; margin: 0; }

/* "Brought to you by DragonBet" sponsor strip (dark games zone). Carries the
   same compliance treatment as the on-site CTAs: Ad label, 18+, hidden under-18. */
.df-db-sponsor { display: flex; flex-direction: column; align-items: center; gap: 7px; margin: 26px 0 4px; text-align: center; }
.df-db-sponsor .df-db-cta__tag { font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: #6b7280; }
.df-db-sponsor__link { display: inline-flex; align-items: center; gap: 9px; color: #f7f5f0; text-decoration: none; font-size: .92rem; }
.df-db-sponsor__lead { color: #8a8f98; font-weight: 600; }
.df-db-wordmark { color: #fff; font-weight: 800; letter-spacing: .01em; }
.df-db-sponsor .df-db-logo { display: inline-block; vertical-align: middle; }
.df-db-sponsor .df-db-cta__age { background: #d4232e; color: #fff; font-size: .62rem; font-weight: 700; padding: 2px 6px; border-radius: 4px; }
.df-db-sponsor .df-gamble-notice { color: #6b7280; font-size: .68rem; line-height: 1.55; max-width: 520px; margin: 4px auto 0; }
.df-db-sponsor .df-gamble-notice a { color: #8a8f98; }
.df-db-sponsor .df-gamble-notice__age { color: #d4232e; font-weight: 700; }

/* ── Games hub (/games/) ────────────────────────────────────────────────── */
.df-arcade__wrap--wide { max-width: 880px; }
.df-game-card { display: flex; flex-direction: column; background: #161b24; border: 1px solid #232a34;
  border-radius: 14px; padding: 18px; text-decoration: none; color: #f7f5f0; position: relative;
  transition: border-color .15s, transform .15s; }
a.df-game-card:hover { border-color: #d4232e; transform: translateY(-2px); }
.df-game-card--feature { margin-bottom: 14px; }
.df-game-card__badge { display: inline-block; align-self: flex-start; font-size: .62rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: #fff; background: #d4232e; border-radius: 5px;
  padding: 3px 8px; margin-bottom: 10px; }
.df-game-card__badge--soon { background: #2a323e; color: #8a8f98; }
.df-game-card__title { font-size: 1.2rem; font-weight: 800; margin: 0 0 8px; color: #fff; }
.df-game-card__dek { font-size: .86rem; color: #cdd2d9; line-height: 1.5; margin: 0 0 14px; flex: 1; }
.df-game-card__cta { font-size: .85rem; font-weight: 700; color: #ff5660; }
.df-game-card__cta--muted { color: #6b7280; }
.df-game-card--soon { cursor: default; }
.df-games-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 14px; }
@media (max-width: 600px) { .df-games-grid { grid-template-columns: 1fr; } }

/* Compare tool: winner highlighting + verdict */
.df-compare-win { background: rgba(22,130,70,.12); font-weight: 700; color: #167a40; }
.df-compare-lead a { color: var(--df-accent); }
.df-compare-verdict { font-weight: 600; margin: 14px 0 6px; font-family: var(--df-serif); }
.df-compare-share { appearance: none; border: 0; border-radius: 999px; background: var(--df-ink); color: #fff; font-weight: 600; padding: 9px 18px; cursor: pointer; font-family: var(--df-sans); margin: 4px 0 8px; }

/* Article companions: by-the-numbers, game nudge, related reads */
.df-companions { margin: 28px 0 8px; display: flex; flex-direction: column; gap: 22px; }
.df-companion__head { font-family: var(--df-serif); font-size: 1.15rem; margin: 0 0 12px; }
.df-companion--numbers { padding: 18px; border: 1px solid var(--df-rule); border-radius: 12px; background: var(--df-paper); }
.df-cstats { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 14px; margin-bottom: 12px; }
.df-cstat { font-size: 13px; color: var(--df-ink-soft); }
.df-cstat b { display: block; font-family: var(--df-serif); font-size: 1.5rem; line-height: 1; color: var(--df-ink); margin-bottom: 3px; }
.df-companion__link { font-weight: 600; font-size: 14px; color: var(--df-accent); text-decoration: none; }
.df-companion-game { display: flex; align-items: center; gap: 12px; padding: 14px 18px; border-radius: 12px; background: linear-gradient(150deg, #11151c, #1d2530); color: #fff; text-decoration: none; }
.df-companion-game__tag { font-family: var(--df-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: #7cffb2; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; padding: 2px 8px; }
.df-companion-game__label { font-weight: 600; flex: 1; }
.df-companion-game__cta { color: #7cffb2; font-weight: 700; }

/* ── Series imagery (licensed header image per series, Media Library) ── */
.df-series-card { overflow: hidden; }
/* Only the /series/ index cards (full-bleed thumb + padded __body) zero the
   card's own padding. The homepage df_render_series cards have no __body and
   must keep their 28px/24px padding so content isn't flush to the border. */
.df-series-card:has(.df-series-card__body) { padding: 0; }
.df-series-card__thumb {
  display: block;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  background-color: var(--df-rule);
}
.df-series-card__body { display: block; padding: 28px 24px; }
.df-series-lead { margin: 24px 0 28px; }
.df-series-lead img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border: 1px solid var(--df-rule);
}

/* Series cards: greyscale at rest, colour on interaction. Desktop reveals on
   hover; touch reveals on scroll-into-view (JS adds .is-revealed, gated behind
   the .df-js flag so a no-JS touch device keeps full colour). Hub lead images
   stay full colour as the page hero. */
@media (hover: hover) and (pointer: fine) {
  .df-series-card__thumb { filter: grayscale(100%); transition: filter 0.4s ease; }
  .df-series-card:hover .df-series-card__thumb { filter: grayscale(0); }
}
@media (hover: none) {
  .df-js .df-series-card__thumb { filter: grayscale(100%); transition: filter 0.6s ease; }
  .df-js .df-series-card.is-revealed .df-series-card__thumb { filter: grayscale(0); }
}

/* Player page: "Latest stories" (the entity link to editorial) */
.df-player-stories { display: grid; gap: 0; }
.df-player-story { display: flex; gap: 14px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--df-rule); text-decoration: none; }
.df-player-story:hover .df-player-story__title { color: var(--df-accent); }
.df-player-story__thumb { flex: 0 0 96px; }
.df-player-story__thumb img { display: block; width: 96px; height: 64px; object-fit: cover; border: 1px solid var(--df-rule); }
.df-player-story__date { display: block; font-family: var(--df-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--df-ink-muted); margin-bottom: 3px; }
.df-player-story__title { font-family: var(--df-serif); font-size: 17px; line-height: 1.25; color: var(--df-ink); }

/* Section hero: Alamy lead banner under a section page's hero text (df_section_lead) */
.df-section-lead { margin: 8px 0 4px; }
.df-section-lead img { display: block; width: 100%; height: auto; max-height: 440px; object-fit: cover; border: 1px solid var(--df-rule); }

/* B&W until scrolled: main editorial images greyscale at rest, colour on scroll-in
   (df-js set in <head>; no-JS = full colour). Logos/crests/banners excluded. */
.df-js .df-section-lead img,
.df-js .df-series-lead img,
.df-js .df-editorial-feature img,
.df-js .df-hero__image {
  filter: grayscale(100%);
  transition: filter 0.7s ease;
}
.df-js .df-section-lead img.is-revealed,
.df-js .df-series-lead img.is-revealed,
.df-js .df-editorial-feature img.is-revealed,
.df-js .df-hero__image.is-revealed {
  filter: grayscale(0);
}

/* Transfers hub: clickable snapshot cards + fresh-scoops strip */
a.df-snapshot__card { text-decoration: none; transition: transform 0.15s ease, border-color 0.15s ease; }
a.df-snapshot__card:not(.df-snapshot__card--accent) { color: var(--df-ink); }
a.df-snapshot__card.df-snapshot__card--accent { color: var(--df-paper); }
.df-snapshot__card--link { cursor: pointer; }
a.df-snapshot__card--link:hover { border-color: var(--df-accent); transform: translateY(-2px); }
.df-transfers-scoops { padding: 8px 0; }
.df-scoops__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.df-scoops__all { font-family: var(--df-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--df-accent); text-decoration: none; white-space: nowrap; }
.df-scoops__all:hover { text-decoration: underline; }
.df-scoops__sub { font-family: var(--df-sans); font-size: 14px; color: var(--df-ink-soft); margin: 4px 0 18px; max-width: 680px; }
.df-author-hero__mastheads{margin:.35rem 0 0;font-size:.85rem;color:var(--df-muted,#6b7280)}
.df-author-hero__mastheads-label{font-weight:700;color:var(--df-ink,#11151c);text-transform:uppercase;letter-spacing:.04em;font-size:.72rem}

/* Hero trust strip (last verified / methodology) on data pages. */
.df-finance-hero__meta,
.df-sack-hero__meta {
  font-family: var(--df-mono);
  font-size: 12px;
  letter-spacing: .02em;
  color: var(--df-ink-soft);
  margin-top: 10px;
}
.df-finance-hero__meta a,
.df-sack-hero__meta a { color: inherit; text-decoration: underline; }
