/* ============================================================
   theme_014 — Sports Pulse
   Modern sports portal: charcoal pitch + electric green accent.
   ============================================================ */

:root {
  --t14-bg:        #0b0f14;
  --t14-bg-elev:   #121820;
  --t14-bg-card:   #171f2a;
  --t14-bg-soft:   #1c2633;
  --t14-line:      #2a3544;
  --t14-line-soft: #1f2835;

  --t14-text:      #f0f4f8;
  --t14-text-mid:  #a8b4c4;
  --t14-text-dim:  #6b7a8f;

  --t14-gold:      #00e676;
  --t14-gold-2:    #69f0ae;
  --t14-crimson:   #ff5252;
  --t14-crimson-2: #d32f2f;

  --t14-radius:    14px;
  --t14-radius-sm: 8px;
  --t14-shadow:    0 4px 24px rgba(0, 0, 0, 0.35);

  --t14-serif:     'Segoe UI', 'Microsoft YaHei', sans-serif;
  --t14-sans:      'Segoe UI', 'Microsoft YaHei', sans-serif;
}

body.theme-014, .t14-portal {
  background: var(--t14-bg);
  color: var(--t14-text);
  font-family: var(--t14-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}

body.theme-014 *,
body.theme-014 *::before,
body.theme-014 *::after {
  box-sizing: border-box;
}


body.theme-014 a { color: var(--t14-gold); text-decoration: none; transition: color .15s ease; }
body.theme-014 a:hover { color: var(--t14-gold-2); }

body.theme-014 h1,
body.theme-014 h2,
body.theme-014 h3 { font-family: var(--t14-serif); letter-spacing: 0.01em; color: var(--t14-text); }

.t14-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.t14-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(11, 15, 20, 0.88);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--t14-line-soft);
}
.t14-header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px 16px;
  min-height: 64px;
}
.t14-brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--t14-text) !important;
  font-weight: 600;
  flex-shrink: 0;
  min-width: 0;
}
.t14-brand:hover { color: var(--t14-gold) !important; }
.t14-brand-mark {
  display: inline-grid; place-items: center;
  width: 30px; height: 30px; border-radius: 6px;
  background: linear-gradient(135deg, var(--t14-gold), var(--t14-crimson));
  color: #0b0f14; font-weight: 800; font-size: 16px;
  box-shadow: 0 2px 6px rgba(224, 183, 90, 0.25);
}
/* Sports sigil variant: stadium circle + center line, pure CSS / no glyph */
.t14-brand-mark--sport {
  background: #0b0f14;
  border: 2px solid var(--t14-gold);
  position: relative;
  box-shadow:
    0 0 0 1px rgba(224, 183, 90, 0.2) inset,
    0 2px 6px rgba(224, 183, 90, 0.25);
}
.t14-brand-mark--sport::before {
  content: ""; position: absolute;
  top: 50%; left: 4px; right: 4px;
  height: 2px; background: var(--t14-gold);
  transform: translateY(-1px);
}
.t14-brand-logo {
  width: 32px; height: 32px; border-radius: 6px;
  object-fit: cover;
  background: #0b0f14;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}
.t14-brand-name {
  font-size: 18px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.t14-brand-tag {
  font-size: 11px; color: var(--t14-text-dim); border: 1px solid var(--t14-line);
  padding: 2px 8px; border-radius: 999px;
  white-space: nowrap;
}

/* "LIVE" indicator — red dot + steady pulse, sits in the top bar. */
.t14-live-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; letter-spacing: 0.06em;
  color: var(--t14-text-mid);
  border: 1px solid var(--t14-line);
  background: rgba(210, 58, 58, 0.06);
  padding: 5px 11px; border-radius: 999px;
  flex-shrink: 0;
  white-space: nowrap;
}
.t14-live-dot {
  display: inline-block;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--t14-crimson);
  box-shadow: 0 0 0 0 rgba(210, 58, 58, 0.7);
  animation: t14-live-pulse 1.6s ease-out infinite;
  vertical-align: middle;
}
@keyframes t14-live-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(210, 58, 58, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(210, 58, 58, 0);   }
  100% { box-shadow: 0 0 0 0   rgba(210, 58, 58, 0);   }
}
.t14-hero-eyebrow .t14-live-dot { margin-right: 2px; }

.t14-nav {
  display: flex;
  gap: 2px;
  flex-wrap: nowrap;
  justify-content: flex-end;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.t14-nav::-webkit-scrollbar { display: none; }
.t14-nav-active {
  color: var(--t14-gold) !important;
  background: rgba(224, 183, 90, 0.10);
  box-shadow: inset 0 -2px 0 var(--t14-gold);
}
.t14-nav a {
  display: inline-block;
  flex-shrink: 0;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--t14-text-mid) !important;
  transition: background .15s ease, color .15s ease;
}
.t14-nav a:hover {
  color: var(--t14-text) !important;
  background: rgba(255, 255, 255, 0.05);
}

/* ---------- Hero ---------- */
.t14-hero {
  position: relative;
  padding: 96px 0 88px;
  background-color: #0a0f1f;
  background-image: url("../img/hero-bg.svg");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--t14-line-soft);
  overflow: hidden;
}
.t14-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% -10%, rgba(210, 58, 58, 0.18), transparent 60%),
    radial-gradient(circle at 10% 110%, rgba(224, 183, 90, 0.12), transparent 55%);
  pointer-events: none;
}
/* Hero variant when a photographic image is pulled from the media pool:
   add a heavier scrim so text stays readable over arbitrary photos. */
.t14-hero--photo::before {
  background:
    linear-gradient(180deg, rgba(10, 15, 31, 0.52) 0%, rgba(10, 15, 31, 0.88) 100%),
    radial-gradient(circle at 80% -10%, rgba(210, 58, 58, 0.2), transparent 60%);
}
.t14-hero-cta {
  margin-top: 36px;
  font-size: 12px;
  color: var(--t14-text-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  animation: t14-bob 2.4s ease-in-out infinite;
}
@keyframes t14-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}
.t14-hero > * { position: relative; }

.t14-hero-eyebrow {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--t14-gold);
  border: 1px solid rgba(224, 183, 90, 0.4);
  border-radius: 999px;
  margin-bottom: 24px;
}
.t14-hero-title {
  font-size: clamp(36px, 5.4vw, 60px);
  line-height: 1.15;
  margin: 0 0 20px;
  font-weight: 600;
}
.t14-hero-accent {
  background: linear-gradient(120deg, var(--t14-gold), var(--t14-crimson));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-left: 6px;
}
.t14-hero-lead {
  max-width: 720px;
  margin: 0 0 36px;
  font-size: 18px;
  color: var(--t14-text-mid);
}

.t14-pillars {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
}
.t14-pillar {
  background: rgba(27, 36, 71, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--t14-radius);
  padding: 18px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}
.t14-pillar-k {
  font-family: var(--t14-serif);
  font-size: 22px;
  color: var(--t14-gold-2);
  margin-bottom: 6px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}
.t14-pillar-v {
  font-size: 14px;
  color: var(--t14-text-mid);
  line-height: 1.6;
}
/* Hero sits on a dark scrim / photo — lift pillars a notch more */
.t14-hero .t14-pillar {
  background: rgba(35, 46, 88, 0.88);
  border-color: rgba(224, 183, 90, 0.28);
}
.t14-hero .t14-pillar-v {
  color: #d8ddf5;
}

/* ---------- Section ---------- */
.t14-section { padding: 80px 0; position: relative; }
.t14-section--alt { background: var(--t14-bg-elev); border-top: 1px solid var(--t14-line-soft); border-bottom: 1px solid var(--t14-line-soft); }
.t14-section--page { padding: 56px 0 80px; }

/* Section variant: background image from the media pool */
.t14-section--bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}
.t14-section--bg::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10, 15, 31, 0.78) 0%, rgba(10, 15, 31, 0.92) 100%);
}

.t14-eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--t14-gold);
  margin-bottom: 10px;
}
.t14-section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}
.t14-section-title {
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.3;
  margin: 0;
}
.t14-section-sub {
  margin: 14px 0 0;
  color: var(--t14-text-mid);
  font-size: 15px;
  line-height: 1.7;
}
.t14-section-sub strong { color: var(--t14-gold); font-weight: 600; }

/* ---------- Quick card grid ---------- */
.t14-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.t14-card {
  position: relative;
  display: flex; align-items: center; gap: 14px;
  padding: 22px 22px;
  background: var(--t14-bg-card);
  border: 1px solid var(--t14-line);
  border-radius: var(--t14-radius);
  color: var(--t14-text) !important;
  font-family: var(--t14-serif);
  font-size: 20px;
  overflow: hidden;
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.t14-card::after {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--t14-gold), var(--t14-crimson));
  opacity: 0; transition: opacity .15s ease;
}
.t14-card:hover {
  transform: translateY(-2px);
  border-color: var(--t14-gold);
  background: var(--t14-bg-soft);
}
.t14-card:hover::after { opacity: 1; }
.t14-card-num {
  font-family: var(--t14-serif);
  font-size: 22px;
  color: var(--t14-gold);
  min-width: 36px;
}
.t14-card-body { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.t14-card-title { line-height: 1.2; }
.t14-card-sub {
  font-family: var(--t14-sans);
  font-size: 12px;
  color: var(--t14-text-dim);
  letter-spacing: 0.04em;
  margin-top: 2px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.t14-card-arrow { color: var(--t14-text-dim); font-size: 18px; }

/* ---------- Principles (4-col) ---------- */
.t14-principles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.t14-principle {
  background: var(--t14-bg-card);
  border: 1px solid var(--t14-line);
  border-radius: var(--t14-radius);
  padding: 28px 24px 24px;
  position: relative;
}
/* Roman numeral fallback (scores / database / analysis pages) */
.t14-principle-num {
  font-family: var(--t14-serif);
  font-size: 22px; line-height: 1;
  color: var(--t14-gold);
  letter-spacing: 0.05em;
  border: 1px solid rgba(224, 183, 90, 0.4);
  border-radius: 999px;
  display: inline-grid; place-items: center;
  width: 36px; height: 36px;
  margin-bottom: 14px;
}
/* Homepage principles — icon on top, title below, both centered */
.t14-principle--with-icon .t14-principle-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
  text-align: center;
}
.t14-principle--with-icon .t14-principle-head h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.25;
  color: var(--t14-text);
  text-align: center;
}
.t14-principle-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(224, 183, 90, 0.1);
  border: 1px solid rgba(224, 183, 90, 0.22);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}
.t14-principle-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}
.t14-principle h3 { font-size: 18px; margin: 0 0 8px; color: var(--t14-text); }
.t14-principle p { color: var(--t14-text-mid); font-size: 14px; line-height: 1.65; margin: 0; }

/* ---------- Editorial (3-col list) ---------- */
.t14-editorial {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}
.t14-editorial > li {
  background: var(--t14-bg-card);
  border: 1px solid var(--t14-line);
  border-radius: var(--t14-radius);
  padding: 24px 24px 22px;
  position: relative;
}
.t14-editorial-tag {
  display: inline-block;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--t14-bg);
  background: var(--t14-gold);
  border-radius: 4px;
  padding: 3px 10px;
  margin-bottom: 12px;
}
.t14-editorial h3 { font-size: 19px; margin: 4px 0 8px; }
.t14-editorial p { color: var(--t14-text-mid); font-size: 14.5px; line-height: 1.7; margin: 0; }

/* ---------- Prose two-col ---------- */
.t14-two-col {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}
.t14-prose h2 {
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.3;
  margin: 6px 0 18px;
}
.t14-prose p {
  color: var(--t14-text-mid);
  margin: 0 0 14px;
}
.t14-prose strong { color: var(--t14-gold); font-weight: 600; }
.t14-prose a {
  color: var(--t14-gold);
  text-decoration: underline;
  text-decoration-color: rgba(212, 175, 55, 0.45);
  text-underline-offset: 3px;
}
.t14-prose a:hover {
  color: var(--t14-text);
  text-decoration-color: var(--t14-gold);
}

/* Value-prop: left-half photo · gradient to the right · prose | 4 feature cards */
.t14-section--value-split {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(48px, 7vh, 64px) 0;
}
.t14-section--value-split-photo {
  background: var(--t14-bg-elev);
}
.t14-section--value-split-photo > .t14-wrap {
  width: 100%;
  max-width: 100%;
}
.t14-value-bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(58%, 720px);
  max-width: 100%;
  margin: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.t14-value-bg img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: 55% center;
  filter: saturate(0.95) contrast(1.05);
}
/* Fade photo into section bg toward the right */
.t14-value-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 15, 31, 0.2) 0%,
    rgba(10, 15, 31, 0.05) 40%,
    rgba(19, 26, 53, 0.55) 72%,
    var(--t14-bg-elev) 100%
  );
  pointer-events: none;
}

.t14-value-body {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  align-items: start;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}
/* Prose + features stacked on the right; left column is the photo zone */
.t14-value-main {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  gap: clamp(24px, 3.5vh, 32px);
  min-width: 0;
  max-width: 100%;
}
.t14-section--value-split .t14-value-main .t14-prose h2 {
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.3;
  margin: 6px 0 14px;
}
.t14-section--value-split .t14-value-main .t14-prose p {
  font-size: 15.5px;
  line-height: 1.65;
  margin: 0 0 10px;
}
.t14-section--value-split .t14-value-main .t14-prose p:last-child {
  margin-bottom: 0;
}
.t14-section--value-split-photo .t14-value-main .t14-prose h2,
.t14-section--value-split-photo .t14-value-main .t14-prose p {
  text-shadow: none;
}
.t14-section--value-split .t14-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.t14-section--value-split .t14-feature {
  background: var(--t14-bg-card);
  border: 1px solid var(--t14-line);
  border-left: 3px solid var(--t14-gold);
  border-radius: var(--t14-radius);
  padding: 16px 18px;
}
.t14-section--value-split .t14-feature h3 {
  font-size: 17px;
  margin: 0 0 6px;
  color: var(--t14-text);
}
.t14-section--value-split .t14-feature p {
  color: var(--t14-text-mid);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}
@media (min-width: 900px) {
  .t14-section--value-split .t14-feature-list {
    align-items: stretch;
  }
  .t14-section--value-split .t14-feature {
    display: flex;
    flex-direction: column;
  }
  .t14-section--value-split .t14-feature p {
    flex: 1;
  }
}
.t14-section--value-split:not(.t14-section--value-split-photo) .t14-value-body {
  grid-template-columns: 1fr;
}
.t14-section--value-split:not(.t14-section--value-split-photo) .t14-value-main {
  grid-column: 1;
}

/* ---------- Article grid ---------- */
.t14-article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.t14-post {
  background: var(--t14-bg-card);
  border: 1px solid var(--t14-line);
  border-radius: var(--t14-radius);
  padding: 0 0 18px;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform .15s ease, border-color .15s ease;
}
.t14-post:hover {
  transform: translateY(-3px);
  border-color: rgba(224, 183, 90, 0.5);
}

/* Article cover thumb (top of each card) */
.t14-post-thumb {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--t14-bg-soft);
  margin-bottom: 18px;
}
.t14-post-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease, filter .4s ease;
  filter: saturate(0.95) contrast(1.05);
}
.t14-post:hover .t14-post-thumb img {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.1);
}
.t14-post-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 15, 31, 0.55) 100%);
  pointer-events: none;
}

/* Procedural placeholder thumb (deterministic hue per article) */
.t14-post-thumb--placeholder {
  background:
    radial-gradient(circle at 70% 30%, hsla(var(--t14-thumb-hue, 40), 60%, 35%, 0.55), transparent 60%),
    linear-gradient(135deg,
      hsl(var(--t14-thumb-hue, 40), 28%, 22%) 0%,
      hsl(calc(var(--t14-thumb-hue, 40) + 40), 40%, 12%) 100%);
}
.t14-post-thumb--placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

.t14-post-thumb-mark {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--t14-serif);
  font-size: clamp(40px, 8vw, 64px);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
}


.t14-post-cat {
  align-self: flex-start;
  display: inline-block;
  padding: 3px 10px;
  font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--t14-bg) !important;
  background: var(--t14-gold);
  border-radius: 4px;
  margin: 0 22px 14px;
}
.t14-post-title {
  font-size: 19px;
  line-height: 1.45;
  margin: 0 22px 10px;
}
.t14-post-title a {
  color: var(--t14-text) !important;
  background-image: linear-gradient(var(--t14-gold), var(--t14-gold));
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size .25s ease, color .15s ease;
}
.t14-post:hover .t14-post-title a { color: var(--t14-gold) !important; background-size: 100% 1px; }
.t14-post-desc {
  color: var(--t14-text-mid);
  font-size: 14px;
  margin: 0 22px 18px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.t14-post-meta {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px dashed var(--t14-line);
  margin: 0 22px;
  padding-top: 12px;
  font-size: 13px;
  color: var(--t14-text-dim);
}
.t14-post-more {
  font-weight: 500;
  color: var(--t14-gold) !important;
}

/* ---------- Steps ---------- */
.t14-steps {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.t14-steps > li {
  background: var(--t14-bg-card);
  border: 1px solid var(--t14-line);
  border-radius: var(--t14-radius);
  padding: 28px 26px;
  position: relative;
}
.t14-step-num {
  font-family: var(--t14-serif);
  font-size: 40px; color: var(--t14-gold);
  line-height: 1; margin-bottom: 12px;
}
.t14-step-body h3 { font-size: 20px; margin: 0 0 6px; }
.t14-step-body p { color: var(--t14-text-mid); font-size: 14.5px; margin: 0; }

/* ---------- Trust ---------- */
.t14-section--trust {
  padding: 90px 0 100px;
  background:
    radial-gradient(circle at 90% 10%, rgba(224, 183, 90, 0.12), transparent 55%),
    var(--t14-bg);
  border-top: 1px solid var(--t14-line-soft);
}
.t14-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.t14-trust-lead h2 {
  font-size: clamp(26px, 3vw, 32px);
  line-height: 1.3; margin: 6px 0 14px;
}
.t14-trust-lead p { color: var(--t14-text-mid); margin: 0; }
.t14-trust-lead strong { color: var(--t14-gold); }

.t14-trust-points {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.t14-trust-grid { align-items: start; }
.t14-trust-points li {
  display: flex; gap: 14px;
  background: var(--t14-bg-card);
  border: 1px solid var(--t14-line);
  border-radius: var(--t14-radius-sm);
  padding: 16px 16px;
}
.t14-trust-points li > span {
  font-family: var(--t14-serif);
  font-size: 22px; color: var(--t14-gold);
  min-width: 32px;
}
.t14-trust-points b { color: var(--t14-text); display: block; font-size: 14px; }
.t14-trust-points div { color: var(--t14-text-mid); font-size: 13.5px; line-height: 1.6; }

/* ---------- Empty state ---------- */
.t14-empty {
  text-align: center;
  padding: 56px 24px;
  background: var(--t14-bg-card);
  border: 1px dashed var(--t14-line);
  border-radius: var(--t14-radius);
  color: var(--t14-text-mid);
}
.t14-empty code {
  background: rgba(224, 183, 90, 0.08);
  color: var(--t14-gold);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 13px;
}

/* ---------- Article page ---------- */
.t14-breadcrumb {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  font-size: 13px; color: var(--t14-text-dim);
  margin-bottom: 28px;
}
.t14-breadcrumb a { color: var(--t14-text-mid); }
.t14-breadcrumb a:hover { color: var(--t14-gold); }
.t14-breadcrumb-current { color: var(--t14-text); }

.t14-article {
  max-width: 820px;
  margin: 0 auto;
  background: var(--t14-bg-card);
  border: 1px solid var(--t14-line);
  border-radius: var(--t14-radius);
  overflow: hidden;
}
.t14-article-cover {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  margin: 0;
  background: var(--t14-bg-soft);
  overflow: hidden;
}
.t14-article-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}
.t14-article-cover::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--t14-bg-card) 100%);
  pointer-events: none;
}
.t14-article-cover--placeholder {
  background:
    radial-gradient(circle at 70% 30%, hsla(var(--t14-thumb-hue, 40), 60%, 35%, 0.55), transparent 60%),
    linear-gradient(135deg,
      hsl(var(--t14-thumb-hue, 40), 28%, 22%) 0%,
      hsl(calc(var(--t14-thumb-hue, 40) + 40), 40%, 12%) 100%);
}
.t14-article-cover--placeholder::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}
.t14-article-cover--placeholder .t14-post-thumb-mark {
  font-size: clamp(72px, 11vw, 120px);
}

.t14-article > .t14-article-head,
.t14-article > .t14-article-body,
.t14-article > .t14-article-foot {
  padding-left: 48px;
  padding-right: 48px;
}
.t14-article > .t14-article-head { padding-top: 36px; margin-bottom: 32px; }
.t14-article > .t14-article-foot { padding-bottom: 56px; }
.t14-article-head h1 {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.25;
  margin: 14px 0 16px;
}
.t14-article-meta {
  display: flex; gap: 10px; align-items: center;
  font-size: 13px; color: var(--t14-text-dim);
}
.t14-dot { color: var(--t14-text-dim); }
.t14-article-lede {
  margin: 22px 0 0;
  padding-left: 14px;
  border-left: 3px solid var(--t14-gold);
  color: var(--t14-text-mid);
  font-size: 16px;
  line-height: 1.7;
}

.t14-article-body { color: var(--t14-text); font-size: 16.5px; line-height: 1.85; }
.t14-article-body h2 { font-size: 26px; margin: 36px 0 14px; }
.t14-article-body h3 { font-size: 20px; margin: 28px 0 10px; color: var(--t14-gold); }
.t14-article-body p { margin: 0 0 16px; color: var(--t14-text-mid); }
.t14-article-body ul, .t14-article-body ol { margin: 0 0 16px 22px; color: var(--t14-text-mid); }
.t14-article-body li { margin-bottom: 6px; }
.t14-article-body a { border-bottom: 1px dashed currentColor; }
.t14-article-body blockquote {
  margin: 20px 0; padding: 14px 18px;
  background: rgba(224, 183, 90, 0.06);
  border-left: 3px solid var(--t14-gold);
  color: var(--t14-text);
  border-radius: 0 var(--t14-radius-sm) var(--t14-radius-sm) 0;
}
.t14-article-body code {
  background: rgba(255, 255, 255, 0.07);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
}
.t14-article-body pre {
  background: var(--t14-bg-soft);
  border: 1px solid var(--t14-line);
  border-radius: var(--t14-radius-sm);
  padding: 16px;
  overflow-x: auto;
  font-size: 14px;
}

.t14-article-foot {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--t14-line);
}
.t14-back { font-size: 14px; color: var(--t14-gold) !important; }

/* ---------- Article: top reading-progress bar ---------- */
.t14-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 3px; z-index: 60;
  background: transparent;
  pointer-events: none;
}
.t14-progress > span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--t14-gold), var(--t14-crimson));
  transition: width 0.08s linear;
  box-shadow: 0 0 8px rgba(224, 183, 90, 0.45);
}

/* ---------- Article: layout (body + sticky side) ---------- */
.t14-article-section { padding-top: 36px; }
.t14-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
  align-items: start;
}
.t14-article-layout > .t14-article { max-width: none; }

.t14-article-side {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.t14-side-card {
  background: var(--t14-bg-card);
  border: 1px solid var(--t14-line);
  border-radius: var(--t14-radius);
  padding: 18px 18px;
}
.t14-side-h {
  font-family: var(--t14-sans);
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--t14-gold);
  margin: 0 0 12px;
}
.t14-side-blurb {
  margin: 0 0 12px; color: var(--t14-text-mid);
  font-size: 13.5px; line-height: 1.65;
}
.t14-side-links { list-style: none; padding: 0; margin: 0; }
.t14-side-links li { margin-bottom: 8px; }
.t14-side-links li:last-child { margin-bottom: 0; }
.t14-side-links a {
  display: inline-block; font-size: 13.5px;
  color: var(--t14-text-mid);
}
.t14-side-links a:hover { color: var(--t14-gold); }

/* Auto-TOC */
.t14-toc {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
  max-height: 60vh; overflow-y: auto;
}
.t14-toc a {
  display: block;
  font-size: 13.5px; line-height: 1.45;
  color: var(--t14-text-mid);
  padding: 4px 0 4px 10px;
  border-left: 2px solid var(--t14-line);
  transition: border-color .15s, color .15s;
}
.t14-toc a:hover { color: var(--t14-gold); border-left-color: var(--t14-gold); }
.t14-toc-sub a { padding-left: 22px; font-size: 12.5px; color: var(--t14-text-dim); }

/* ---------- Article: meta icons row ---------- */
.t14-article-meta {
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.t14-article-meta .t14-meta-item {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--t14-text-dim);
  font-size: 13px;
}
.t14-article-meta .t14-meta-item svg { color: var(--t14-gold); flex-shrink: 0; }

/* Drop cap on the first paragraph of long-form articles */
.t14-article-body > p:first-of-type::first-letter {
  font-family: var(--t14-serif);
  font-size: 3.2em;
  float: left;
  line-height: 1;
  padding: 4px 10px 0 0;
  color: var(--t14-gold);
}
.t14-article-body img,
.t14-article-body figure img {
  max-width: 100%;
  height: auto;
  border-radius: var(--t14-radius-sm);
  margin: 8px 0;
}
.t14-article-body figure { margin: 22px 0; }
.t14-article-body figcaption {
  font-size: 13px; color: var(--t14-text-dim);
  text-align: center; margin-top: 8px;
}
.t14-article-body h2 { scroll-margin-top: 80px; }
.t14-article-body h3 { scroll-margin-top: 80px; }

/* ---------- Article: tags / share / prev-next ---------- */
.t14-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 0 48px;
  margin-top: 28px;
}
.t14-tag {
  font-size: 12.5px;
  color: var(--t14-text-mid);
  background: rgba(224, 183, 90, 0.08);
  border: 1px solid rgba(224, 183, 90, 0.18);
  border-radius: 999px;
  padding: 4px 12px;
}

.t14-share {
  display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
  padding: 20px 48px 0;
  margin-top: 24px;
  border-top: 1px solid var(--t14-line);
}
.t14-share-label {
  font-size: 13px; letter-spacing: 0.06em;
  color: var(--t14-text-dim);
  margin-right: 4px;
}
.t14-share-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px;
  color: var(--t14-text-mid) !important;
  background: var(--t14-bg-soft);
  border: 1px solid var(--t14-line);
  border-radius: 999px;
  padding: 6px 14px;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.t14-share-btn:hover {
  color: var(--t14-text) !important;
  border-color: var(--t14-gold);
  background: rgba(224, 183, 90, 0.08);
}

.t14-prev-next {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 48px 0;
}
.t14-prev-next-card {
  display: flex; flex-direction: column; gap: 6px;
  padding: 16px 18px;
  background: var(--t14-bg-soft);
  border: 1px solid var(--t14-line);
  border-radius: var(--t14-radius-sm);
  color: var(--t14-text-mid) !important;
  transition: border-color .15s, transform .15s;
  min-height: 70px;
}
.t14-prev-next-card:hover {
  border-color: var(--t14-gold);
  color: var(--t14-text) !important;
}
.t14-prev-next-card--next { text-align: right; }
.t14-prev-next-hint {
  font-size: 11.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--t14-gold);
}
.t14-prev-next-title {
  font-family: var(--t14-serif);
  font-size: 15px;
  line-height: 1.4;
}

/* ---------- Related articles ---------- */
.t14-related { margin-top: 56px; }
.t14-related-head {
  margin-bottom: 22px;
}
.t14-related-head h2 {
  font-size: clamp(22px, 2.4vw, 28px);
  margin: 6px 0 0;
}
.t14-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

/* ---------- Article responsive ---------- */
@media (max-width: 1024px) {
  .t14-article-layout { grid-template-columns: minmax(0, 1fr); }
  .t14-article-side { position: static; }
}

/* ---------- Category page ---------- */
.t14-cat-head { margin-bottom: 36px; text-align: left; max-width: 720px; }
.t14-cat-head h1 { font-size: clamp(32px, 4vw, 44px); margin: 6px 0 12px; }
.t14-cat-lead { color: var(--t14-text-mid); margin: 0 0 14px; }
.t14-cat-meta {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--t14-text-dim);
  margin: 0;
}

/* ---------- Leagues / competitions chip grid ---------- */
.t14-leagues {
  display: flex; flex-direction: column; gap: 28px;
  max-width: 980px; margin: 0 auto;
}
.t14-league-group {
  border-left: 2px solid var(--t14-gold);
  padding-left: 18px;
}
.t14-league-head {
  font-family: var(--t14-sans);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--t14-text-dim);
  margin: 0 0 12px;
}
.t14-league-row {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.t14-league-chip {
  display: inline-flex; align-items: center;
  background: var(--t14-bg-card);
  border: 1px solid var(--t14-line);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px; color: var(--t14-text);
  font-weight: 500;
  transition: border-color 160ms ease, color 160ms ease;
}
.t14-league-chip:hover {
  border-color: var(--t14-gold);
  color: var(--t14-gold);
}
.t14-league-chip--link {
  text-decoration: none;
  cursor: pointer;
}
.t14-leagues-note {
  max-width: 700px; margin: 32px auto 0;
  font-size: 13px; color: var(--t14-text-dim);
  text-align: center; line-height: 1.7;
}

/* ---------- Pager ---------- */
.t14-pager {
  display: flex; justify-content: center; align-items: center; gap: 18px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.t14-pager-link {
  padding: 8px 16px;
  border: 1px solid var(--t14-line);
  border-radius: 999px;
  font-size: 13px;
  color: var(--t14-text-mid) !important;
}
.t14-pager-link:hover { border-color: var(--t14-gold); color: var(--t14-gold) !important; }
.t14-pager-link--disabled { opacity: 0.4; pointer-events: none; }
.t14-pager-info { font-size: 13px; color: var(--t14-text-dim); }

/* ---------- Footer ---------- */
.t14-footer {
  background: #060a17;
  border-top: 1px solid var(--t14-line-soft);
  padding: 64px 0 24px;
  font-size: 14px;
  color: var(--t14-text-mid);
}
.t14-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.4fr 1fr 1.4fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--t14-line-soft);
}
.t14-footer-col h4.t14-footer-h {
  font-family: var(--t14-sans);
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--t14-gold);
  margin: 0 0 16px;
}
.t14-footer-brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--t14-serif);
  font-size: 20px; color: var(--t14-text);
  margin-bottom: 12px;
}
.t14-footer-blurb { color: var(--t14-text-dim); margin: 0; font-size: 14px; line-height: 1.7; }

.t14-meta { margin: 0; display: grid; gap: 10px; }
.t14-meta > div { display: grid; grid-template-columns: 80px 1fr; gap: 8px; }
.t14-meta dt { color: var(--t14-text-dim); margin: 0; }
.t14-meta dd { color: var(--t14-text); margin: 0; }

.t14-footer-links { list-style: none; padding: 0; margin: 0; }
.t14-footer-links li { margin-bottom: 8px; }
.t14-footer-links a { color: var(--t14-text-mid); }
.t14-footer-links a:hover { color: var(--t14-gold); }

.t14-fineprint { color: var(--t14-text-dim); font-size: 13px; line-height: 1.7; margin: 0; }

.t14-footer-bar {
  padding-top: 18px;
  font-size: 12px;
  color: var(--t14-text-dim);
  text-align: center;
  letter-spacing: 0.04em;
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .t14-brand-tag { display: none; }
}

@media (max-width: 1080px) {
  .t14-live-pill { display: none; }
  .t14-nav a { padding: 8px 9px; font-size: 12.5px; }
}

@media (max-width: 920px) {
  .t14-two-col { grid-template-columns: 1fr; gap: 36px; }
  .t14-section--value-split-photo {
    display: flex;
    flex-direction: column;
    padding-top: 0;
  }
  .t14-value-body {
    grid-template-columns: 1fr;
    padding-left: 16px;
    padding-right: 16px;
  }
  .t14-value-main {
    grid-column: 1;
    gap: 24px;
    width: 100%;
  }
  .t14-section--value-split .t14-value-main .t14-prose h2 {
    font-size: clamp(22px, 5.5vw, 28px);
    overflow-wrap: anywhere;
  }
  .t14-section--value-split .t14-value-main .t14-prose p {
    overflow-wrap: anywhere;
  }
  .t14-section--value-split .t14-feature-list {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .t14-section--value-split .t14-feature {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .t14-value-bg {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    max-width: 100%;
    height: clamp(160px, 44vw, 220px);
    flex-shrink: 0;
  }
  .t14-value-bg img {
    display: block;
  }
  .t14-value-bg::after {
    background: linear-gradient(
      180deg,
      transparent 30%,
      rgba(19, 26, 53, 0.7) 75%,
      var(--t14-bg-elev) 100%
    );
  }
  .t14-trust-grid { grid-template-columns: 1fr; gap: 36px; }
  .t14-steps { grid-template-columns: 1fr; }
  .t14-pillars { grid-template-columns: repeat(2, 1fr); }
  .t14-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .t14-article > .t14-article-head,
  .t14-article > .t14-article-body,
  .t14-article > .t14-article-foot { padding-left: 28px; padding-right: 28px; }
  .t14-article > .t14-article-head { padding-top: 28px; }
  .t14-article > .t14-article-foot { padding-bottom: 36px; }
  .t14-tags,
  .t14-share,
  .t14-prev-next { padding-left: 28px; padding-right: 28px; }
  .t14-prev-next { margin-left: 0; margin-right: 0; }
}

@media (max-width: 600px) {
  .t14-section { padding: 56px 0; }
  .t14-section--value-split-photo {
    padding-bottom: 48px;
  }
  .t14-value-body {
    padding-left: 14px;
    padding-right: 14px;
  }
  .t14-hero { padding: 64px 0 56px; }
  .t14-header-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 0;
    gap: 10px;
  }
  .t14-brand { align-self: flex-start; }
  .t14-nav {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    mask-image: linear-gradient(90deg, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, #000 92%, transparent);
  }
  .t14-nav a { white-space: nowrap; }
  .t14-live-pill { display: none; }
  .t14-pillars { grid-template-columns: 1fr; }
  .t14-trust-points { grid-template-columns: 1fr; }
  .t14-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .t14-league-row { gap: 6px; }
  .t14-league-chip { font-size: 12px; padding: 5px 11px; }
  .t14-article > .t14-article-head,
  .t14-article > .t14-article-body,
  .t14-article > .t14-article-foot { padding-left: 20px; padding-right: 20px; }
  .t14-article > .t14-article-head { padding-top: 24px; }
  .t14-article > .t14-article-foot { padding-bottom: 30px; }
  .t14-article-body { font-size: 15.5px; }
  .t14-tags,
  .t14-share,
  .t14-prev-next { padding-left: 20px; padding-right: 20px; }
  .t14-prev-next { margin-left: 0; margin-right: 0; grid-template-columns: 1fr; }
  .t14-prev-next-card--next { text-align: left; }
}

/* ===========================================================
   Sports-section landing pages (scores / database / analysis / community)
   =========================================================== */

/* Slim hero variant for section pages (less padding than home hero). */
.t14-hero--inner { padding: 64px 0 56px; }
.t14-hero--inner .t14-hero-title { font-size: clamp(28px, 4.4vw, 48px); }
.t14-hero--inner .t14-hero-lead { max-width: 880px; }

/* ---------- Sub-tab strip (scores filter switcher) ---------- */
.t14-subtabs {
  display: flex; flex-wrap: wrap; gap: 6px;
  background: var(--t14-bg-card);
  border: 1px solid var(--t14-line);
  border-radius: 12px;
  padding: 8px;
  margin-bottom: 32px;
}
.t14-subtab {
  font-family: inherit; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--t14-text-mid);
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}
.t14-subtab:hover {
  background: rgba(255,255,255,0.04);
  color: var(--t14-text);
}
.t14-subtab--active {
  background: rgba(224, 183, 90, 0.12);
  color: var(--t14-gold);
  border-color: rgba(224, 183, 90, 0.32);
}
.t14-subtab--gear {
  margin-left: auto;
  color: var(--t14-text-dim);
  font-size: 13px;
}

/* ---------- Scores hub jump nav ---------- */
.t14-scores-jump {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 15, 20, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--t14-line);
}
.t14-scores-jump .t14-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 0;
}
.t14-scores-jump-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--t14-text-mid);
  text-decoration: none;
  border: 1px solid var(--t14-line);
  background: var(--t14-bg-card);
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}
.t14-scores-jump-link:hover {
  border-color: var(--t14-gold);
  color: var(--t14-gold);
}
.t14-scores-jump-link--live {
  color: var(--t14-gold);
  border-color: rgba(224, 183, 90, 0.35);
}
.t14-scores-jump-link--muted {
  color: var(--t14-text-dim);
}
a.t14-league-chip {
  text-decoration: none;
  cursor: pointer;
}

/* ---------- Match cards ---------- */
.t14-match-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.t14-match-card {
  background: var(--t14-bg-card);
  border: 1px solid var(--t14-line);
  border-radius: var(--t14-radius);
  padding: 16px 18px;
  position: relative;
  overflow: hidden;
}
.t14-match-card--live {
  border-color: rgba(210, 58, 58, 0.35);
  box-shadow: 0 0 0 1px rgba(210, 58, 58, 0.18) inset;
}
.t14-match-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--t14-text-dim);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.t14-match-league { font-weight: 500; }
.t14-match-status {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--t14-line);
  border-radius: 999px;
  padding: 2px 10px;
  font-variant-numeric: tabular-nums;
}
.t14-match-status--live {
  color: var(--t14-crimson);
  border-color: rgba(210, 58, 58, 0.35);
  background: rgba(210, 58, 58, 0.08);
}
.t14-match-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
}
.t14-match-team {
  display: flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 500;
  min-width: 0;
}
.t14-match-team--away { flex-direction: row-reverse; text-align: right; }
.t14-match-team-crest {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
}
.t14-match-team-crest img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t14-match-score {
  font-family: var(--t14-serif);
  font-size: 28px; font-weight: 700;
  color: var(--t14-text);
  display: inline-flex; align-items: center; gap: 8px;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.t14-match-vs {
  color: var(--t14-text-dim);
  font-size: 14px; font-weight: 400;
  font-family: var(--t14-sans);
}
.t14-match-score--upcoming {
  font-size: 18px; color: var(--t14-text-dim);
}
.t14-match-foot {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed var(--t14-line);
  font-size: 12px;
  color: var(--t14-text-dim);
}

.t14-mock-note {
  text-align: center;
  font-size: 13px;
  color: var(--t14-text-dim);
  margin: 24px auto 0;
  max-width: 720px;
  line-height: 1.7;
}
.t14-mock-note strong { color: var(--t14-gold); font-weight: 600; }
.t14-inline-link { color: var(--t14-gold); border-bottom: 1px solid rgba(224, 183, 90, 0.4); }
.t14-inline-link:hover { color: #ffd87b; }

/* ---------- Data table (database page) ---------- */
.t14-table-wrap {
  background: var(--t14-bg-card);
  border: 1px solid var(--t14-line);
  border-radius: var(--t14-radius);
  overflow-x: auto;
  margin: 0 auto;
  max-width: 980px;
}
.t14-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.t14-table thead {
  background: rgba(255,255,255,0.04);
}
.t14-table th {
  padding: 12px 10px;
  text-align: center;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--t14-text-dim);
  text-transform: uppercase;
  border-bottom: 1px solid var(--t14-line);
  white-space: nowrap;
}
.t14-table th.t14-th-pos { width: 40px; }
.t14-table th.t14-th-team { text-align: left; padding-left: 18px; min-width: 130px; }
.t14-table td {
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid var(--t14-line-soft);
  font-variant-numeric: tabular-nums;
}
.t14-table tbody tr:last-child td { border-bottom: 0; }
.t14-table tbody tr:hover { background: rgba(255,255,255,0.03); }
.t14-table td:nth-child(2) { text-align: left; padding-left: 18px; font-weight: 500; }
.t14-td-pts {
  font-weight: 700;
  color: var(--t14-gold);
}
.t14-form-w, .t14-form-d, .t14-form-l {
  display: inline-block;
  width: 18px; height: 18px;
  font-size: 10px;
  line-height: 18px;
  border-radius: 4px;
  margin: 0 1px;
  font-weight: 700;
  color: #fff;
  font-family: var(--t14-sans);
}
.t14-form-w { background: #2e9e6a; }
.t14-form-d { background: #8a8a8a; }
.t14-form-l { background: var(--t14-crimson); }

/* ---------- Prediction cards (analysis page) ---------- */
.t14-pred-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}
.t14-pred-card {
  background: var(--t14-bg-card);
  border: 1px solid var(--t14-line);
  border-radius: var(--t14-radius);
  padding: 22px 24px;
}
.t14-pred-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--t14-text-dim);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.t14-pred-league { color: var(--t14-gold); font-weight: 500; }
.t14-pred-matchup {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  padding: 14px 0 18px;
  border-bottom: 1px solid var(--t14-line);
  margin-bottom: 18px;
}
.t14-pred-team { display: flex; flex-direction: column; gap: 4px; }
.t14-pred-team--away { text-align: right; }
.t14-pred-team-name { font-size: 17px; font-weight: 600; color: var(--t14-text); }
.t14-pred-team-form {
  font-size: 11px;
  color: var(--t14-text-dim);
  font-family: monospace;
  letter-spacing: 0.08em;
}
.t14-pred-vs {
  font-family: var(--t14-serif);
  color: var(--t14-text-dim);
  font-size: 18px;
}
.t14-pred-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  align-items: center;
  padding: 8px 0;
}
.t14-pred-label {
  font-size: 12px;
  color: var(--t14-text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.t14-pred-meta { font-size: 14px; color: var(--t14-text); }
.t14-pred-meta b { color: var(--t14-gold); }
.t14-pred-bars {
  display: flex;
  gap: 4px;
  background: rgba(255,255,255,0.04);
  border-radius: 6px;
  overflow: hidden;
  height: 28px;
  font-size: 11px;
}
.t14-pred-bar {
  display: inline-flex; align-items: center; justify-content: center;
  flex: var(--p, 33) 0 0;
  min-width: 0;
  white-space: nowrap;
  color: #fff;
  font-weight: 600;
  padding: 0 6px;
}
.t14-pred-bar--home { background: #2e9e6a; }
.t14-pred-bar--draw { background: #6a6a6a; }
.t14-pred-bar--away { background: var(--t14-crimson); }

/* ---------- Posts (community page) ---------- */
.t14-posts {
  display: flex; flex-direction: column; gap: 12px;
}
.t14-post-row {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  background: var(--t14-bg-card);
  border: 1px solid var(--t14-line);
  border-radius: var(--t14-radius);
  padding: 18px 22px;
  transition: border-color 160ms ease;
}
.t14-post-row:hover { border-color: rgba(224, 183, 90, 0.32); }
.t14-post-vote {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 11px;
  color: var(--t14-text-dim);
}
.t14-post-vote-up { color: var(--t14-gold); font-size: 14px; }
.t14-post-vote-down { color: var(--t14-text-dim); font-size: 14px; }
.t14-post-vote-n { font-weight: 700; color: var(--t14-text); font-variant-numeric: tabular-nums; }
.t14-post-main { min-width: 0; }
.t14-post-tags { margin-bottom: 6px; display: flex; flex-wrap: wrap; gap: 6px; }
.t14-post-tag {
  display: inline-block;
  font-size: 11px; padding: 2px 8px; border-radius: 3px;
  background: rgba(255,255,255,0.04);
  color: var(--t14-text-dim);
  border: 1px solid var(--t14-line);
}
.t14-post-tag--circle { color: var(--t14-gold); border-color: rgba(224, 183, 90, 0.32); }
.t14-post-tag--hot      { background: rgba(210, 58, 58, 0.14); color: var(--t14-crimson); border-color: rgba(210, 58, 58, 0.32); }
.t14-post-tag--video    { background: rgba(120, 81, 169, 0.14); color: #b294e0; border-color: rgba(120, 81, 169, 0.28); }
.t14-post-tag--analysis { background: rgba(46, 158, 106, 0.14); color: #7ad2a3; border-color: rgba(46, 158, 106, 0.28); }
.t14-post-tag--discuss  { background: rgba(98, 130, 184, 0.14); color: #98b5e8; border-color: rgba(98, 130, 184, 0.28); }
.t14-post-row-title {
  font-size: 17px;
  margin: 0 0 6px;
  color: var(--t14-text);
}
.t14-post-row-excerpt {
  font-size: 13.5px; color: var(--t14-text-dim);
  line-height: 1.65;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.t14-post-meta-row {
  font-size: 12px;
  color: var(--t14-text-dim);
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
}
.t14-post-meta-row b { color: var(--t14-gold); }

/* ---------- FAQ accordion (no JS, uses <details>) ---------- */
.t14-faq { display: flex; flex-direction: column; gap: 8px; }
.t14-faq-item {
  background: var(--t14-bg-card);
  border: 1px solid var(--t14-line);
  border-radius: var(--t14-radius);
  overflow: hidden;
}
.t14-faq-q {
  list-style: none;
  cursor: pointer;
  padding: 16px 22px;
  font-size: 15px;
  font-weight: 500;
  color: var(--t14-text);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.t14-faq-q::-webkit-details-marker { display: none; }
.t14-faq-q::after {
  content: "+";
  color: var(--t14-gold);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 200ms ease;
}
.t14-faq-item[open] .t14-faq-q::after { content: "−"; }
.t14-faq-item[open] .t14-faq-q {
  border-bottom: 1px solid var(--t14-line);
}
.t14-faq-a {
  padding: 14px 22px 20px;
  font-size: 14.5px;
  color: var(--t14-text-mid);
  line-height: 1.75;
}

/* ---------- Homepage: spotlight schedule ---------- */
.t14-section-head--spotlight,
.t14-section-head--leagues-hub {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  width: 100%;
  margin: 0 auto 48px;
}
.t14-section-head--spotlight .t14-section-sub,
.t14-section-head--leagues-hub .t14-section-sub {
  max-width: 560px;
}
.t14-section-head--spotlight .t14-section-link--block,
.t14-section-head--leagues-hub .t14-section-link--block {
  display: inline-block;
  margin-top: 18px;
}
.t14-section-head--leagues-hub .t14-leagues-hub-pills {
  justify-content: center;
  width: 100%;
}
.t14-section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.t14-section-link {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--t14-gold) !important;
  white-space: nowrap;
}
.t14-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.t14-spotlight-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 18px 20px 16px;
  min-width: 0;
  border-radius: var(--t14-radius);
  border: 1px solid var(--t14-line);
  background: var(--t14-bg-card);
  text-decoration: none;
  color: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.t14-spotlight-card:hover {
  border-color: rgba(224, 183, 90, 0.45);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}
.t14-spotlight-card--live {
  border-color: rgba(210, 58, 58, 0.4);
  box-shadow: 0 0 0 1px rgba(210, 58, 58, 0.12) inset;
}
.t14-spotlight-card--live:hover {
  border-color: rgba(210, 58, 58, 0.55);
}
.t14-spotlight-card--soon {
  border-color: rgba(224, 183, 90, 0.28);
}
.t14-spotlight-card--ft {
  opacity: 0.92;
}
.t14-spotlight-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 12px;
  color: var(--t14-text-dim);
}
.t14-spotlight-league {
  font-weight: 500;
  color: var(--t14-text-mid);
  letter-spacing: 0.03em;
}
.t14-spotlight-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--t14-line);
  font-variant-numeric: tabular-nums;
}
.t14-spotlight-status--live {
  color: var(--t14-crimson);
  border-color: rgba(210, 58, 58, 0.35);
  background: rgba(210, 58, 58, 0.08);
}
.t14-spotlight-status--ht { color: var(--t14-gold); border-color: rgba(224, 183, 90, 0.35); }
.t14-spotlight-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.t14-spotlight-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  min-width: 0;
  text-align: center;
}
.t14-spotlight-crest {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
}
.t14-spotlight-crest img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t14-spotlight-name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--t14-text);
  max-width: 100%;
}
.t14-spotlight-mid {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 4px;
  flex-shrink: 0;
}
.t14-spotlight-score {
  font-family: var(--t14-serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--t14-text);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1;
}
.t14-spotlight-dash {
  font-size: 14px;
  font-weight: 400;
  color: var(--t14-text-dim);
  line-height: 1;
}
.t14-spotlight-score--vs {
  font-family: var(--t14-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--t14-text-dim);
  letter-spacing: 0.08em;
}
.t14-team-badge {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--badge-bg, var(--t14-gold));
  color: var(--badge-fg, #0b0f14);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.t14-team-badge--flag {
  width: 30px;
  height: 22px;
  padding: 0;
  border-radius: 4px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
}
.t14-team-badge--flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t14-team-badge--crest {
  width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
  flex-shrink: 0;
}
.t14-team-badge--crest img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t14-spotlight-note {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--t14-line-soft);
  font-size: 12px;
  color: var(--t14-text-dim);
  line-height: 1.5;
  text-align: center;
}

/* ---------- Homepage: stats glossary ---------- */
.t14-glossary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.t14-glossary-card {
  padding: 18px 20px;
  border-radius: var(--t14-radius-sm);
  border: 1px solid var(--t14-line-soft);
  background: rgba(18, 24, 32, 0.6);
}
.t14-glossary-term {
  margin: 0 0 10px;
  font-size: 17px;
  color: var(--t14-gold-2);
}
.t14-glossary-term span {
  margin-left: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--t14-text-dim);
}
.t14-glossary-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--t14-text-mid);
}

/* ---------- Homepage: seasonal topics ---------- */
.t14-topic-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.t14-topic-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 18px;
  border-radius: var(--t14-radius-sm);
  border: 1px solid var(--t14-line-soft);
  background: linear-gradient(160deg, rgba(0, 230, 118, 0.06), rgba(18, 24, 32, 0.85));
  color: var(--t14-text) !important;
  transition: border-color .15s ease, transform .15s ease;
}
.t14-topic-card:hover {
  border-color: rgba(0, 230, 118, 0.4);
  transform: translateY(-2px);
  color: var(--t14-gold-2) !important;
}
.t14-topic-tag {
  align-self: flex-start;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(0, 230, 118, 0.12);
  color: var(--t14-gold);
}
.t14-topic-card h3 {
  margin: 0;
  font-size: 16px;
  line-height: 1.35;
}
.t14-topic-card p {
  margin: 0;
  flex: 1;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--t14-text-mid);
}
.t14-topic-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--t14-gold);
}

@media (max-width: 1024px) {
  .t14-spotlight-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .t14-topic-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .t14-glossary-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .t14-spotlight-grid,
  .t14-topic-grid,
  .t14-glossary-grid { grid-template-columns: 1fr; }
  .t14-section-head--row { flex-direction: column; align-items: flex-start; }
}

/* ---------- Related news (compact) ---------- */
.t14-related {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.t14-related-item {
  display: flex; flex-direction: column; gap: 6px;
  padding: 16px 18px;
  background: var(--t14-bg-card);
  border: 1px solid var(--t14-line);
  border-radius: var(--t14-radius);
  transition: border-color 160ms ease;
}
.t14-related-item:hover { border-color: rgba(224, 183, 90, 0.32); }
.t14-related-cat {
  font-size: 11px;
  color: var(--t14-gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.t14-related-title {
  font-size: 15px; line-height: 1.5;
  color: var(--t14-text);
  margin: 0;
}
.t14-related-time {
  font-size: 12px;
  color: var(--t14-text-dim);
  font-variant-numeric: tabular-nums;
}

.t14-prose--center { text-align: center; }
.t14-prose--center p { margin-left: auto; margin-right: auto; max-width: 640px; }

/* ------------------------------------------------------------------ */
/* Football leagues pack (/leagues/)                                    */
/* ------------------------------------------------------------------ */

.t14-leagues-layout {
  display: grid;
  grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
  gap: 0;
  min-height: calc(100vh - 64px);
  align-items: start;
}
.t14-leagues-aside {
  position: sticky;
  top: 64px;
  max-height: calc(100vh - 64px);
  overflow: auto;
  padding: 24px 16px 32px 20px;
  background: rgba(8, 12, 24, 0.92);
  border-right: 1px solid var(--t14-border);
}
.t14-leagues-aside-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--t14-text);
  margin: 4px 0 0;
}
.t14-leagues-nav-summary {
  cursor: pointer;
  font-size: 13px;
  color: var(--t14-muted);
  padding: 8px 0;
  list-style: none;
}
.t14-leagues-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.t14-leagues-nav-item a {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--t14-muted);
  text-decoration: none;
  font-size: 14px;
}
.t14-leagues-nav-item.is-active a,
.t14-leagues-nav-item a:hover {
  background: rgba(224, 183, 90, 0.12);
  color: var(--t14-gold);
}
.t14-leagues-main {
  padding: 32px 24px 64px;
  max-width: 1080px;
}
.t14-leagues-hero { margin-bottom: 32px; }
.t14-leagues-meta {
  font-size: 13px;
  color: var(--t14-gold);
  margin: 0 0 8px;
}
.t14-leagues-h1 {
  font-family: var(--t14-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--t14-text);
}
.t14-leagues-h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 16px;
  color: var(--t14-text);
}
.t14-leagues-intro,
.t14-leagues-lede {
  color: var(--t14-muted);
  line-height: 1.7;
  margin: 0 0 12px;
  max-width: 720px;
}
.t14-leagues-tips {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--t14-muted);
  line-height: 1.8;
}
.t14-leagues-block {
  margin-bottom: 40px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--t14-border);
}
.t14-league-zones {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 8px;
}
.t14-league-zone {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--t14-muted);
}
.t14-league-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.t14-league-card {
  --league-accent: var(--t14-gold);
  background: var(--t14-surface);
  border: 1px solid var(--t14-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.t14-league-card:hover {
  border-color: color-mix(in srgb, var(--league-accent) 50%, var(--t14-gold));
  transform: translateY(-2px);
}
.t14-league-card-cover-link {
  display: block;
  text-decoration: none;
}
.t14-league-card-cover {
  position: relative;
  aspect-ratio: 400 / 140;
  overflow: hidden;
  background: var(--league-accent);
}
.t14-league-card-cover img,
.t14-home-league-cover-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 20px 28px;
  box-sizing: border-box;
}
.t14-league-card-body {
  padding: 18px 20px 20px;
  border-top: 3px solid var(--league-accent);
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.t14-league-card-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--t14-text);
}
.t14-league-card-sub {
  font-size: 12px;
  color: var(--t14-gold);
  margin: 0;
}
.t14-league-card-blurb {
  font-size: 14px;
  color: var(--t14-muted);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.t14-league-card-meta {
  font-size: 12px;
  color: var(--t14-text-dim);
}
.t14-league-card-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--league-accent);
  filter: brightness(1.35);
  text-decoration: none;
}
.t14-league-card-link:hover {
  color: var(--t14-gold);
}
.t14-fixture-list {
  display: grid;
  gap: 12px;
}
.t14-fixture-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--t14-border);
  border-radius: 10px;
  padding: 14px 16px;
}
.t14-fixture-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--t14-text-dim);
  margin-bottom: 8px;
}
.t14-fixture-body {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.t14-fixture-team { font-weight: 500; font-size: 15px; }
.t14-fixture-team:first-child { text-align: right; }
.t14-fixture-team:last-child { text-align: left; }
.t14-fixture-vs {
  font-size: 12px;
  color: var(--t14-text-dim);
  font-weight: 600;
}
.t14-leagues-cta {
  background: linear-gradient(135deg, rgba(224, 183, 90, 0.12), rgba(210, 58, 58, 0.08));
  border: 1px solid rgba(224, 183, 90, 0.2);
  border-radius: 14px;
  padding: 28px 24px;
  margin-bottom: 40px;
  text-align: center;
}
.t14-leagues-cta p { color: var(--t14-muted); margin: 0 0 16px; }
.t14-btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.t14-btn--primary {
  background: var(--t14-gold);
  color: #000;
}
body.theme-014 a.t14-btn--primary,
body.theme-014 a.t14-btn--primary:hover {
  color: #000;
}
.t14-btn--ghost {
  background: transparent;
  color: var(--t14-text);
  border: 1px solid var(--t14-line);
}
.t14-btn--ghost:hover {
  border-color: var(--t14-gold);
  color: var(--t14-gold);
}
.t14-spotlight-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  justify-content: center;
}
.t14-home-league-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.t14-section--leagues-hub {
  position: relative;
  overflow: hidden;
}
.t14-leagues-hub-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
}
.t14-leagues-hub-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--t14-border);
  font-size: 13px;
  font-weight: 600;
  color: var(--t14-text);
}
.t14-leagues-hub-pill img {
  opacity: 0.85;
  filter: brightness(1.2);
}
.t14-home-league-card {
  --league-accent: var(--t14-gold);
  background: var(--t14-surface);
  border: 1px solid var(--t14-border);
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}
.t14-home-league-card:hover {
  border-color: color-mix(in srgb, var(--league-accent) 50%, var(--t14-gold));
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}
.t14-home-league-cover {
  position: relative;
  aspect-ratio: 400 / 140;
  overflow: hidden;
  background: var(--league-accent);
}
.t14-home-league-cover-badges {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}
.t14-home-league-flag {
  display: block;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
  line-height: 0;
}
.t14-home-league-flag img {
  display: block;
  width: 28px;
  height: auto;
}
.t14-home-league-badge {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.25);
}
.t14-home-league-badge img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t14-home-league-body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #fff;
  border-top: 3px solid var(--league-accent);
}
.t14-home-league-body .t14-home-league-title {
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #1a1a1a;
  line-height: 1.3;
}
.t14-home-league-body .t14-home-league-sub {
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
  font-weight: 500;
}
.t14-home-league-body .t14-home-league-blurb {
  font-size: 13px;
  color: #444;
  margin: 0 0 14px;
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.t14-home-league-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}
.t14-home-league-body .t14-home-league-stat {
  background: #f5f5f5;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 10px 12px;
}
.t14-home-league-stat--fixture {
  grid-column: 1 / -1;
}
.t14-home-league-body .t14-home-league-stat-k {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  margin-bottom: 4px;
}
.t14-home-league-body .t14-home-league-stat-v {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #222;
  line-height: 1.35;
}
.t14-home-league-body .t14-home-league-cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--league-accent);
}
.t14-home-league-card:hover .t14-home-league-body .t14-home-league-cta {
  color: var(--t14-gold);
}
@media (max-width: 1024px) {
  .t14-home-league-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .t14-home-league-grid {
    grid-template-columns: 1fr;
  }
  .t14-leagues-hub-pills {
    margin-bottom: 4px;
  }
}
@media (max-width: 900px) {
  .t14-leagues-layout { grid-template-columns: 1fr; }
  .t14-leagues-aside {
    position: static;
    max-height: none;
    border-right: 0;
    border-bottom: 1px solid var(--t14-border);
  }
}

/* Hub pages: matches / teams */
.t14-hub-guide {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--t14-border);
}
.t14-hero-lead--sub {
  font-size: 15px;
  color: var(--t14-muted);
  margin-top: 12px;
}
.t14-match-card--ft .t14-match-status--ft {
  color: var(--t14-text-dim);
}
.t14-teams-group {
  margin-bottom: 40px;
}
.t14-teams-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.t14-teams-group-title {
  font-family: var(--t14-serif);
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  color: var(--t14-text);
}
.t14-teams-group-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--t14-gold);
  text-decoration: none;
}
.t14-teams-group-link:hover {
  text-decoration: underline;
}
.t14-teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}
.t14-team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 12px;
  background: var(--t14-surface);
  border: 1px solid var(--t14-border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}
.t14-team-card:hover {
  border-color: rgba(224, 183, 90, 0.45);
  transform: translateY(-2px);
}
.t14-team-card-abbr {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--t14-gold);
  background: rgba(224, 183, 90, 0.12);
  border: 1px solid rgba(224, 183, 90, 0.25);
}
.t14-team-card-crest {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.t14-team-card-crest img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t14-team-card-name {
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  color: var(--t14-text);
  line-height: 1.3;
}

/* Mobile tweaks for section pages */
@media (max-width: 600px) {
  .t14-subtab { font-size: 12px; padding: 6px 12px; }
  .t14-subtab--gear { font-size: 11px; }
  .t14-match-card { padding: 14px 14px; }
  .t14-match-body { grid-template-columns: 1fr auto 1fr; gap: 8px; }
  .t14-match-team { font-size: 13px; }
  .t14-match-score { font-size: 22px; }
  .t14-table { font-size: 12px; }
  .t14-table th, .t14-table td { padding: 8px 6px; }
  .t14-pred-matchup { grid-template-columns: 1fr auto 1fr; gap: 8px; }
  .t14-pred-team-name { font-size: 15px; }
  .t14-pred-row { grid-template-columns: 84px 1fr; gap: 10px; }
  .t14-post-row { grid-template-columns: 44px 1fr; gap: 12px; padding: 14px 16px; }
  .t14-post-row-title { font-size: 15px; }
}

/* ------------------------------------------------------------------ */
/* Betting rules documentation (imported CN rules pack)               */
/* ------------------------------------------------------------------ */

.t14-rules-layout {
  display: grid;
  grid-template-columns: minmax(240px, 280px) minmax(0, 1fr);
  gap: 0;
  min-height: calc(100vh - 64px);
  align-items: start;
}

.t14-rules-aside {
  position: sticky;
  top: 64px;
  max-height: calc(100vh - 64px);
  overflow: auto;
  padding: 24px 16px 32px 20px;
  background: rgba(8, 12, 24, 0.92);
  border-right: 1px solid var(--t14-border);
}

.t14-rules-aside-head { margin-bottom: 16px; }
.t14-rules-aside-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--t14-text);
  margin: 6px 0 0;
  line-height: 1.4;
}

.t14-rules-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.t14-rules-nav-list--depth-1 { padding-left: 10px; margin-top: 4px; }
.t14-rules-nav-list--depth-2 { padding-left: 10px; margin-top: 2px; }

.t14-rules-nav-item { margin: 2px 0; }
.t14-rules-nav-item > a {
  display: block;
  padding: 6px 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--t14-text-muted);
  border-radius: 6px;
  text-decoration: none;
  transition: background 120ms ease, color 120ms ease;
}
.t14-rules-nav-item > a:hover {
  color: var(--t14-text);
  background: rgba(224, 183, 90, 0.08);
}
.t14-rules-nav-item.is-active > a {
  color: var(--t14-gold);
  background: rgba(224, 183, 90, 0.12);
  font-weight: 600;
}
.t14-rules-nav-item.has-children > a { font-weight: 600; color: var(--t14-text); }

.t14-rules-main {
  padding: 32px 40px 64px;
  max-width: 920px;
}

.t14-rules-h1 {
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700;
  color: var(--t14-text);
  margin: 0 0 8px;
  line-height: 1.25;
}
.t14-rules-subtitle {
  font-size: 14px;
  color: var(--t14-text-dim);
  margin: 0 0 24px;
}

.t14-prose-rules {
  font-size: 15px;
  line-height: 1.75;
  color: var(--t14-text-muted);
}
.t14-prose-rules h2,
.t14-prose-rules h3,
.t14-prose-rules h4 {
  color: var(--t14-text);
  margin: 1.6em 0 0.6em;
  line-height: 1.35;
}
.t14-prose-rules h2 { font-size: 1.35rem; }
.t14-prose-rules h4 { font-size: 1.05rem; }
.t14-prose-rules p { margin: 0 0 1em; }
.t14-prose-rules ol,
.t14-prose-rules ul {
  margin: 0 0 1em;
  padding-left: 1.4em;
}
.t14-prose-rules li { margin: 0.35em 0; }
.t14-prose-rules strong { color: var(--t14-text); }
.t14-prose-rules table {
  width: 100%;
  border-collapse: collapse;
  margin: 1em 0 1.5em;
  font-size: 14px;
}
.t14-prose-rules th,
.t14-prose-rules td {
  border: 1px solid var(--t14-border);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
.t14-prose-rules th {
  background: rgba(224, 183, 90, 0.1);
  color: var(--t14-gold);
  font-weight: 600;
}
.t14-prose-rules a {
  color: var(--t14-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.t14-tags--rules { margin-top: 14px; }
.t14-rules-kw-note {
  margin-top: 2em;
  padding-top: 1.25em;
  border-top: 1px solid var(--t14-border);
  font-size: 14px;
  color: var(--t14-text-dim);
  line-height: 1.65;
}

/* Collapsible rules TOC — summary hidden on desktop via script + CSS */
.t14-rules-nav-summary {
  display: none;
  list-style: none;
  cursor: pointer;
  user-select: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(224, 183, 90, 0.28);
  background: rgba(224, 183, 90, 0.08);
  color: var(--t14-text);
  font-size: 14px;
  font-weight: 600;
}
.t14-rules-nav-summary::-webkit-details-marker { display: none; }
.t14-rules-nav-summary-hint {
  font-size: 12px;
  font-weight: 500;
  color: var(--t14-gold);
}
.t14-rules-nav-summary-hint::after { content: '展开'; }
.t14-rules-nav-details[open] .t14-rules-nav-summary-hint::after { content: '收起'; }

@media (max-width: 900px) {
  .t14-rules-layout {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .t14-rules-main {
    order: 1;
    padding: 20px 16px 32px;
    max-width: none;
  }
  .t14-rules-aside {
    order: 2;
    position: relative;
    top: 0;
    max-height: none;
    border-right: none;
    border-bottom: none;
    border-top: 1px solid var(--t14-border);
    padding: 16px 16px 24px;
    background: rgba(8, 12, 24, 0.96);
  }
  .t14-rules-aside-head {
    margin-bottom: 10px;
  }
  .t14-rules-aside-title {
    font-size: 14px;
  }
  .t14-rules-nav-summary {
    display: flex;
  }
  .t14-rules-h1 {
    font-size: clamp(22px, 6vw, 28px);
    line-height: 1.3;
    word-break: break-word;
  }
  .t14-rules-subtitle {
    font-size: 13px;
    margin-bottom: 16px;
    word-break: break-word;
  }
  .t14-prose-rules {
    font-size: 15px;
    line-height: 1.7;
    overflow-wrap: anywhere;
  }
  .t14-prose-rules p,
  .t14-prose-rules li {
    text-align: left !important;
  }
  .t14-prose-rules h2 { font-size: 1.2rem; }
  .t14-prose-rules h4 { font-size: 1rem; }
  .t14-prose-rules table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 13px;
  }
  .t14-prose-rules table tbody,
  .t14-prose-rules table thead,
  .t14-prose-rules table tr {
    display: table;
    width: 100%;
    min-width: 520px;
    table-layout: auto;
  }
  .t14-prose-rules th,
  .t14-prose-rules td {
    padding: 8px 10px;
    white-space: normal;
    min-width: 72px;
  }
  .t14-tags--rules {
    gap: 8px;
  }
  .t14-tags--rules .t14-tag {
    font-size: 11px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .t14-rules-nav-item > a {
    padding: 10px 12px;
    font-size: 14px;
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .t14-rules-nav-list--depth-1 { padding-left: 8px; }
  .t14-rules-nav-list--depth-2 { padding-left: 6px; }
}

@media (min-width: 901px) {
  .t14-rules-nav-summary { display: none !important; }
}

@media (max-width: 600px) {
  .t14-rules-main {
    padding: 16px 14px 28px;
  }
  .t14-rules-aside {
    padding: 14px 14px 20px;
  }
  .t14-prose-rules {
    font-size: 14.5px;
  }
}

/* ---------- App landing page (/app/) ---------- */
.t14-hero--app .t14-pillars {
  margin-top: 28px;
  margin-bottom: 8px;
}

.t14-app-store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  max-width: 720px;
}

.t14-app-store-btn {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 148px;
  padding: 12px 18px;
  border-radius: var(--t14-radius);
  border: 1px solid var(--t14-line);
  background: var(--t14-bg-card);
  color: var(--t14-text) !important;
  text-decoration: none;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}

.t14-app-store-btn[aria-disabled="true"] {
  opacity: 0.72;
  cursor: not-allowed;
  pointer-events: none;
}

.t14-app-store-btn--ios {
  border-color: rgba(255, 255, 255, 0.14);
}

.t14-app-store-btn--android {
  border-color: rgba(76, 175, 80, 0.35);
}

.t14-app-store-btn--pwa {
  border-color: rgba(224, 183, 90, 0.45);
  background: rgba(224, 183, 90, 0.08);
}

.t14-app-store-btn--pwa:hover {
  border-color: var(--t14-gold);
  background: rgba(224, 183, 90, 0.14);
  transform: translateY(-1px);
}

.t14-app-store-label {
  font-family: var(--t14-serif);
  font-size: 16px;
  line-height: 1.2;
}

.t14-app-store-sub {
  font-family: var(--t14-sans);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--t14-text-dim);
}

.t14-app-section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.t14-app-section-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 20px 16px;
  border-radius: var(--t14-radius);
  border: 1px solid var(--t14-line);
  background: var(--t14-bg-card);
  color: inherit !important;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.t14-app-section-card:hover {
  border-color: rgba(224, 183, 90, 0.45);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  transform: translateY(-2px);
}

.t14-app-section-title {
  margin: 0;
  font-family: var(--t14-serif);
  font-size: 20px;
  line-height: 1.25;
  color: var(--t14-text);
}

.t14-app-section-desc {
  margin: 0;
  flex: 1;
  font-size: 13px;
  line-height: 1.5;
  color: var(--t14-text-dim);
}

.t14-app-section-arrow {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--t14-gold);
}

.t14-app-tips {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.t14-app-path-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.t14-app-path-card {
  padding: 22px 20px;
  border-radius: var(--t14-radius);
  border: 1px solid var(--t14-line);
  background: var(--t14-bg-card);
}

.t14-app-path-card p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--t14-text-mid);
}

.t14-app-path-title {
  margin: 0;
  font-family: var(--t14-serif);
  font-size: 18px;
  color: var(--t14-gold);
}

.t14-app-brand-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  font-size: 14px;
}

.t14-app-brand-nav a {
  color: var(--t14-text-mid) !important;
  text-decoration: none;
  transition: color .15s ease;
}

.t14-app-brand-nav a:hover {
  color: var(--t14-gold) !important;
}

a.t14-live-pill {
  text-decoration: none;
  color: var(--t14-text-mid) !important;
  transition: border-color .15s ease, background .15s ease;
}

a.t14-live-pill:hover {
  border-color: rgba(210, 58, 58, 0.45);
  background: rgba(210, 58, 58, 0.1);
}

@media (max-width: 900px) {
  .t14-app-section-grid,
  .t14-app-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .t14-app-store-row {
    flex-direction: column;
  }
  .t14-app-store-btn {
    width: 100%;
    min-width: 0;
  }
  .t14-app-section-grid,
  .t14-app-path-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Homepage: fan feedback (avatar list) ---------- */
.t14-feedback-container {
  max-width: 920px;
  margin: 0 auto;
}
.t14-feedback-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.t14-feedback-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px 22px;
  border-radius: var(--t14-radius);
  border: 1px solid var(--t14-line);
  background: var(--t14-bg-card);
  min-width: 0;
}
.t14-feedback-avatar-wrap {
  flex-shrink: 0;
  padding: 3px;
  border-radius: 50%;
  border: 2px solid rgba(224, 183, 90, 0.35);
  background: rgba(224, 183, 90, 0.06);
}
.t14-feedback-avatar {
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  background-color: var(--t14-bg-soft);
}
.t14-feedback-desc {
  flex: 1;
  min-width: 0;
}
.t14-feedback-desc > span {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--t14-gold);
  letter-spacing: 0.02em;
}
.t14-feedback-desc p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--t14-text-mid);
}

@media (max-width: 600px) {
  .t14-feedback-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 16px;
  }
  .t14-feedback-desc > span {
    margin-bottom: 10px;
  }
}
