/*
Theme Name: WAF2
Theme URI: https://wearefootball.net
Author: WAF
Description: Official theme for We Are Football - all the football news, one place.
Version: 1.2.0
Text Domain: waf
*/

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
  --red:        #EC321D;
  --black:      #0f172a;
  --white:      #FFFFFF;
  --off-white:  #f6f1e6;
  --light-bg:   #F7F7F7;
  --border:     #E8E8E8;
  --text-muted: #64748b;
  --dark-bg:    #111418;
  --dark-border: #2a2a2a;
  --teal:       #036E82;
  --orange:     #E3662C;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; }

body {
  font-family: 'Barlow', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--white);
  color: var(--black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* Exception: custom logo must never be constrained by max-width:100% */
.site-logo img { max-width: none !important; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
.t-eyebrow {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}

.t-section-label {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
}

/* =============================================
   TOP ACCENT STRIPE
   ============================================= */
.site-accent-stripe {
  height: 3px;
  background: var(--red);
}

/* =============================================
   HEADER
   ============================================= */
#site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}

.header-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 28px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo container */
.site-logo {
  flex-shrink: 0;
  line-height: 1;
  display: flex;
  align-items: center;
}

/* Target WordPress custom_logo output:
   the_custom_logo() wraps in <figure> > <a> > <img>
   We force height and let width scale naturally */
.site-logo figure,
.site-logo .wp-block-site-logo {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.site-logo figure a,
.site-logo .wp-block-site-logo a,
.site-logo a {
  display: block;
  line-height: 1;
}

/* THE CRITICAL RULE: lock the image to 46px tall, auto width */
.site-logo figure img,
.site-logo .wp-block-site-logo img,
.site-logo img,
.site-logo svg {
  height: 46px !important;
  width: auto !important;
  max-width: none !important;
  display: block;
}

/* Primary Nav */
#primary-nav {
  flex: 1;
}
#primary-nav ul {
  display: flex;
  align-items: center;
  gap: 2px;
}
#primary-nav ul li a {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  padding: 8px 14px;
  display: block;
  position: relative;
  transition: color 0.15s;
}
#primary-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform 0.15s;
}
#primary-nav ul li a:hover,
#primary-nav ul li.current-menu-item a { color: var(--red); }
#primary-nav ul li.current-menu-item a::after { transform: scaleX(1); }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-left: auto;
}
.menu-toggle svg { width: 22px; height: 22px; }

/* =============================================
   PAGE LAYOUT
   ============================================= */
.page-wrap {
  max-width: 1380px;
  margin: 0 auto;
  padding: 32px 28px 56px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
}

/* =============================================
   SIDEBAR – LATEST NEWS
   ============================================= */
.sidebar {
  min-width: 0;
}

.sidebar-heading {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 14px;
}

.latest-list {
  display: flex;
  flex-direction: column;
}

.latest-item {
  padding: 13px 0;
  border-top: 1px solid var(--border);
}
.latest-item:last-child {
  border-bottom: 1px solid var(--border);
}

.latest-item-top {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  margin-bottom: 5px;
}

.latest-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  margin-top: 5px;
}

.latest-headline {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
  color: var(--black);
  transition: color 0.15s;
}
.latest-item:hover .latest-headline { color: var(--red); }

.latest-meta {
  display: flex;
  justify-content: space-between;
  padding-left: 16px;
}

.latest-source {
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red);
}

.latest-time {
  font-size: 11px;
  color: var(--text-muted);
}

.view-all-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1.5px solid var(--black);
  padding: 11px 16px;
  margin-top: 20px;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--black);
  transition: background 0.15s, color 0.15s;
}
.view-all-btn:hover {
  background: var(--black);
  color: var(--white);
}

/* =============================================
   MAIN CONTENT AREA
   ============================================= */
.main-content { min-width: 0; }

/* =============================================
   HERO CARD
   ============================================= */
.hero-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  height: 380px;
  margin-bottom: 18px;
  display: block;
}

.hero-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Gradient: heavy black left, fades to transparent right */
.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.90) 0%,
    rgba(0,0,0,0.70) 40%,
    rgba(0,0,0,0.20) 70%,
    rgba(0,0,0,0.05) 100%
  );
}

.hero-card-body {
  position: relative;
  z-index: 2;
  padding: 36px 36px 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 520px;
}

.hero-eyebrow {
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.hero-headline {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: 38px;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.hero-deck {
  font-size: 14px;
  color: rgba(255,255,255,0.80);
  line-height: 1.55;
  margin-bottom: 18px;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-source {
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
}

.hero-sep {
  color: rgba(255,255,255,0.3);
  font-size: 12px;
}

.hero-time {
  font-size: 12px;
  color: rgba(255,255,255,0.50);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid rgba(255,255,255,0.70);
  color: var(--white);
  padding: 10px 20px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-self: flex-start;
  transition: background 0.15s, border-color 0.15s;
}
.hero-cta:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

/* Carousel dots */
.hero-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CCCCCC;
  border: none;
  padding: 0;
  transition: background 0.2s;
  cursor: pointer;
}
.hero-dot.is-active { background: var(--red); }

/* =============================================
   TRENDING + SOURCES ROW
   ============================================= */
.trending-sources-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

/* =============================================
   SECTION LABEL (shared)
   ============================================= */
.section-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
}

.section-label svg {
  flex-shrink: 0;
}

/* =============================================
   TRENDING GRID
   ============================================= */
.trending-wrap { flex: 1; min-width: 0; }

.trending-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.story-card { display: block; cursor: pointer; }

.story-card-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  border-radius: 4px;
  background: #DDDDDD;
  display: block;
  margin-bottom: 10px;
}

.story-card-img-placeholder {
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 4px;
  background: #DDDDDD;
  margin-bottom: 10px;
}

.story-card-headline {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
  color: var(--black);
  margin-bottom: 8px;
  transition: color 0.15s;
}
.story-card:hover .story-card-headline { color: var(--red); }

.story-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.story-source {
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red);
}

.story-time {
  font-size: 11px;
  color: var(--text-muted);
}

/* =============================================
   BROWSE BY SOURCE PANEL
   ============================================= */
.sources-panel {
  width: 210px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 18px;
}

.sources-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}

.source-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: opacity 0.15s;
}
.source-item:hover { opacity: 0.7; }

.source-favicon {
  width: 22px;
  height: 22px;
  border-radius: 3px;
  object-fit: cover;
  background: #eee;
  flex-shrink: 0;
}

/* Fallback letter badge */
.source-badge {
  width: 22px;
  height: 22px;
  border-radius: 3px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 10px;
  color: var(--white);
  background: var(--black);
}

.source-label {
  font-weight: 600;
  font-size: 13px;
  color: var(--black);
}

.view-all-sources {
  display: flex;
  align-items: center;
  gap: 5px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--red);
  cursor: pointer;
  transition: opacity 0.15s;
}
.view-all-sources:hover { opacity: 0.75; }

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: var(--dark-bg);
}

.footer-stripe {
  height: 3px;
  background: var(--red);
}

.footer-inner {
  max-width: 1380px;
  margin: 0 auto;
  padding: 28px 28px;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-tagline {
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.4;
}

.footer-stats {
  display: flex;
  gap: 36px;
  flex: 1;
}

.footer-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-stat-icon {
  color: var(--red);
  flex-shrink: 0;
}
.footer-stat-icon svg { width: 20px; height: 20px; }

.footer-stat-text {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.4;
  opacity: 0.85;
}

.footer-subscribe {}

.footer-subscribe-label {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-form {
  display: flex;
}

.footer-email-input {
  padding: 10px 14px;
  font-size: 13px;
  font-family: 'Barlow', sans-serif;
  border: none;
  background: rgba(255,255,255,0.10);
  color: var(--white);
  width: 200px;
  outline: none;
}
.footer-email-input::placeholder { color: rgba(255,255,255,0.35); }

.footer-sub-btn {
  padding: 10px 18px;
  background: var(--red);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}
.footer-sub-btn:hover { background: #c72415; }

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding: 16px 28px;
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.15s;
}
.footer-links a:hover { color: var(--white); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .trending-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .page-wrap {
    grid-template-columns: 1fr;
    padding: 20px 16px 40px;
  }
  .sidebar { display: none; }
  .trending-sources-row { flex-direction: column; }
  .sources-panel { width: 100%; }
}

@media (max-width: 640px) {
  .header-inner { gap: 16px; padding: 0 16px; }
  #primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-card { height: 280px; }
  .hero-headline { font-size: 26px; }
  .trending-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { gap: 24px; }
  .footer-stats { flex-direction: column; gap: 16px; }
  .footer-email-input { width: 150px; }
}

/* =============================================
   FOOTER LOGO (circle badge)
   ============================================= */
.footer-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.footer-logo svg,
.footer-logo-img {
  height: 48px !important;
  width: 48px !important;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

/* =============================================
   FOOTER BOTTOM STRIPE
   Replicates the 3-line stripe from the logo:
   1 thick black + 2 red lines
   ============================================= */
.footer-bottom-stripe {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.footer-bottom-stripe span {
  display: block;
  width: 100%;
}

.fbs-black {
  height: 5px;
  background: #1a1a1a;
}

.fbs-red {
  height: 3px;
  background: #EC321D;
}

/* =============================================
   SINGLE STORY PAGE
   Two-column: main content + sidebar
   Mirrors homepage .page-wrap grid
   ============================================= */

.single-wrap {
  max-width: 1380px;
  margin: 0 auto;
  padding: 32px 28px 56px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

/* ── Main column ── */
.single-main {
  min-width: 0;
}

.single-breadcrumb {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.single-breadcrumb a { color: #888; text-decoration: none; }
.single-breadcrumb a:hover { color: #EC321D; }
.single-breadcrumb span:not(:last-child) { color: #ccc; }

.single-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.single-source {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #EC321D;
}
.single-sep { color: #ccc; }
.single-time { font-size: 12px; color: #888; }
.single-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  padding: 2px 8px;
  border-radius: 3px;
}

.single-headline {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(24px, 3.5vw, 40px);
  line-height: 1.08;
  color: #111;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

.single-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 24px;
  display: block;
}

.single-excerpt {
  font-size: 18px;
  line-height: 1.65;
  color: #333;
  margin-bottom: 32px;
  font-weight: 400;
}

.single-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #EC321D;
  color: #fff;
  padding: 14px 26px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.15s;
  margin-bottom: 48px;
}
.single-cta:hover { background: #c72415; color: #fff; }

/* ── Related stories ── */
.single-related { margin-top: 8px; }

.single-section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
  padding-bottom: 10px;
  border-bottom: 2px solid #EC321D;
  margin-bottom: 16px;
}

.single-related-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.related-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: inherit;
  transition: background 0.1s;
}
.related-item:hover .related-headline { color: #EC321D; }

.related-thumb {
  width: 90px;
  height: 64px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}
.related-thumb--placeholder {
  background: #f0f0f0;
}

.related-body { flex: 1; min-width: 0; }

.related-headline {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.3;
  color: #111;
  margin-bottom: 6px;
  transition: color 0.15s;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-meta {
  display: flex;
  gap: 8px;
  font-size: 11px;
  color: #888;
}

/* ── Sidebar column ── */
.single-sidebar {
  min-width: 0;
  position: sticky;
  top: 80px; /* clears fixed header */
}

.sidebar-widget {
  margin-bottom: 32px;
}

.sidebar-widget-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
  padding-bottom: 10px;
  border-bottom: 2px solid #EC321D;
  margin-bottom: 14px;
}

/* WordPress widget title (when widgets added via admin) */
.single-sidebar .widget-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
  padding-bottom: 10px;
  border-bottom: 2px solid #EC321D;
  margin: 0 0 14px;
}

/* ── Latest news list (default sidebar) ── */
.sidebar-latest-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-latest-item {
  border-bottom: 1px solid #f0f0f0;
}
.sidebar-latest-item:last-child { border-bottom: none; }

.sidebar-latest-item a {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  text-decoration: none;
  color: inherit;
}
.sidebar-latest-item a:hover .sidebar-latest-title { color: #EC321D; }

.sidebar-latest-dot {
  width: 6px;
  height: 6px;
  background: #EC321D;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 5px;
}

.sidebar-latest-title {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.35;
  color: #111;
  transition: color 0.15s;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
}

.sidebar-latest-meta {
  display: flex;
  gap: 8px;
  font-size: 11px;
  color: #888;
}

.sidebar-view-all {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #EC321D;
  text-decoration: none;
}
.sidebar-view-all:hover { text-decoration: underline; }

/* ── Browse by source (default sidebar) ── */
.sidebar-sources-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-source-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: inherit;
}
.sidebar-source-item:last-child { border-bottom: none; }
.sidebar-source-item:hover .sidebar-source-label { color: #EC321D; }

.sidebar-source-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.sidebar-source-label {
  font-size: 13px;
  font-weight: 600;
  color: #222;
  transition: color 0.15s;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .single-wrap {
    grid-template-columns: 1fr;
    padding: 20px 16px 40px;
    gap: 32px;
  }
  .single-sidebar {
    position: static;
    border-top: 2px solid #f0f0f0;
    padding-top: 32px;
  }
}

@media (max-width: 640px) {
  .single-headline { font-size: 24px; }
  .single-excerpt  { font-size: 16px; }
}

/* =============================================
   SOURCE ARCHIVE PAGE
   /source/{slug}/ — stories from one source
   ============================================= */

.source-archive-wrap {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 28px 56px;
}

/* ── Header ── */
.source-archive-header {
  padding: 28px 0 24px;
  border-bottom: 2px solid #EC321D;
  margin-bottom: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.source-archive-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.source-archive-badge {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.source-archive-name {
  font-family: 'Barlow', sans-serif;
  font-weight: 900;
  font-style: italic;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1;
  color: #111;
  margin: 0 0 4px;
}

.source-archive-count {
  font-size: 12px;
  color: #888;
  margin: 0;
}

.source-archive-breadcrumb {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.source-archive-breadcrumb a { color: #888; text-decoration: none; }
.source-archive-breadcrumb a:hover { color: #EC321D; }
.source-archive-breadcrumb span:not(:last-child) { color: #ccc; }

/* ── Body grid (main + sidebar) ── */
.source-archive-body {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  align-items: start;
}

.source-archive-main { min-width: 0; }

/* ── Story card list ── */
.source-story-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.source-story-card {
  border-bottom: 1px solid #f0f0f0;
}
.source-story-card:first-child { border-top: 1px solid #f0f0f0; }

.source-story-card__inner {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  text-decoration: none;
  color: inherit;
  align-items: flex-start;
}
.source-story-card__inner:hover .source-story-card__title { color: #EC321D; }

.source-story-card__thumb {
  width: 140px;
  height: 94px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.source-story-card__thumb--placeholder {
  border-radius: 4px;
}

.source-story-card__body { flex: 1; min-width: 0; }

.source-story-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.source-story-card__badge {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  padding: 2px 7px;
  border-radius: 3px;
}

.source-story-card__time {
  font-size: 11px;
  color: #888;
}

.source-story-card__title {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 17px;
  line-height: 1.25;
  color: #111;
  margin: 0 0 8px;
  transition: color 0.15s;
}

.source-story-card__excerpt {
  font-size: 13px;
  line-height: 1.55;
  color: #555;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── Pagination ── */
.source-archive-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  margin-top: 8px;
  border-top: 1px solid #f0f0f0;
}

.source-page-btn {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #EC321D;
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid #EC321D;
  transition: background 0.15s, color 0.15s;
}
.source-page-btn:hover { background: #EC321D; color: #fff; }

.source-page-info {
  font-size: 12px;
  color: #888;
}

/* ── Empty state ── */
.source-archive-empty {
  padding: 48px 0;
  text-align: center;
  color: #666;
}
.source-archive-empty p { margin-bottom: 8px; font-size: 15px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .source-archive-wrap { padding: 0 16px 40px; }
  .source-archive-body {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .single-sidebar {
    position: static;
    border-top: 2px solid #f0f0f0;
    padding-top: 32px;
  }
  .source-story-card__thumb { width: 100px; height: 70px; }
}

@media (max-width: 640px) {
  .source-archive-header { flex-direction: column; align-items: flex-start; }
  .source-story-card__thumb { display: none; }
  .source-story-card__title { font-size: 15px; }
}


/* =============================================
   HOMEPAGE REDESIGN — WAF2
   ============================================= */

/* ── Overall layout ── */
.waf-home {
  max-width: 1380px;
  margin: 0 auto;
  padding: 32px 28px 64px;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
}

.waf-sidebar { min-width: 0; }
.waf-main-col { min-width: 0; }

/* ── Remove hero dots ── */
.hero-dots { display: none !important; }

/* ── Section headers ── */
.waf-home-section {
  margin-bottom: 40px;
}

.waf-home-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #111;
}

.waf-home-eyebrow {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
  display: flex;
  align-items: center;
  gap: 6px;
}

.waf-home-see-all {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #EC321D;
  text-decoration: none;
  transition: opacity 0.15s;
}
.waf-home-see-all:hover { opacity: 0.7; }

/* ── WAF Originals grid ── */
.waf-originals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.waf-original-card {
  display: block;
  background: #111418;
  color: #fff;
  padding: 16px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.15s;
  border-left: 3px solid #EC321D;
}

.waf-original-card:hover { background: #1c2026; }

.waf-original-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #EC321D;
  display: block;
  margin-bottom: 8px;
}

.waf-original-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 8px;
}

.waf-original-time {
  font-size: 11px;
  color: #666;
}

/* ── World Cup strip ── */
.waf-wc-section .waf-home-section-head {
  border-bottom-color: #C8960A;
}

.waf-wc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.waf-wc-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid #E8E8E8;
  transition: border-color 0.15s;
}
.waf-wc-card:hover { border-color: #C8960A; }
.waf-wc-card:hover .waf-wc-card-title { color: #C8960A; }

.waf-wc-card-img {
  height: 100px;
  background-size: cover;
  background-position: center;
  background-color: #1a1510;
}
.waf-wc-card-img--empty { background: linear-gradient(135deg, #1a1510, #C8960A22); }

.waf-wc-card-body { padding: 10px 12px 12px; }

.waf-wc-card-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: #111;
  margin-bottom: 6px;
  transition: color 0.15s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.waf-wc-card-meta {
  font-size: 11px;
  color: #888;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ── Footballer Hub pills ── */
.waf-hub-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.waf-hub-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F7F7F7;
  border: 1px solid #E8E8E8;
  padding: 8px 14px;
  text-decoration: none;
  color: #111;
  font-size: 13px;
  transition: border-color 0.15s, background 0.15s;
  border-radius: 2px;
}
.waf-hub-pill:hover { border-color: #EC321D; background: #fff; }
.waf-hub-pill:hover .waf-hub-pill-name { color: #EC321D; }

.waf-hub-pill-name { font-weight: 700; }
.waf-hub-pill-club { font-size: 11px; color: #888; }
.waf-hub-pill-pos {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: #111;
  padding: 2px 6px;
  border-radius: 2px;
}
.waf-hub-pill-count { font-size: 11px; color: #888; }

/* ── Nav: World Cup highlight ── */
#primary-nav ul li.nav-wc a {
  color: #C8960A;
  font-weight: 700;
}
#primary-nav ul li.nav-wc a:hover { color: #EC321D; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .waf-originals-grid { grid-template-columns: repeat(2, 1fr); }
  .waf-wc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .waf-home {
    grid-template-columns: 1fr;
    padding: 20px 16px 48px;
  }
  .waf-sidebar { display: none; }
  .waf-originals-grid { grid-template-columns: repeat(2, 1fr); }
  .waf-wc-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .waf-originals-grid { grid-template-columns: 1fr; }
  .waf-wc-grid { grid-template-columns: 1fr; }
}

/* ── Native editorial content (Technical Area etc.) ── */
.single-content {
  margin-bottom: 48px;
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #111111;
}
.single-content p { margin-bottom: 20px; color: #111111; }
.single-content ol {
  list-style: none;
  counter-reset: waf-counter;
  padding: 0; margin: 0;
}
.single-content ol li {
  counter-increment: waf-counter;
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid #E8E8E8;
  color: #111111;
  font-size: 18px;
  line-height: 1.6;
  transition: color 0.15s;
}
.single-content ol li:first-child { border-top: 1px solid #E8E8E8; }
.single-content ol li::before {
  content: counter(waf-counter);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: #111111;
  min-width: 32px;
  text-align: right;
  line-height: 1;
  transition: color 0.15s;
}
.single-content ol li:hover { color: #EC321D; }
.single-content ol li:hover::before { color: #EC321D; }
.single-content ol li a { color: inherit; text-decoration: none; border-bottom: 1px solid currentColor; }
.single-content ol li a:hover { color: #EC321D; }


/* =============================================
   HOMEPAGE REDESIGN v2 — JUNE 2026
   ============================================= */

.waf-page {
  max-width: 1440px;
  margin: 0 auto;
}

/* ── FIRST TOUCH HERO ─────────────────────────────────────────────────────── */
.waf-ft-hero {
  display: block;
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
  text-decoration: none;
  background: #0D1117;
}

.waf-ft-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.waf-ft-hero:hover .waf-ft-hero__bg {
  transform: scale(1.08);
}

.waf-ft-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(13,17,23,0.97) 0%,
    rgba(13,17,23,0.85) 40%,
    rgba(13,17,23,0.3) 100%
  );
}

.waf-ft-hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 56px;
  max-width: 680px;
}

.waf-ft-hero__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #036E82;
  margin-bottom: 8px;
}

.waf-ft-hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #036E82;
  animation: waf-pulse 2s ease-in-out infinite;
}

@keyframes waf-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}

.waf-ft-hero__sub {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}

.waf-ft-hero__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 16px;
}

.waf-ft-hero__time {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

.waf-ft-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #036E82;
  border-bottom: 1px solid #036E82;
  padding-bottom: 2px;
  transition: color 0.15s, border-color 0.15s;
}

.waf-ft-hero:hover .waf-ft-hero__cta {
  color: #EC321D;
  border-color: #EC321D;
}

/* ── BREAKING STRIP ───────────────────────────────────────────────────────── */
.waf-breaking-strip {
  display: flex;
  align-items: stretch;
  background: #111418;
  border-top: 1px solid #1e2329;
  border-bottom: 2px solid #EC321D;
  height: 42px;
  overflow: hidden;
}

.waf-breaking-strip__label {
  display: flex;
  align-items: center;
  padding: 0 16px;
  border-right: 1px solid #2a2a2a;
  flex-shrink: 0;
}

.waf-breaking-strip__live {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #EC321D;
  background: rgba(236,50,29,0.12);
  padding: 3px 8px;
  border-radius: 2px;
}

.waf-breaking-strip__track-wrap {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 32px, black calc(100% - 32px), transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 32px, black calc(100% - 32px), transparent);
}

.waf-breaking-strip__track {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  animation: waf-scroll 60s linear infinite;
}

.waf-breaking-strip__track:hover { animation-play-state: paused; }

@keyframes waf-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.waf-breaking-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 24px;
  border-right: 1px solid #2a2a2a;
  text-decoration: none;
  height: 100%;
  transition: background 0.12s;
}

.waf-breaking-item:hover { background: rgba(255,255,255,0.04); }
.waf-breaking-item:hover .waf-breaking-item__title { color: #EC321D; }

.waf-breaking-item__source {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #EC321D;
  flex-shrink: 0;
}

.waf-breaking-item__title {
  font-size: 13px;
  font-weight: 600;
  color: #e8e8e8;
  transition: color 0.12s;
  max-width: 360px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.waf-breaking-item__time {
  font-size: 11px;
  color: #444;
  flex-shrink: 0;
}

/* ── WORLD CUP STRIP ──────────────────────────────────────────────────────── */
.waf-wc-strip {
  background: #0D1117;
  padding: 28px 40px;
  border-bottom: 1px solid #1e2329;
}

.waf-wc-strip__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.waf-wc-strip__badge {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C8960A;
  display: flex;
  align-items: center;
  gap: 8px;
}

.waf-wc-strip__more {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C8960A;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.waf-wc-strip__more:hover { opacity: 1; }

.waf-wc-strip__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2px;
}

.waf-wc-card {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  background: #111418;
}

.waf-wc-card:first-child .waf-wc-card__img { height: 200px; }

.waf-wc-card__img {
  height: 130px;
  background-size: cover;
  background-position: center;
  background-color: #1a1510;
  transition: transform 0.4s ease;
}
.waf-wc-card__img--empty {
  background: linear-gradient(135deg, #1a1510 0%, rgba(200,150,10,0.15) 100%);
}

.waf-wc-card:hover .waf-wc-card__img { transform: scale(1.04); }

.waf-wc-card__body {
  padding: 12px 14px 14px;
  border-top: 2px solid #C8960A;
}

.waf-wc-card__title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  color: #e8e8e8;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.15s;
}

.waf-wc-card:hover .waf-wc-card__title { color: #C8960A; }

.waf-wc-card__meta {
  font-size: 11px;
  color: #555;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── MAIN CONTENT GRID ────────────────────────────────────────────────────── */
.waf-content-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 300px;
  gap: 0;
  background: #F5F0E8;
  border-bottom: 1px solid #e0dbd0;
}

/* ── SECTION HEADS ─────────────────────────────────────────────────────────── */
.waf-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 12px;
  margin-bottom: 0;
  border-bottom: 2px solid #111;
}

.waf-section-head__label {
  font-family: 'Barlow', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #111;
  display: flex;
  align-items: center;
  gap: 6px;
}

.waf-section-head__more {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #EC321D;
  text-decoration: none;
}
.waf-section-head__more:hover { opacity: 0.7; }

/* ── TRENDING ─────────────────────────────────────────────────────────────── */
.waf-trending {
  padding: 28px 32px 28px 40px;
  border-right: 1px solid #e0dbd0;
}

.waf-trending-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.waf-trending-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid #e0dbd0;
  text-decoration: none;
  color: inherit;
  transition: background 0.1s;
}

.waf-trending-item--hero {
  padding-bottom: 20px;
  flex-direction: column;
  gap: 12px;
}

.waf-trending-item--hero .waf-trending-item__img {
  width: 100%;
  height: 180px;
  border-radius: 0;
}

.waf-trending-item--hero .waf-trending-item__title {
  font-size: 18px;
  font-weight: 800;
}

.waf-trending-item__img {
  width: 72px;
  height: 54px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-color: #ddd;
  position: relative;
  overflow: hidden;
}

.waf-trending-item__img--empty { background: #e8e8e8; }

.waf-trending-item__num {
  position: absolute;
  bottom: 0;
  left: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  line-height: 1;
  color: rgba(255,255,255,0.9);
  padding: 2px 6px;
  background: rgba(0,0,0,0.5);
}

.waf-trending-item__body { flex: 1; min-width: 0; }

.waf-trending-item__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #111;
  margin-bottom: 6px;
  transition: color 0.12s;
}

.waf-trending-item:hover .waf-trending-item__title { color: #EC321D; }

.waf-trending-item__meta {
  display: flex;
  gap: 8px;
  font-size: 11px;
  color: #888;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.waf-trending-item__source { color: #EC321D; }

.waf-view-all {
  display: inline-block;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111;
  border: 1.5px solid #111;
  padding: 10px 16px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.waf-view-all:hover { background: #111; color: #fff; }

/* ── WAF ORIGINALS ────────────────────────────────────────────────────────── */
.waf-originals {
  padding: 28px 32px;
  border-right: 1px solid #e0dbd0;
  background: #F5F0E8;
}

.waf-originals-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.waf-original-item {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #e0dbd0;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: background 0.12s;
}

.waf-original-item:hover { background: rgba(0,0,0,0.03); }

.waf-original-item__thumb {
  width: 100px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 80px;
}

.waf-original-item__thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,17,23,0.55);
}

.waf-original-item__thumb-label {
  position: absolute;
  bottom: 6px;
  left: 6px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

.waf-original-item__body {
  flex: 1;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.waf-original-item__type {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.waf-original-item__title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #111;
  transition: color 0.12s;
}

.waf-original-item:hover .waf-original-item__title { color: #EC321D; }

.waf-original-item__time {
  font-size: 11px;
  color: #888;
  font-weight: 600;
}

/* ── RIGHT RAIL ───────────────────────────────────────────────────────────── */
.waf-right-rail {
  padding: 28px 28px 28px 24px;
  background: #F5F0E8;
}

/* Latest list */
.waf-latest-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.waf-latest-item {
  border-top: 1px solid #e0dbd0;
}

.waf-latest-item:last-child { border-bottom: 1px solid #e0dbd0; }

.waf-latest-item a {
  display: block;
  padding: 11px 0;
  text-decoration: none;
}

.waf-latest-item__top {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  margin-bottom: 4px;
}

.waf-latest-item__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #EC321D;
  flex-shrink: 0;
  margin-top: 5px;
}

.waf-latest-item__title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
  color: #111;
  transition: color 0.12s;
}

.waf-latest-item a:hover .waf-latest-item__title { color: #EC321D; }

.waf-latest-item__meta {
  display: flex;
  justify-content: space-between;
  padding-left: 14px;
  font-size: 11px;
}

.waf-latest-item__source {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #EC321D;
}

.waf-latest-item__time { color: #888; }

/* Footballer Hub banner */
.waf-hub-banner {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 16px 0 12px;
  text-decoration: none;
}

.waf-hub-banner__img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.waf-hub-banner:hover .waf-hub-banner__img { transform: scale(1.04); }

.waf-hub-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,17,23,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}

.waf-hub-banner__label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1;
}

.waf-hub-banner__sub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

/* Hub pills */
.waf-hub-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.waf-hub-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #e0dbd0;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  transition: border-color 0.12s, background 0.12s;
}

.waf-hub-pill:hover { border-color: #EC321D; }
.waf-hub-pill:hover .waf-hub-pill__name { color: #EC321D; }

.waf-hub-pill__name { font-weight: 700; }

.waf-hub-pill__pos {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #fff;
  background: #111;
  padding: 2px 5px;
}

.waf-hub-pill__count {
  font-size: 10px;
  color: #999;
}

/* ── SOURCES ROW ──────────────────────────────────────────────────────────── */
.waf-sources-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 40px;
  background: #111418;
  border-top: 1px solid #1e2329;
  flex-wrap: wrap;
}

.waf-sources-row__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #444;
  flex-shrink: 0;
}

.waf-sources-row__list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}

.waf-source-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: #888;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px 4px 4px;
  border: 1px solid #1e2329;
  transition: border-color 0.12s, color 0.12s;
}

.waf-source-chip:hover { border-color: #EC321D; color: #fff; }

.waf-source-chip__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.waf-source-chip__name { white-space: nowrap; }

.waf-sources-row__all {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #EC321D;
  text-decoration: none;
  flex-shrink: 0;
}
.waf-sources-row__all:hover { opacity: 0.7; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media ( max-width: 1200px ) {
  .waf-content-grid { grid-template-columns: 1fr 1fr; }
  .waf-right-rail { grid-column: 1 / -1; border-top: 1px solid #e0dbd0; display: flex; flex-wrap: wrap; gap: 32px; }
  .waf-right-rail > * { flex: 1; min-width: 260px; }
  .waf-wc-strip__grid { grid-template-columns: 1fr 1fr 1fr; }
  .waf-wc-card:nth-child(n+4) { display: none; }
}

@media ( max-width: 900px ) {
  .waf-ft-hero { height: 260px; }
  .waf-ft-hero__inner { padding: 0 28px; }
  .waf-content-grid { grid-template-columns: 1fr; }
  .waf-trending { border-right: none; padding: 24px 20px; }
  .waf-originals { border-right: none; padding: 24px 20px; }
  .waf-right-rail { padding: 24px 20px; }
  .waf-wc-strip { padding: 20px; }
  .waf-wc-strip__grid { grid-template-columns: 1fr 1fr; }
  .waf-wc-card:nth-child(n+3) { display: none; }
  .waf-sources-row { padding: 16px 20px; }
}

@media ( max-width: 640px ) {
  .waf-ft-hero { height: 220px; }
  .waf-ft-hero__overlay { background: linear-gradient(rgba(13,17,23,0.95), rgba(13,17,23,0.8)); }
  .waf-wc-strip__grid { grid-template-columns: 1fr; }
  .waf-wc-card:nth-child(n+2) { display: none; }
  .waf-breaking-strip { height: 36px; }
}


/* =============================================
   HOMEPAGE v3 — EDITORIAL NEWSPAPER GRID
   June 2026
   ============================================= */

.waf-hp {
    background: #F5F0E8;
}

/* ── TAGS ──────────────────────────────────────────────────────────────────── */
.waf-tag {
    display: inline-block;
    font-family: 'Barlow', sans-serif;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #EC321D;
    margin-bottom: 10px;
}

.waf-tag--sm { font-size: 9px; margin-bottom: 6px; }

.waf-tag--on-img {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    background: #EC321D;
    padding: 3px 8px;
    margin: 0;
}

/* ── HERO GRID ─────────────────────────────────────────────────────────────── */
.waf-hero-grid {
    display: grid;
    grid-template-columns: 62% 38%;
    min-height: 520px;
    background: #111418;
}

/* Main hero */
.waf-hero-main {
    position: relative;
    display: block;
    text-decoration: none;
    overflow: hidden;
    min-height: 520px;
}

.waf-hero-main__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    transition: transform 7s ease;
}
.waf-hero-main:hover .waf-hero-main__img { transform: scale(1.07); }

.waf-hero-main__img--empty {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d1b1b 100%);
}

.waf-hero-main__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(13,17,23,0.97) 0%,
        rgba(13,17,23,0.6) 50%,
        rgba(13,17,23,0.1) 100%
    );
}

.waf-hero-main__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 40px 36px;
    z-index: 2;
}

.waf-hero-main__title {
    font-family: 'Barlow', sans-serif;
    font-size: clamp(1.9rem, 3.2vw, 3rem);
    font-weight: 900;
    font-style: italic;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.waf-hero-main:hover .waf-hero-main__title { color: #F5F0E8; }

.waf-hero-main__deck {
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
    max-width: 540px;
}

.waf-hero-main__meta {
    display: flex;
    gap: 12px;
    align-items: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.waf-hero-main__source { color: #EC321D; }
.waf-hero-main__time   { color: rgba(255,255,255,0.4); }

/* Secondary stack */
.waf-hero-stack {
    display: flex;
    flex-direction: column;
    border-left: 1px solid #1e2329;
}

.waf-hero-stack__item {
    flex: 1;
    display: flex;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid #1e2329;
    transition: background 0.15s;
    overflow: hidden;
    min-height: 0;
}

.waf-hero-stack__item:last-child { border-bottom: none; }
.waf-hero-stack__item:hover { background: #1a1e24; }

.waf-hero-stack__img {
    width: 100px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-color: #1e2329;
}

.waf-hero-stack__body {
    flex: 1;
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    min-width: 0;
}

.waf-hero-stack__title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    color: #e8e8e8;
    transition: color 0.15s;
}
.waf-hero-stack__item:hover .waf-hero-stack__title { color: #fff; }

.waf-hero-stack__meta {
    display: flex;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #555;
}

/* ── FIRST TOUCH STRIP ─────────────────────────────────────────────────────── */
.waf-ft-strip {
    position: relative;
    display: flex;
    align-items: center;
    height: 72px;
    text-decoration: none;
    overflow: hidden;
    background: #111418;
    border-top: 1px solid #1e2329;
    border-bottom: 3px solid #036E82;
    transition: background 0.2s;
}
.waf-ft-strip:hover { background: #161b22; }

.waf-ft-strip__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center 35%;
    opacity: 0.18;
}

.waf-ft-strip__overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,17,23,0.7);
}

.waf-ft-strip__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 0 40px;
}

.waf-ft-strip__left {
    flex-shrink: 0;
    padding-right: 32px;
    border-right: 1px solid #2a2a2a;
    margin-right: 32px;
}

.waf-ft-strip__kicker {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: 'Barlow', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #036E82;
}

.waf-ft-strip__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #036E82;
    animation: waf-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.waf-ft-strip__sub {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #444;
    margin-top: 2px;
}

.waf-ft-strip__title {
    flex: 1;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #e8e8e8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 32px;
    transition: color 0.15s;
}
.waf-ft-strip:hover .waf-ft-strip__title { color: #fff; }

.waf-ft-strip__right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 16px;
}

.waf-ft-strip__time {
    font-size: 11px;
    color: #444;
    font-weight: 600;
}

.waf-ft-strip__cta {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #036E82;
    padding: 6px 14px;
    border: 1px solid #036E82;
    transition: background 0.15s, color 0.15s;
}
.waf-ft-strip:hover .waf-ft-strip__cta {
    background: #036E82;
    color: #fff;
}

/* ── STORY RIVER ───────────────────────────────────────────────────────────── */
.waf-river {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #e0dbd0;
    border-top: 1px solid #e0dbd0;
}

.waf-river--2 { border-top: none; }

.waf-river-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #F5F0E8;
    transition: background 0.12s;
}
.waf-river-card:hover { background: #ede8df; }

.waf-river-card--lead {
    grid-column: span 2;
}

.waf-river-card__img {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: #ddd8d0;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}
.waf-river-card:hover .waf-river-card__img { transform: scale(1.03); }

/* No-image cards: dark with source name, much shorter */
.waf-river-card__img--text {
    height: 64px;
    background: #111418;
    display: flex;
    align-items: flex-end;
    padding: 8px 12px;
}

.waf-river-card--lead .waf-river-card__img { height: 240px; }

.waf-river-card__body {
    padding: 16px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.waf-river-card__title {
    font-family: 'Barlow', sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: #111;
    transition: color 0.12s;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.waf-river-card--lead .waf-river-card__title {
    font-size: 19px;
    -webkit-line-clamp: 4;
}

.waf-river-card:hover .waf-river-card__title { color: #EC321D; }

.waf-river-card__deck {
    font-size: 13px;
    line-height: 1.55;
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.waf-river-card__meta {
    display: flex;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #888;
    margin-top: auto;
}
.waf-river-card__source { color: #EC321D; }

/* ── ORIGINALS INTERRUPTION ────────────────────────────────────────────────── */
.waf-originals-strip {
    background: #111418;
    padding: 32px 40px;
}

.waf-originals-strip__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #1e2329;
}

.waf-originals-strip__label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    color: #fff;
}

.waf-originals-strip__all {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #EC321D;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.15s;
}
.waf-originals-strip__all:hover { opacity: 1; }

.waf-originals-strip__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}

.waf-original-card {
    display: block;
    text-decoration: none;
    background: #161b22;
    overflow: hidden;
    transition: background 0.15s;
}
.waf-original-card:hover { background: #1c2330; }

.waf-original-card__img {
    height: 160px;
    background-size: cover;
    background-position: center;
    background-color: #1e2329;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}
.waf-original-card:hover .waf-original-card__img { transform: scale(1.04); }

.waf-original-card__img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,17,23,0.4);
}

.waf-original-card__body {
    padding: 16px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.waf-original-card__type {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.waf-original-card__title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    color: #e8e8e8;
    transition: color 0.15s;
}
.waf-original-card:hover .waf-original-card__title { color: #fff; }

.waf-original-card__time {
    font-size: 11px;
    color: #444;
    font-weight: 600;
}

/* ── FOOTBALLER HUB STRIP ──────────────────────────────────────────────────── */
.waf-hub-strip {
    display: grid;
    grid-template-columns: 280px 1fr;
    background: #111418;
    border-top: 1px solid #1e2329;
    min-height: 180px;
}

.waf-hub-strip__banner {
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    text-decoration: none;
    background-size: cover;
    background-position: center;
    min-height: 180px;
    transition: transform 0.5s ease;
}
.waf-hub-strip__banner:hover { transform: scale(1.02); }

.waf-hub-strip__banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13,17,23,0.85), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.waf-hub-strip__banner-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    color: #fff;
    line-height: 1;
}

.waf-hub-strip__banner-sub {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-top: 4px;
}

.waf-hub-strip__players {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: #1e2329;
    padding: 1px;
}

.waf-hub-player {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px 20px;
    text-decoration: none;
    background: #111418;
    transition: background 0.12s;
    gap: 4px;
}
.waf-hub-player:hover { background: #161b22; }
.waf-hub-player:hover .waf-hub-player__name { color: #EC321D; }

.waf-hub-player__name {
    font-size: 14px;
    font-weight: 700;
    color: #e8e8e8;
    transition: color 0.12s;
}

.waf-hub-player__meta {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 11px;
    color: #555;
    font-weight: 600;
}

.waf-hub-player__pos {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #fff;
    background: #333;
    padding: 2px 6px;
}

.waf-hub-player__count {
    font-size: 11px;
    color: #444;
    font-weight: 600;
}

/* ── SOURCES ───────────────────────────────────────────────────────────────── */
.waf-sources {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 40px;
    background: #0D1117;
    flex-wrap: wrap;
    border-top: 1px solid #1e2329;
}

.waf-sources__label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #333;
    flex-shrink: 0;
    margin-right: 8px;
}

.waf-source-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-decoration: none;
    padding: 4px 10px;
    border: 1px solid #1e2329;
    transition: border-color 0.12s, color 0.12s;
}
.waf-source-chip:hover { border-color: #EC321D; color: #e8e8e8; }

.waf-source-chip__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.waf-sources__all {
    margin-left: auto;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #EC321D;
    text-decoration: none;
    flex-shrink: 0;
}
.waf-sources__all:hover { opacity: 0.7; }

/* ── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .waf-hero-grid { grid-template-columns: 55% 45%; }
    .waf-river { grid-template-columns: repeat(3, 1fr); }
    .waf-river-card--lead { grid-column: span 1; }
    .waf-originals-strip__grid { grid-template-columns: repeat(2, 1fr); }
    .waf-hub-strip { grid-template-columns: 220px 1fr; }
    .waf-hub-strip__players { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .waf-hero-grid { grid-template-columns: 1fr; min-height: auto; }
    .waf-hero-main { min-height: 340px; }
    .waf-hero-stack { flex-direction: row; border-left: none; border-top: 1px solid #1e2329; overflow-x: auto; }
    .waf-hero-stack__item { min-width: 220px; border-right: 1px solid #1e2329; border-bottom: none; }
    .waf-hero-main__body { padding: 24px 20px; }
    .waf-river { grid-template-columns: repeat(2, 1fr); }
    .waf-originals-strip { padding: 24px 20px; }
    .waf-originals-strip__grid { grid-template-columns: 1fr; }
    .waf-hub-strip { grid-template-columns: 1fr; }
    .waf-hub-strip__banner { height: 160px; }
    .waf-hub-strip__players { grid-template-columns: repeat(3, 1fr); }
    .waf-ft-strip { height: auto; padding: 12px 0; }
    .waf-ft-strip__inner { padding: 0 20px; flex-wrap: wrap; gap: 8px; }
    .waf-ft-strip__title { font-size: 14px; white-space: normal; }
    .waf-sources { padding: 14px 20px; }
}

@media (max-width: 640px) {
    .waf-river { grid-template-columns: 1fr; }
    .waf-hub-strip__players { grid-template-columns: repeat(2, 1fr); }
}


/* ── Text cards (no image) ─────────────────────────────────────────────────── */
.waf-river-card__img--empty {
    background: #e8e3da;
    display: flex;
    align-items: center;
    justify-content: center;
}

.waf-river-card__img--text {
    background: #111418;
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.waf-river-card__img--text .waf-river-card__source-bg {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.15);
    line-height: 1;
}


/* =============================================
   HOMEPAGE v4 — CLEAN / CBS-INSPIRED
   ============================================= */

.waf-hp {
    background: #fff;
    max-width: 1280px;
    margin: 0 auto;
}

/* ── SHARED ATOMS ────────────────────────────────────────────────────────── */
.waf-cat {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #EC321D;
    margin-bottom: 4px;
}

.waf-meta {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 11px;
    color: #888;
    font-weight: 600;
    margin-top: 6px;
}

.waf-meta__source {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #555;
}

/* ── FIRST TOUCH BAR ─────────────────────────────────────────────────────── */
.waf-ft-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 10px 24px;
    background: #111418;
    text-decoration: none;
    border-bottom: 2px solid #036E82;
    transition: background 0.15s;
}
.waf-ft-bar:hover { background: #1a1e24; }

.waf-ft-bar__kicker {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #036E82;
    white-space: nowrap;
    flex-shrink: 0;
    padding-right: 16px;
    border-right: 1px solid #2a2a2a;
}

.waf-ft-bar__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #036E82;
    animation: waf-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}

.waf-ft-bar__title {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
    color: #d0d0d0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.15s;
}
.waf-ft-bar:hover .waf-ft-bar__title { color: #fff; }

.waf-ft-bar__cta {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #036E82;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── MAIN LAYOUT ─────────────────────────────────────────────────────────── */
.waf-main {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 0;
    border-top: 3px solid #EC321D;
}

/* ── FEED (left) ─────────────────────────────────────────────────────────── */
.waf-feed {
    padding: 0;
    border-right: 1px solid #e8e8e8;
}

/* Lead story */
.waf-lead {
    display: block;
    text-decoration: none;
    padding: 20px 24px 20px;
    border-bottom: 1px solid #e8e8e8;
    transition: background 0.1s;
}
.waf-lead:hover { background: #fafafa; }

.waf-lead__img-wrap {
    width: 100%;
    margin-bottom: 14px;
    overflow: hidden;
    max-height: 340px;
}

.waf-lead__img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 340px;
    transition: transform 0.4s ease;
}
.waf-lead:hover .waf-lead__img { transform: scale(1.02); }

.waf-lead__title {
    font-family: 'Barlow', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.15;
    color: #111;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    transition: color 0.12s;
}
.waf-lead:hover .waf-lead__title { color: #EC321D; }

.waf-lead__deck {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 10px;
}

/* Story list */
.waf-list { border-bottom: 1px solid #e8e8e8; }

.waf-list-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 24px;
    border-top: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    transition: background 0.1s;
}
.waf-list-item:hover { background: #fafafa; }
.waf-list-item:hover .waf-list-item__title { color: #EC321D; }

.waf-list-item__body { flex: 1; min-width: 0; }

.waf-list-item__title {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    color: #111;
    transition: color 0.12s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 2px;
}

.waf-list-item__img {
    width: 100px;
    height: 68px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
}

.waf-more-btn {
    display: block;
    text-align: center;
    padding: 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #EC321D;
    text-decoration: none;
    border-top: 1px solid #e8e8e8;
    transition: background 0.12s;
}
.waf-more-btn:hover { background: #fafafa; }

/* ── RIGHT RAIL ──────────────────────────────────────────────────────────── */
.waf-rail { background: #fff; }

.waf-rail-section {
    padding: 16px 20px;
    border-bottom: 1px solid #e8e8e8;
}

.waf-rail-head {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #111;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 2px solid #111;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.waf-rail-head--originals { border-bottom-color: #EC321D; }

.waf-rail-head__more {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #EC321D;
    text-decoration: none;
}

/* Rail story items */
.waf-rail-story {
    display: flex;
    gap: 10px;
    padding: 10px 0;
    border-top: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    transition: background 0.1s;
}
.waf-rail-story:first-of-type { border-top: none; }
.waf-rail-story:hover .waf-rail-story__title { color: #EC321D; }

.waf-rail-story__img {
    width: 80px;
    height: 54px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
}
.waf-rail-story__img--empty { background: #f5f5f5; }

.waf-rail-story__body { flex: 1; min-width: 0; }

.waf-rail-story__title {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    color: #111;
    transition: color 0.12s;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footballer Hub list */
.waf-hub-list { display: flex; flex-direction: column; gap: 0; }

.waf-hub-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 9px 0;
    border-top: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    transition: background 0.1s;
}
.waf-hub-row:first-child { border-top: none; }
.waf-hub-row:hover .waf-hub-row__name { color: #EC321D; }

.waf-hub-row__name {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    transition: color 0.12s;
}

.waf-hub-row__right {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.waf-hub-row__club {
    font-size: 11px;
    color: #888;
    max-width: 90px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.waf-hub-row__pos {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #fff;
    background: #555;
    padding: 2px 5px;
}

.waf-hub-row__count {
    font-size: 11px;
    color: #bbb;
    font-weight: 600;
    min-width: 18px;
    text-align: right;
}

/* Sources list */
.waf-sources-list { display: flex; flex-direction: column; gap: 0; }

.waf-source-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    border-top: 1px solid #f0f0f0;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    transition: color 0.12s;
}
.waf-source-row:first-child { border-top: none; }
.waf-source-row:hover { color: #EC321D; }

.waf-source-row__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── MORE STORIES GRID ───────────────────────────────────────────────────── */
.waf-more {
    background: #f7f7f7;
    border-top: 3px solid #EC321D;
    padding: 24px;
}

.waf-more__head {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 20px;
}

.waf-more__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.waf-more-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    transition: box-shadow 0.15s;
}
.waf-more-card:hover { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.waf-more-card:hover .waf-more-card__title { color: #EC321D; }

.waf-more-card__img {
    width: 100%;
    height: 120px;
    background-size: cover;
    background-position: center;
    background-color: #e8e8e8;
}
.waf-more-card__img--empty { background: #ebebeb; }

.waf-more-card__body { padding: 10px 12px 12px; }

.waf-more-card__title {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    color: #111;
    transition: color 0.12s;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ── RESPONSIVE ──────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .waf-main { grid-template-columns: 1fr 280px; }
    .waf-more__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .waf-main { grid-template-columns: 1fr; }
    .waf-rail { border-top: 3px solid #e8e8e8; }
    .waf-more__grid { grid-template-columns: repeat(2, 1fr); }
    .waf-lead__title { font-size: 1.4rem; }
    .waf-ft-bar { padding: 10px 16px; }
}

@media (max-width: 480px) {
    .waf-more__grid { grid-template-columns: 1fr; }
    .waf-lead { padding: 16px; }
    .waf-list-item { padding: 12px 16px; }
    .waf-rail-section { padding: 14px 16px; }
}

