/*
Theme Name: BetTheRent
Theme URI: https://bettherent.com
Author: BetTheRent
Author URI: https://bettherent.com
Description: Custom WordPress theme for BetTheRent — PGA Tour and NFL analytics platform. Dark editorial design, gold accents, Oswald + Source Serif 4 typography. Skeleton structure that grows page-by-page as the site expands.
Version: 1.0.8
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: Proprietary
Text Domain: bettherent
Tags: custom-theme, sports, analytics
*/

/* ──────────────────────────────────────────────────────────
   1.  CSS VARIABLES — single source of truth for the brand
   ────────────────────────────────────────────────────────── */
:root {
  --gold:         #C9A84C;
  --gold-dim:     #9e7e35;
  --bg:           #0f0f0f;
  --surface:      #1a1a1a;
  --card:         #1e1e1e;
  --card-alt:     #242424;
  --border:       #333;
  --border-light: #3a3a3a;
  --text:         #ffffff;
  --text-soft:    #e8e4dc;
  --muted:        #999;
  --muted-light:  #bbb;
  --light-bg:     #f4f1eb;
  --light-text:   #111;
  --light-muted:  #555;
  --footer-bg:    #0a0a0a;
  --font-display: 'Oswald', sans-serif;
  --font-body:    'Source Serif 4', Georgia, serif;
  /* Chrome typography — single source of truth shared by the global
     site nav (.site-nav), the PGA hub (.pga-hub-root), and the PGA
     Articles page (.pga-articles-root). */
  --font-chrome: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, Roboto, sans-serif;

  /* Pipeline Article v6 — Fairway palette tokens.
     Defined globally so they survive WordPress stripping <style> blocks
     from post content (DISALLOW_UNFILTERED_HTML on GoDaddy Managed WP). */
  --pgl-green-deep: #0E5E3F;
  --pgl-green-mid: #1A7A52;
  --pgl-green-tint: #E8F2EC;
  --pgl-green-faint: #F4F9F6;
  --pgl-white: #FFFFFF;
  --pgl-body: #FAFAFA;
  --pgl-text: #1A1A1A;
  --pgl-text-muted: #5C5C5C;
  --pgl-text-soft: #8A8A8A;
  --pgl-border: #E5E5E5;
  --pgl-gold: #C9A84C;
  --pgl-divider: #EFEFEF;
  --pgl-serif: "Iowan Old Style", "Source Serif Pro", "PT Serif", Georgia, "Times New Roman", serif;
  --pgl-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --pgl-shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --pgl-shadow-card: 0 1px 2px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.06);
  --pgl-shadow-portrait: 0 10px 24px rgba(14, 94, 63, 0.22), 0 2px 6px rgba(0,0,0,0.10);
}

/* ──────────────────────────────────────────────────────────
   2.  RESET + BASE TYPOGRAPHY
   ────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; }

/* WP core alignment classes — needed for editor-aligned media in posts */
.alignleft  { float: left;  margin: 0.5em 1em 0.5em 0; }
.alignright { float: right; margin: 0.5em 0 0.5em 1em; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}

/* ──────────────────────────────────────────────────────────
   3.  SITE LOGO — base styles (used in header + footer)
   ────────────────────────────────────────────────────────── */
.site-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  display: inline-block;
}
.site-logo span { color: var(--gold); }

/* ──────────────────────────────────────────────────────────
   4.  SITE NAV — shared v3 nav, rendered on every template
       via header.php (and by page-pga.php's standalone-HTML
       pattern). GLOBAL — not namespaced under .pga-hub — so the
       same nav renders identically everywhere. Markup lives in
       partials/site-nav.php; design is v3 LOCKED.

       Coloring is body-class-driven (see section 4b below):
       body.theme-pga = green chrome, body.theme-root = B&W
       chrome. The base .site-nav rule keeps STRUCTURE only; the
       background/accent values here are a neutral fallback for
       any page that somehow lacks a theme class.
   ────────────────────────────────────────────────────────── */
.site-nav {
  background: #0a0a0a;
  color: #fff;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 36px;
  position: relative;
  z-index: 200;
  font-family: var(--font-chrome);
}
.site-nav .logo {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #fff;
  text-transform: none;
}
.site-nav .logo span { color: #c8c8c8; }
.site-nav .nav-links { display: flex; gap: 28px; }
.site-nav .nav-item { position: relative; }
.site-nav .nav-item > a {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
}
.site-nav .nav-item > a:hover { color: #fff; }
.site-nav .nav-item > a.active {
  color: #fff;
  border-bottom-color: #fff;
}
.site-nav .nav-item > a.coming-soon { opacity: 0.5; }
.site-nav .nav-item > a.coming-soon:hover { opacity: 0.65; }
.site-nav .nav-caret {
  font-size: 9px;
  opacity: 0.7;
  transition: transform 0.18s ease;
  display: inline-block;
}
.site-nav .nav-item.has-dropdown:hover .nav-caret,
.site-nav .nav-item.has-dropdown:focus-within .nav-caret {
  transform: rotate(180deg);
}
.site-nav .soon-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  padding: 2px 6px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Nav dropdown (PGA section menu) */
.site-nav .nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: -10px;
  min-width: 220px;
  background: #fff;
  border: 1px solid #e6e9e0;
  border-radius: 12px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 300;
}
.site-nav .nav-dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 22px;
  width: 12px;
  height: 12px;
  background: #fff;
  border-top: 1px solid #e6e9e0;
  border-left: 1px solid #e6e9e0;
  transform: rotate(45deg);
}
.site-nav .nav-item.has-dropdown:hover .nav-dropdown,
.site-nav .nav-item.has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
/* Invisible hover-bridge so the trigger→panel gap doesn't drop hover */
.site-nav .nav-item.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -10px;
  width: 240px;
  height: 14px;
  z-index: 250;
}
.site-nav .nav-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px 10px 17px;
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  border-radius: 7px;
  text-transform: none;
  letter-spacing: 0;
  position: relative;
  transition: color 0.12s ease;
}
.site-nav .nav-dropdown a::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 55%;
  border-radius: 2px;
  background: var(--nav-dropdown-accent, var(--gold));
  opacity: 0;
  transition: opacity 0.12s ease;
}
.site-nav .nav-dropdown a:hover::before,
.site-nav .nav-dropdown a.current::before {
  opacity: 1;
}
.site-nav .nav-dropdown a:hover,
.site-nav .nav-dropdown a.current {
  background: transparent;
  color: #1a1a1a;
}

/* ──────────────────────────────────────────────────────────
   4b. SITE NAV — section theme variants (body-class-driven).
       functions.php tags <body> with .theme-pga (PGA section:
       hub, Articles, the four tool pages, PGA posts) or
       .theme-root (everything else). Only the background and
       the two accent colors change between sports; structure,
       typography and the white dropdown panel are shared.
       NFL adds a body.theme-nfl block here when it ships.
   ────────────────────────────────────────────────────────── */

/* PGA section — deep-green chrome, lime accent */
body.theme-pga { --nav-dropdown-accent: var(--sec-accent); }
body.theme-pga .site-nav { background: var(--sec-primary-deep); }
body.theme-pga .site-nav .logo span { color: var(--sec-accent); }
body.theme-pga .site-nav .nav-item > a.active {
  color: var(--sec-accent);
  border-bottom-color: var(--sec-accent);
}

/* Root / cross-sport pages — neutral B&W chrome */
body.theme-root { background: #ffffff; --nav-dropdown-accent: var(--gold); }
body.theme-root .site-nav { background: #0a0a0a; }
body.theme-root .site-nav .logo span { color: var(--gold); }
body.theme-root .site-nav .nav-item > a.active {
  color: #fff;
  border-bottom-color: #fff;
}

/* NFL section — navy chrome, orange accent */
body.theme-nfl { --nav-dropdown-accent: var(--sec-accent); }
body.theme-nfl .site-nav { background: var(--sec-primary-deep); }
body.theme-nfl .site-nav .logo span { color: var(--sec-accent); }
body.theme-nfl .site-nav .nav-item > a.active {
  color: var(--sec-accent);
  border-bottom-color: var(--sec-accent);
}

/* ──────────────────────────────────────────────────────────
   5.  SITE FOOTER — shared across every template
   ────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
}
.site-footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.site-footer .footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.site-footer .footer-brand .site-logo {
  font-size: 18px;
  margin-bottom: 0.75rem;
  display: block;
}
.site-footer .footer-brand p {
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  line-height: 1.6;
  max-width: 300px;
}
.site-footer .footer-col h4 {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.site-footer .footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0;
}
.site-footer .footer-col ul li a {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}
.site-footer .footer-col ul li a:hover { color: var(--gold); }
.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}
.site-footer .footer-disclaimer {
  font-size: 0.75rem;
  color: #444;
  line-height: 1.6;
  max-width: 600px;
  font-style: italic;
}
.site-footer .footer-copy {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: #333;
  white-space: nowrap;
  text-transform: uppercase;
}

/* ──────────────────────────────────────────────────────────
   6.  RESPONSIVE — header + footer only
       (homepage section breakpoints stay inline in front-page.php)
   ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .site-footer .footer-top { grid-template-columns: 1fr 1fr; }
  .site-footer .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 720px) {
  .site-nav { padding-left: 16px; padding-right: 16px; gap: 18px; }
  .site-nav .nav-links { gap: 16px; }
  .site-nav .nav-item > a { font-size: 12px; }
  .site-nav .soon-badge { display: none; }
}
@media (max-width: 600px) {
  .site-footer .footer-top { grid-template-columns: 1fr; }
}

/* ──────────────────────────────────────────────────────────
   6b. MOBILE NAV HAMBURGER — ≤600px
       The .nav-links drawer collapses behind a 3-bar button.
       JS toggle in partials/site-nav.php adds .is-open.
   ────────────────────────────────────────────────────────── */

/* Hamburger button — hidden on desktop */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  margin-left: auto;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

/* Animate to X when open */
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Prevent body scroll while mobile nav overlay is open */
body.btr-nav-open { overflow: hidden; }

@media (max-width: 600px) {
  /* Show the burger, hide full nav by default */
  .nav-hamburger { display: flex; }
  .site-nav {
    flex-wrap: wrap;
    padding: 12px 16px;
    gap: 0;
    position: relative;
  }
  .site-nav .logo { flex: 1; }

  /* Nav links — hidden drawer, slides down when .is-open */
  .site-nav .nav-links {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease, padding 0.28s ease;
    padding: 0;
    /* Put the drawer below the logo + burger row */
    order: 3;
  }
  .site-nav .nav-links.is-open {
    max-height: 2000px;
    padding: 20px 0 40px;
  }

  /* Full-screen overlay — when drawer is open, pin site-nav to viewport.
     The nav's own dark background (theme-root: #0a0a0a, theme-pga: deep
     green) then covers the entire screen, so white text is always readable. */
  .site-nav:has(.nav-links.is-open) {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    overflow-y: auto;
    align-content: flex-start;
  }

  /* Ensure nav item text is explicitly white + full opacity in the overlay */
  .site-nav:has(.nav-links.is-open) .nav-item > a {
    color: #fff;
    opacity: 1;
  }
  .site-nav:has(.nav-links.is-open) .nav-item > a.coming-soon {
    opacity: 0.5;
  }

  /* Each nav item full-width */
  .site-nav .nav-item {
    width: 100%;
  }
  .site-nav .nav-item > a {
    display: block;
    font-size: 15px;
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    width: 100%;
  }
  .site-nav .nav-item:last-child > a {
    border-bottom: none;
  }
  .site-nav .soon-badge { display: inline; }

  /* PGA dropdown — show inline in the drawer (no hover needed on touch) */
  .site-nav .nav-caret { display: none; }
  .site-nav .nav-dropdown {
    position: static;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,0.06);
    border: none;
    border-radius: 0;
    padding: 0 0 4px 16px;
    margin-top: 0;
    min-width: 0;
    width: 100%;
    display: block;
  }
  .site-nav .nav-dropdown::before { display: none; }
  .site-nav .nav-dropdown a {
    font-size: 13px;
    padding: 9px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    width: 100%;
    display: block;
    /* Override desktop dark-on-white colors for the black mobile drawer */
    color: rgba(255,255,255,0.75);
    background: transparent;
    border-radius: 0;
  }
  .site-nav .nav-dropdown a:hover,
  .site-nav .nav-dropdown a:focus {
    background: rgba(255,255,255,0.08);
    color: #fff;
  }
  .site-nav .nav-dropdown a.current {
    background: rgba(255,255,255,0.06);
    color: var(--sec-accent, #d4ff3a);
  }
  .site-nav .nav-dropdown a.current::before {
    background: var(--sec-accent, #d4ff3a);
  }
  .site-nav .nav-dropdown a:last-child { border-bottom: none; }
  /* Override the hover-only show rule for desktop */
  .site-nav .nav-item.has-dropdown .nav-dropdown {
    display: block;
  }
}

/* ──────────────────────────────────────────────────────────
   7.  SKELETON FALLBACK — used by index.php until specialized
       templates (single.php, archive-pga.php, page-static.php, …)
       are built. Gives existing posts/pages basic readable styling.
   ────────────────────────────────────────────────────────── */
.skeleton-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem 5rem;
}
.skeleton-content article {
  border-bottom: 1px solid var(--border);
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
}
.skeleton-content article:last-child { border-bottom: none; }
.skeleton-content h1 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 2.2rem;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 0.75rem;
}
.skeleton-content h1 a { color: var(--text); transition: color 0.2s; }
.skeleton-content h1 a:hover { color: var(--gold); }
.skeleton-content h2 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.5rem;
  color: var(--gold);
  margin: 2rem 0 1rem;
}
.skeleton-content h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 1.2rem;
  color: var(--text);
  margin: 1.5rem 0 0.75rem;
}
.skeleton-content p { margin-bottom: 1rem; color: var(--text-soft); }
.skeleton-content a { color: var(--gold); }
.skeleton-content a:hover { color: var(--gold-dim); }
.skeleton-content ul, .skeleton-content ol { margin: 0 0 1rem 1.5rem; color: var(--text-soft); }
.skeleton-content blockquote {
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--muted-light);
}
.skeleton-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
.skeleton-content table th,
.skeleton-content table td {
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid var(--border-light);
  text-align: left;
}
.skeleton-content table th {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
}
.skeleton-content img { margin: 1.5rem 0; }
.skeleton-meta {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.skeleton-content .pagination,
.skeleton-content .nav-links {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ──────────────────────────────────────────────────────────
   ## ARTICLE TEMPLATE
   ────────────────────────────────────────────────────────── */
.article-page {
  background: var(--bg);
  padding: 3rem 1.5rem 4rem;
}
.article-page.has-hero {
  padding-top: 2.5rem;
}
.article-shell {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ── Article hero (legacy selector, kept for backward compat) ── */
.article-hero {
  position: relative;
  width: 100%;
  background: var(--bg);
}
.article-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Article intro — title-first layout ── */
.article-intro {
  margin-top: 2rem;
  margin-bottom: 1.25rem;
}

/* ── Byline row: meta + share button side-by-side ── */
.article-byline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-light);
}
.article-sep {
  opacity: 0.45;
}
.article-meta .article-date,
.article-meta .article-author,
.article-meta .article-read-time {
  color: var(--muted-light);
}
.article-meta .article-category {
  color: var(--gold);
}

/* ── Share button ── */
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: transparent;
  border: 1.5px solid currentColor;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-light);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.share-btn:hover,
.share-btn:focus-visible {
  background: var(--gold);
  border-color: var(--gold);
  color: #000;
}
.is-pga-article .share-btn {
  color: #0a4d2e;
  border-color: #0a4d2e;
}
.is-pga-article .share-btn:hover,
.is-pga-article .share-btn:focus-visible {
  background: #0a4d2e;
  border-color: #0a4d2e;
  color: #fff;
}

/* Suppress the duplicate h1 baked into btr-data-article content —
   single.php now renders the WP post title above the inline photo,
   so the in-content h1 from wrap_article is redundant. */
.article-body .btr-data-article h1 { display: none; }

/* ── Inline article media — clean course photo in the article body ── */
.article-media {
  margin: 0 0 2rem;
  width: 100%;
  line-height: 0; /* kills gap below inline img */
}
.article-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.article-media-caption {
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted-light);
  line-height: 1.4;
}
.is-pga-article .article-media-caption {
  color: #5a6b62;
}
.article-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 3.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
  margin: 1.2rem 0 1.75rem;
}
.article-body {
  color: var(--text-soft);
  font-family: var(--font-body);
}
.article-body p {
  margin-bottom: 1.35rem;
  line-height: 1.75;
}
.article-body h2,
.article-body h3,
.article-body h4 {
  font-family: var(--font-display);
  color: var(--gold);
  margin: 2.5rem 0 1rem;
  line-height: 1.2;
}
.article-body h2 {
  font-size: 2rem;
}
.article-body h3 {
  font-size: 1.5rem;
}
.article-body h4 {
  font-size: 1.2rem;
}
.article-body a {
  color: var(--gold);
  text-decoration: underline;
}
.article-body a:hover {
  color: var(--text);
}
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1rem 1rem 1.25rem;
  margin: 2rem 0;
  color: var(--muted-light);
  background: rgba(201, 168, 76, 0.05);
}
.article-body ul,
.article-body ol {
  margin: 0 0 1.5rem 1.5rem;
  color: var(--text-soft);
}
.article-body li {
  margin-bottom: 0.7rem;
}
.article-body code,
.article-body pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}
.article-body code {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
}
.article-body pre {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  padding: 1rem;
  overflow-x: auto;
  margin: 1.5rem 0;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}
.article-body th,
.article-body td {
  padding: 0.95rem 1rem;
  border: 1px solid var(--border-light);
  text-align: left;
}
.article-body th {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
}
.article-body img {
  margin: 1.75rem 0;
}
.article-body figure {
  margin: 2rem 0;
}
.article-body figcaption {
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 0.5rem;
}
.article-disclaimer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.article-disclaimer p {
  color: var(--muted-light);
  font-size: 0.9rem;
  line-height: 1.75;
}
@media (max-width: 720px) {
  .article-shell {
    padding: 0 0.75rem;
  }
  .article-title {
    font-size: 2.4rem;
  }
  .article-meta {
    flex-direction: column;
    align-items: flex-start;
  }
  /* .article-hero-content / .article-hero .article-title removed with overlay */
}

/* ──────────────────────────────────────────────────────────
   ## ARCHIVE PAGES
   ────────────────────────────────────────────────────────── */
.archive-section {
  padding: 4rem 2rem;
  background: var(--light-bg);
}
.archive-section .section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.archive-section .section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 1rem;
}
.archive-section .section-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-text);
}
.archive-section .section-title span {
  color: var(--gold-dim);
  margin-right: 0.65rem;
}
.archive-featured-card,
.archive-placeholder-card,
.archive-empty-note,
.archive-grid .article-card {
  text-decoration: none;
  color: inherit;
}
.archive-featured-card {
  display: block;
  padding: 2.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  margin-bottom: 2.5rem;
  transition: transform 0.2s, border-color 0.2s;
}
.archive-featured-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}
.archive-featured-card .card-tag {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-block;
}
.archive-featured-card .card-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.archive-featured-card .card-excerpt {
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 1.75rem;
}
.archive-featured-card .card-meta {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.archive-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.archive-grid .article-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, border-color 0.2s;
}
.archive-grid .article-card:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}
.archive-grid .card-tag {
  color: var(--gold);
  margin-bottom: 0.9rem;
}
.archive-grid .card-title {
  color: var(--text);
  margin-bottom: 1rem;
}
.archive-grid .card-excerpt {
  color: var(--muted);
  flex: 1;
  margin-bottom: 1.25rem;
}
.archive-empty-note,
.archive-placeholder-card {
  max-width: 720px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 2.5rem;
  text-align: center;
}
.archive-placeholder-card h2 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  margin-bottom: 1rem;
  color: var(--text);
}
.archive-placeholder-card p,
.archive-empty-note p {
  color: var(--muted);
  line-height: 1.8;
}
@media (max-width: 900px) {
  .archive-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 720px) {
  .archive-section {
    padding: 3rem 1rem;
  }
}

/* ──────────────────────────────────────────────────────────
   ## SHARED LAYOUT — used by front-page.php and sport landing pages
   ────────────────────────────────────────────────────────── */
.hero {
  background: var(--surface);
  border-bottom: 3px solid var(--gold);
  padding: 5rem 2rem 4.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 70%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(201,168,76,0.03) 39px,
      rgba(201,168,76,0.03) 40px
    );
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}
.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 760px;
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: normal;
  color: var(--gold);
}
.hero-subhead {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--muted-light);
  max-width: 520px;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  font-style: italic;
}
.hero-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  background: var(--gold);
  color: #0f0f0f;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: #dbb85a;
  transform: translateY(-1px);
}
.btn-ghost {
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.hero-tournament-badge {
  text-align: right;
  min-width: 170px;
}
.badge-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.4rem;
}
.badge-event {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.5rem;
  justify-content: flex-end;
}
.badge-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.section {
  padding: 4rem 2rem;
  background: var(--light-bg);
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 1rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-text);
}
.section-title span {
  color: var(--gold-dim);
  margin-right: 0.6rem;
}
.section-link {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dim);
  opacity: 0.9;
  transition: opacity 0.2s;
}
.section-link:hover {
  opacity: 1;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.article-card {
  background: #fff;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.article-card:hover {
  background: #f8f5ef;
  transform: translateY(-2px);
}
.article-card:hover .card-title {
  color: var(--gold-dim);
}
.card-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 0.9rem;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--light-text);
  margin-bottom: 0.9rem;
  transition: color 0.2s;
  flex: 1;
}
.card-excerpt {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--light-muted);
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.card-meta {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.card-meta::before {
  content: '';
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.proj-section {
  background: var(--surface);
  padding: 4rem 2rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proj-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.proj-table-wrap {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}
.proj-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  font-size: 0.9rem;
}
.proj-table thead tr {
  background: #111;
  border-bottom: 2px solid var(--gold);
}
.proj-table thead th {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.95rem 1rem;
  text-align: left;
  white-space: nowrap;
}
.proj-table tbody tr {
  border-bottom: 1px solid var(--border);
}
.proj-table tbody tr:nth-child(even) {
  background: var(--card-alt);
}
.proj-table tbody tr:hover {
  background: rgba(201,168,76,0.08);
}
.proj-table tbody td {
  padding: 0.95rem 1rem;
  color: var(--text);
}
.proj-table tbody td.right {
  text-align: right;
}
.proj-table tbody td.muted {
  color: var(--muted-light);
}
.tool-callout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--gold);
  margin-top: 1rem;
  text-decoration: none;
  color: inherit;
}
.tool-callout:hover {
  border-color: var(--gold);
}
.tool-callout-text {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.tool-callout-sub {
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
  font-family: var(--font-body);
  margin-top: 2px;
}
.tool-callout-button,
.tool-link {
  border: 1px solid var(--border);
  padding: 0.6rem 1.25rem;
  font-size: 12px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  background: transparent;
}
.tool-callout-button:hover,
.tool-link:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.proj-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.proj-footnote {
  color: var(--muted-light);
  font-size: 0.9rem;
  max-width: 700px;
}

/* =========================================================
   Projection table — header alignment + sort affordances
   Numeric column headers right-align to match cell data.
   Headers indicate sortability with cursor + hover state.
   ========================================================= */
.proj-table thead th.right {
  text-align: right;
}
.proj-table thead th[data-sort-key] {
  cursor: pointer;
  user-select: none;
  transition: color 0.15s ease;
}
.proj-table thead th[data-sort-key]:hover {
  color: #f6d77d;
}
.proj-table thead th[data-sort-key]::after {
  content: " \2195";
  opacity: 0.35;
  font-size: 0.85em;
  margin-left: 0.3rem;
  font-weight: 400;
}
.proj-table tbody td {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* =========================================================
   Full Projection Board v2 (Phase 5)
   Adds the timestamp row, segmented filter + search + CSV
   controls, the 7-column table layout, sort indicators
   (▲/▼ on the active column only), the muted BTR-odds
   parenthetical, and the methodology footer. The base
   .proj-table styling above still applies.
   ========================================================= */

.proj-meta-row {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin: -1.25rem 0 1.5rem;
  line-height: 1.5;
}
.proj-meta-row strong {
  color: var(--text);
  font-weight: 600;
}
.proj-meta-row .proj-meta-sep {
  margin: 0 0.5rem;
  opacity: 0.6;
}
.proj-meta-row .proj-meta-placeholder {
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  color: var(--muted-light);
}

.proj-controls-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.proj-controls-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.proj-filter-buttons {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.proj-filter-btn {
  background: transparent;
  border: 0;
  border-right: 1px solid var(--border);
  padding: 0 1rem;
  height: 36px;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.proj-filter-btn:last-child { border-right: 0; }
.proj-filter-btn:hover {
  color: var(--gold);
}
.proj-filter-btn.is-active {
  background: var(--gold);
  color: #111;
}

.proj-search {
  height: 36px;
  width: 200px;
  padding: 0 0.75rem;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  border-radius: 4px;
  transition: border-color 0.15s;
}
.proj-search::placeholder { color: var(--muted); }
.proj-search:focus {
  outline: none;
  border-color: var(--gold);
}

.proj-csv-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  height: 36px;
  padding: 0 1rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition: border-color 0.15s, color 0.15s;
}
.proj-csv-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.proj-csv-btn svg {
  width: 14px;
  height: 14px;
  display: block;
}

/* 7-column layout: POS narrow, PLAYER flex, the rest fixed-width
   so the "18.2% (+450)" cell never wraps. */
.proj-table--v2 th:nth-child(1),
.proj-table--v2 td:nth-child(1) {
  width: 56px;
  text-align: center;
  font-weight: 600;
  color: var(--gold);
}
.proj-table--v2 th:nth-child(3),
.proj-table--v2 td:nth-child(3),
.proj-table--v2 th:nth-child(4),
.proj-table--v2 td:nth-child(4) {
  width: 130px;
}
.proj-table--v2 th:nth-child(5),
.proj-table--v2 td:nth-child(5),
.proj-table--v2 th:nth-child(6),
.proj-table--v2 td:nth-child(6),
.proj-table--v2 th:nth-child(7),
.proj-table--v2 td:nth-child(7) {
  width: 130px;
  white-space: nowrap;
}

/* Sort indicators: hide the default ↕ on inactive columns; show
   ▼ on descending-sorted, ▲ on ascending-sorted. */
.proj-table--v2 thead th[data-sort-key]::after {
  content: "";
  margin: 0;
}
.proj-table--v2 thead th[data-sort-key].is-sorted-desc::after {
  content: " ▼";
  font-size: 0.75em;
  margin-left: 0.3rem;
  opacity: 1;
  color: var(--gold);
}
.proj-table--v2 thead th[data-sort-key].is-sorted-asc::after {
  content: " ▲";
  font-size: 0.75em;
  margin-left: 0.3rem;
  opacity: 1;
  color: var(--gold);
}

.proj-table--v2 .btr-odds {
  color: var(--muted);
  font-weight: 400;
  margin-left: 0.15rem;
}

.proj-no-results {
  text-align: center;
  padding: 2.5rem 1rem;
  color: var(--muted-light);
  font-style: italic;
}

.proj-methodology {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted-light);
  max-width: 900px;
  margin: 1.5rem auto 0;
  line-height: 1.6;
  text-align: center;
}

/* Promote .score-negative / .score-muted to global utilities so
   .proj-table can reuse them. The existing .lb-table-scoped rules
   keep precedence on the leaderboard via specificity. */
.score-negative { color: var(--gold, #C9A84C); }
.score-muted    { color: var(--muted, #999); }

@media (max-width: 720px) {
  .proj-meta-row {
    margin: -1.5rem 0 1.25rem;
    font-size: 11px;
  }
  .proj-controls-row {
    flex-wrap: wrap;
    gap: 0.6rem;
  }
  .proj-controls-right {
    width: 100%;
    justify-content: space-between;
  }
  .proj-search {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
  }
  .proj-table--v2 th:nth-child(3),
  .proj-table--v2 td:nth-child(3),
  .proj-table--v2 th:nth-child(4),
  .proj-table--v2 td:nth-child(4),
  .proj-table--v2 th:nth-child(5),
  .proj-table--v2 td:nth-child(5),
  .proj-table--v2 th:nth-child(6),
  .proj-table--v2 td:nth-child(6),
  .proj-table--v2 th:nth-child(7),
  .proj-table--v2 td:nth-child(7) {
    width: auto;
    min-width: 110px;
  }
}

/* =========================================================
   Live Leaderboard table
   Mirrors .proj-table styling for visual consistency between
   /pga/projections and /pga/leaderboard.
   ========================================================= */

.lb-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;   /* enforces consistent column widths */
  font-family: var(--font-stack, system-ui, -apple-system, "Segoe UI", sans-serif);
  /* Match .proj-table base so the player-row text on /leaderboard/ and
     /pga/projections/ reads identically. */
  font-size: 0.9rem;
  color: var(--text, #f5f5f5);
  background: var(--surface, #1a1a1a);
}

.lb-table thead {
  background: transparent;
}

.lb-table th {
  text-align: left;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold, #C9A84C);
  padding: 0.85rem 1rem;
  border-bottom: 2px solid var(--gold, #C9A84C);
  white-space: nowrap;
  position: sticky;
  top: 0;
  background: var(--surface, #1a1a1a);
  z-index: 1;
}

.lb-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: middle;
}

.lb-table tbody tr:nth-child(even) td {
  background: rgba(255, 255, 255, 0.02);
}

.lb-table tbody tr:hover td {
  background: rgba(201, 168, 76, 0.06);
}

.lb-table th.right,
.lb-table td.right {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}

/* Position column — narrow, fixed width */
.lb-table th:first-child,
.lb-table td:first-child {
  width: 4rem;
  font-weight: 600;
  color: var(--gold, #C9A84C);
}

/* Player column — takes remaining space. Inherits default font-weight
   (400) so the row reads the same as .proj-table on the projections
   page. */

/* Today (3) and Thru (4) — fixed narrow widths, right-aligned. */
.lb-table th:nth-child(3),
.lb-table td:nth-child(3),
.lb-table th:nth-child(4),
.lb-table td:nth-child(4) {
  width: 60px;
}

/* Total column (5) — slightly wider for ±NN with gold tint. */
.lb-table th:nth-child(5),
.lb-table td:nth-child(5) {
  width: 72px;
  font-weight: 600;
}

/* Negative total-to-par (e.g. −15) renders gold to match the brand
   accent; positive totals stay default-color so the leader-vs-field
   contrast is obvious at a glance. Used on per-round cells if we ever
   stop converting to raw strokes; right now only the Total column
   produces negatives. */
.lb-table .score-negative {
  color: var(--gold, #C9A84C);
}

/* Em-dash placeholder for rounds the player hasn't played. */
.lb-table .score-muted {
  color: var(--muted, #999);
}

.lb-footnote {
  font-size: 0.8rem;
  color: var(--muted, #999);
  font-style: italic;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .lb-table th,
  .lb-table td {
    padding: 0.55rem 0.6rem;
    font-size: 0.88rem;
  }
  .lb-table th:first-child,
  .lb-table td:first-child {
    width: 3rem;
  }
}

/* =========================================================
   Section palette — the unified --sec-* token set
   ---------------------------------------------------------
   ONE token set, re-themed per section. Every PGA page — the
   hub (page-pga.php) and the four tool pages — carries the
   body class .theme-pga (emitted by the body_class filter in
   functions.php), so body.theme-pga is the single canonical
   palette container. The hub's old --pgh-* tokens and the
   tool pages' old --pgl-* tokens (which already held byte-
   identical values) were collapsed into this one --sec-* set
   on 2026-05-19 so that color is the ONLY thing that varies
   between sections.

   To theme a future section, add a sibling block —
   body.theme-nfl { --sec-*: … } — and nothing else changes.
   The --sec- prefix is deliberate: bare names (--bg/--text/
   --surface/--border/--muted) already exist in :root as the
   dark BTR chrome tokens that the shared footer depends on,
   so the section palette must not reuse them.
   ========================================================= */
body.theme-pga {
  --sec-bg:            #ffffff;
  --sec-surface:       #ffffff;
  --sec-surface-alt:   #f7faf3;
  --sec-row-open:      #eaf3e0;
  --sec-text:          #0a1a12;
  --sec-muted:         #5a6b62;
  --sec-primary:       #0a4d2e;
  --sec-primary-deep:  #063820;
  --sec-accent:        #d4ff3a;
  --sec-accent-2:      #ff7a1a;
  --sec-border:        #e6e9e0;
  --sec-border-strong: #c7d3c0;
  --sec-good:          #1a7f3c;
  --sec-bad:           #c43232;
  --sec-progress-bg:   #fff7eb;
  --sec-grad-hero:     linear-gradient(135deg, #0a4d2e 0%, #1f7a4a 100%);
  --sec-grad-4:        linear-gradient(135deg, #063820 0%, #0a4d2e 100%);
  --sec-hero-overlay:  linear-gradient(180deg, rgba(6,56,32,0.15) 0%, rgba(6,56,32,0.55) 55%, rgba(6,56,32,0.95) 100%);
}

body.theme-nfl {
  --sec-bg:            #ffffff;
  --sec-surface:       #ffffff;
  --sec-surface-alt:   #f2f5fb;
  --sec-row-open:      #e8eef8;
  --sec-text:          #0a1220;
  --sec-muted:         #4a5a72;
  --sec-primary:       #1a3a6e;
  --sec-primary-deep:  #0f2347;
  --sec-accent:        #e87722;
  --sec-accent-2:      #f5a623;
  --sec-border:        #dde3ed;
  --sec-border-strong: #c0cad8;
  --sec-good:          #1a7f3c;
  --sec-bad:           #c43232;
  --sec-progress-bg:   #fff8f2;
  --sec-grad-hero:     linear-gradient(135deg, #0f2347 0%, #1a3a6e 100%);
  --sec-grad-4:        linear-gradient(135deg, #0a1228 0%, #0f2347 100%);
  --sec-hero-overlay:  linear-gradient(180deg, rgba(15,35,71,0.15) 0%, rgba(15,35,71,0.55) 55%, rgba(15,35,71,0.95) 100%);
}

/* The four tool pages also carry .pga-fairway — paint the page surface. */
body.pga-fairway {
  background: var(--sec-surface);
}

/* =========================================================
   PGA Leaderboard — table + expand panel
   .pga-leaderboard-root is the horizontal-scroll wrapper for
   the table INSIDE the .widget card (redesign 2026-05-15). The
   card chrome — border, radius, shadow — now belongs to .widget;
   this element only carries the table surface + overflow scroll.
   It consumes the --sec-* tokens from body.pga-fairway.
   ========================================================= */
.pga-leaderboard-root {
  background: var(--sec-surface);
  color: var(--sec-text);
  overflow-x: auto;
}

/* Override the dark .lb-table surface for the Fairway-scoped table. */
.pga-leaderboard-root .lb-table {
  color: var(--sec-text);
  background: var(--sec-surface);
}
.pga-leaderboard-root .lb-table thead { background: transparent; }
.pga-leaderboard-root .lb-table th {
  color: var(--sec-primary);
  background: var(--sec-surface);
  border-bottom: 2px solid var(--sec-primary);
}
.pga-leaderboard-root .lb-table td {
  border-bottom: 1px solid var(--sec-border);
  vertical-align: middle;
}
.pga-leaderboard-root .lb-table tbody tr:nth-child(4n+3) td {
  /* 4n+3 = every other PLAYER row (the panel row is 4n+4). Keeps
     zebra striping consistent now that each player owns 2 <tr>. */
  background: var(--sec-surface-alt);
}
.pga-leaderboard-root .lb-table tbody tr.lb-row { cursor: pointer; }
.pga-leaderboard-root .lb-table tbody tr.lb-row:hover td {
  background: #eef4e6;
}
.pga-leaderboard-root .lb-table tbody tr.lb-row.is-open td {
  background: var(--sec-row-open);
  border-bottom-color: var(--sec-primary);
}
.pga-leaderboard-root .lb-table td:first-child {
  color: var(--sec-primary);
  font-weight: 700;
}
.pga-leaderboard-root .lb-table .score-negative {
  color: var(--sec-accent-2);
  font-weight: 700;
}
.pga-leaderboard-root .lb-table .score-muted {
  color: var(--sec-muted);
}
/* Tee time in the Thru column — shown before a player tees off, then
   the column flips to the hole-through number. Italic + muted +
   slightly smaller so "8:45 AM" reads distinct from "8" at a glance. */
body.pga-fairway .lb-tee-time {
  font-style: italic;
  color: var(--sec-muted);
  font-size: 0.92em;
  font-variant-numeric: tabular-nums;
}
/* Player name + initials avatar treatment for the light surface.
   Weight matches the projections / odds player-name convention
   ("Last, First", semi-bold) so the name cell reads identically
   across all three tool tables. */
.pga-leaderboard-root .lb-player-name {
  color: var(--sec-text);
  font-weight: 600;
}
.pga-leaderboard-root .ldb-headshot {
  background: rgba(10, 77, 46, 0.08);
}
.pga-leaderboard-root .ldb-initials {
  background: rgba(10, 77, 46, 0.12);
  color: var(--sec-primary-deep);
}

/* ----- Expand panel ----- */
.pga-leaderboard-root .lb-panel-row > td {
  padding: 0;
  background: var(--sec-surface-alt);
  border-bottom: 1px solid var(--sec-border);
}
.lb-panel-content {
  padding: 20px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.lb-panel-top {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 2fr;
  gap: 24px;
  align-items: stretch;
}
.lb-panel-probs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.lb-panel-stat {
  background: #ffffff;
  border: 1px solid var(--sec-border);
  border-radius: 6px;
  padding: 12px 14px;
}
.lb-panel-stat--cfs {
  border-left: 3px solid var(--sec-primary);
}
.lb-panel-stat-label {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sec-muted);
  margin-bottom: 6px;
}
.lb-panel-stat-value {
  font-family: Oswald, sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--sec-primary-deep);
  line-height: 1.1;
}
.lb-panel-stat-sub {
  margin-top: 4px;
  font-size: 11px;
  color: var(--sec-muted);
  letter-spacing: 0.04em;
}
.lb-panel-muted { color: var(--sec-muted); }
.lb-panel-paren { color: var(--sec-muted); font-size: 0.9em; }

/* ----- Round-by-round SG table ----- */
.lb-panel-rounds-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.85rem;
  color: var(--sec-text);
}
/* Score: narrow numeric column. */
.lb-panel-rounds-table th:nth-child(2),
.lb-panel-rounds-table td:nth-child(2) { width: 86px; }
/* Five SG columns (OTT/APP/ARG/PUTT/TOT): equal-width, clustered. */
.lb-panel-rounds-table th:nth-child(n+3),
.lb-panel-rounds-table td:nth-child(n+3) { width: 96px; }
/* SG:TOT — subtle left separator marks it as the rollup of the four. */
.lb-panel-rounds-table th:nth-child(7),
.lb-panel-rounds-table td:nth-child(7) {
  border-left: 1px solid var(--sec-border);
  padding-left: 18px;
}
.lb-panel-rounds-table thead th {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--sec-muted);
  font-weight: 600;
  text-align: left;
  padding: 6px 10px;
  border-bottom: 1px solid var(--sec-border);
  background: transparent;
}
.lb-panel-rounds-table th.right,
.lb-panel-rounds-table td.right {
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}
.lb-panel-rounds-table td {
  padding: 8px 10px;
  border-bottom: 1px solid #eef2e6;
}
.lb-panel-rounds-table .lb-rd-label {
  font-weight: 600;
  color: var(--sec-primary-deep);
  /* ROUND column has no fixed width — absorbs leftover table width. */
  width: auto;
}
.lb-panel-rounds-table tr.lb-rd-tournament td {
  border-top: 2px solid var(--sec-primary);
  background: rgba(212, 255, 58, 0.08);
  font-weight: 600;
}
.lb-sg-pos  { color: #1f7a4a; }
.lb-sg-neg  { color: var(--sec-accent-2); }
.lb-sg-zero { color: var(--sec-muted); }

@media (max-width: 720px) {
  .lb-panel-content { padding: 14px 12px 16px; }
  .lb-panel-top { grid-template-columns: 1fr; gap: 14px; }
  .lb-panel-probs { gap: 10px; }
  .lb-panel-stat { padding: 10px 12px; }
  .lb-panel-stat-value { font-size: 18px; }
  .lb-panel-rounds-table { font-size: 0.78rem; }
  .lb-panel-rounds-table thead th,
  .lb-panel-rounds-table td { padding: 6px 6px; }
  .lb-panel-rounds-table .lb-rd-label { width: auto; }
}

/* =========================================================
   PGA Fairway hero — body.pga-fairway page surface
   ---------------------------------------------------------
   Re-paints the canonical tool-page hero (logo card + title +
   subtitle + event info strip + meta row) for the Fairway
   palette. The HERO MARKUP is unchanged — page-pga-leaderboard.php
   still emits .page-header / btr_pga_event_logo_inline() /
   btr_pga_event_info_strip() exactly as before. Only the colors
   shift, driven by body.pga-fairway being present.
   ========================================================= */
body.pga-fairway .full-width-page {
  background: var(--sec-surface);
  /* Shared chrome typography — the same sans-serif the PGA hub uses
     (.pga-hub-root). Without this the tool-page content fell through
     to the site's serif --font-body, drifting serif-vs-sans from the
     hub. Scoped to .full-width-page so the shared serif footer/nav
     are untouched. */
  font-family: var(--font-chrome);
  color: var(--sec-text);
}

body.pga-fairway .page-title { color: var(--sec-primary-deep); }
body.pga-fairway .page-subtitle { color: var(--sec-muted); }
body.pga-fairway .page-header--with-logo .event-name-fallback-inline {
  color: var(--sec-primary-deep);
}

/* Tournament logo sits on a deep-green card — mirrors the hub's
   tournament logo card treatment. The helper emits a bare <img>;
   the card is pure CSS (background + padding + radius on the img). */
body.pga-fairway .page-header--with-logo .event-logo-inline {
  background: var(--sec-primary);
  padding: 14px;
  border-radius: 10px;
  box-sizing: border-box;
}

/* Event info strip — deep-green text on the white surface. */
body.pga-fairway .btr-event-info,
body.pga-fairway .btr-event-info.btr-header-pipe,
body.pga-fairway .btr-event-info a {
  color: var(--sec-primary);
}

/* Meta row — muted green on white (the dark-theme defaults use
   near-white text that would vanish on the Fairway surface). */
body.pga-fairway .proj-meta-row { color: var(--sec-muted); }
body.pga-fairway .proj-meta-row strong { color: var(--sec-primary-deep); }

/* Footnote below the table — green-muted text + visible border. */
body.pga-fairway .lb-footnote {
  color: var(--sec-muted);
  border-top-color: var(--sec-border);
}

/* =========================================================
   PGA tool-page redesign — compact hero, SG legend, search
   toolbar, and the hub-style green widget header.
   ---------------------------------------------------------
   Shipped 2026-05-15 from docs/mockups/tool_page_hero_v1_locked.html.
   .tool-page-hero / .sg-legend / .toolbar / .widget* are
   deliberately generic (not leaderboard-prefixed) — Projections /
   Odds / Matchup Tool adopt the same partials in later conversion
   sessions. Everything is scoped under body.pga-fairway so the
   dark BTR pages are untouched.
   ========================================================= */

/* ----- Compact hero (parts/tool-page-hero.php) ----- */
body.pga-fairway .tool-page-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 4px 0 18px;
}
body.pga-fairway .hero-logo {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--sec-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
body.pga-fairway .hero-logo-text {
  color: var(--sec-accent);
  font-family: var(--font-chrome);
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.02em;
  line-height: 1;
}
/* Event-logo variant — the tournament badge replaces the static "PGA"
   card. White backing + border because the tournament logos are dark
   artwork on their own white field; the deep-green card would render
   them dark-on-dark. Slightly larger than the text card so the badge
   stays legible. */
body.pga-fairway .hero-logo--event {
  width: 100px;
  height: 100px;
  background: #fff;
  border: 1px solid var(--sec-border-strong);
  padding: 6px;
  box-sizing: border-box;
}
body.pga-fairway .hero-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
}
body.pga-fairway .hero-text { flex: 1; min-width: 0; }
body.pga-fairway .hero-title {
  font-family: var(--font-chrome);
  font-weight: 700;
  font-size: 24px;
  color: var(--sec-primary);
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.15;
}
body.pga-fairway .hero-sub {
  font-size: 13.5px;
  color: var(--sec-muted);
  margin: 3px 0 0;
  line-height: 1.4;
  max-width: 640px;
}

/* ----- SG legend (parts/sg-legend.php) — two centered rows ----- */
body.pga-fairway .sg-legend {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  padding: 9px 14px;
  background: var(--sec-surface-alt);
  border: 1px solid var(--sec-border);
  border-radius: 6px;
  margin-bottom: 14px;
}
body.pga-fairway .sg-legend-label {
  font-family: var(--font-chrome);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sec-primary);
  flex-shrink: 0;
}
body.pga-fairway .sg-legend-items {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: var(--sec-muted);
}
body.pga-fairway .sg-legend-item {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
body.pga-fairway .sg-legend-item strong {
  color: var(--sec-text);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
body.pga-fairway .sg-legend-sep { color: var(--sec-border-strong); }

/* ----- Search toolbar ----- */
body.pga-fairway .toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
body.pga-fairway .search {
  position: relative;
  flex: 0 1 320px;
}
body.pga-fairway .search input {
  width: 100%;
  height: 38px;
  /* right padding clears the 22px clear-button at right:8px */
  padding: 0 36px 0 38px;
  border: 1px solid var(--sec-border-strong);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: var(--sec-surface);
  color: var(--sec-text);
  transition: border-color 0.15s, box-shadow 0.15s;
}
body.pga-fairway .search input::placeholder { color: var(--sec-muted); }
body.pga-fairway .search input:focus {
  outline: none;
  border-color: var(--sec-primary);
  box-shadow: 0 0 0 3px rgba(10, 77, 46, 0.12);
}
body.pga-fairway .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--sec-muted);
  pointer-events: none;
}
body.pga-fairway .search-clear {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--sec-border);
  color: var(--sec-text);
  border: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
  padding: 0;
  display: none;
}
body.pga-fairway .search.has-value .search-clear { display: block; }
body.pga-fairway .search-result-count {
  font-size: 12.5px;
  color: var(--sec-muted);
}
body.pga-fairway .search-result-count strong {
  color: var(--sec-primary);
  font-weight: 600;
}

/* ----- Table widget card (parts/widget-header.php) -----
   The green/silver two-tier header itself (.widget-head /
   .widget-subhead) is the SHARED component — its CSS lives under
   body.theme-pga (see "Two-tier widget header" below), so the four
   tool pages and the PGA hub render one identical widget chrome. */
body.pga-fairway .widget {
  /* Card chrome matches the PGA hub's widget cards exactly
     (.leaderboard-widget / .odds-widget / .widget-card): 14px
     radius, --sec-border hairline, no shadow. */
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--sec-border);
  background: var(--sec-surface);
}

/* ----- Table head inside the widget — restyle + sortable columns ----- */
body.pga-fairway .widget .lb-table { margin: 0; }
body.pga-fairway .widget .lb-table thead th {
  position: static;
  text-align: left;
  font-family: var(--font-chrome);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sec-muted);
  padding: 12px 16px;
  background: var(--sec-surface);
  border-bottom: 1px solid var(--sec-border);
}
body.pga-fairway .widget .lb-table thead th.right { text-align: right; }
/* Sortable headers — cursor + active state only; no DOM sort icons.
   Active sort column shown via a small ::after arrow. Tables are
   sortable by clicking any underlined header. */
body.pga-fairway .widget .lb-table thead th.sortable {
  cursor: pointer;
  user-select: none;
  transition: color 0.12s, background 0.12s;
}
body.pga-fairway .widget .lb-table thead th.sortable:hover {
  color: var(--sec-primary);
  background: var(--sec-surface-alt);
}
body.pga-fairway .widget .lb-table thead th.sort-asc,
body.pga-fairway .widget .lb-table thead th.sort-desc {
  color: var(--sec-primary);
}
body.pga-fairway .widget .lb-table thead th.sort-asc::after  { content: none; }
body.pga-fairway .widget .lb-table thead th.sort-desc::after { content: none; }

/* ===== Consistent column widths =====
   table-layout: fixed (set on .lb-table) lets these widths hold firm.
   Col 1 = Pos (narrow). Col 2 = Player (auto, fills remaining space).
   Cols 3+ = all score/stat columns — identical width whether the table
   has 3 (Today/Thru/Total), 5 (live), or 7 (archive R1-R4-Total) cols. */
body.pga-fairway .widget .lb-table th:nth-child(1),
body.pga-fairway .widget .lb-table td:nth-child(1) { width: 36px; }
body.pga-fairway .widget .lb-table th:nth-child(n+3),
body.pga-fairway .widget .lb-table td:nth-child(n+3) { width: 52px; }
@media (max-width: 560px) {
  body.pga-fairway .widget .lb-table th:nth-child(n+3),
  body.pga-fairway .widget .lb-table td:nth-child(n+3) { width: 44px; }
}

/* Oswald numerals for the Pos + Total cells (mockup typography).
   Oswald is reserved for these table numbers; the hero + widget
   header use Inter. The .score-negative span inside .total keeps
   its orange color via the existing rule. */
body.pga-fairway .widget .lb-table td.pos {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--sec-primary);
}
body.pga-fairway .widget .lb-table td.total {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

/* ----- Mobile ----- */
@media (max-width: 720px) {
  body.pga-fairway .tool-page-hero { gap: 12px; }
  body.pga-fairway .hero-title { font-size: 20px; }
  body.pga-fairway .hero-sub { font-size: 13px; }
  body.pga-fairway .toolbar { flex-wrap: wrap; }
  body.pga-fairway .search { flex: 1 1 100%; }
  body.pga-fairway .widget .lb-table thead th { padding: 10px 10px; }
}
@media (max-width: 480px) {
  /* Compact tool-page hero — shared across leaderboard/odds/projections/matchup */
  body.pga-fairway .tool-page-hero { gap: 10px; padding-bottom: 12px; }
  body.pga-fairway .hero-logo { width: 38px; height: 38px; border-radius: 8px; }
  body.pga-fairway .hero-logo-text { font-size: 12px; }
  body.pga-fairway .hero-logo--event { width: 64px; height: 64px; padding: 4px; }
  body.pga-fairway .hero-title { font-size: 17px; }
  body.pga-fairway .hero-sub { font-size: 12px; }
  /* Leaderboard table: tighter cells at very small screens */
  body.pga-fairway .widget .lb-table thead th { padding: 8px 6px; font-size: 10px; }
}

/* =========================================================
   PGA Odds Board — Fairway palette
   ---------------------------------------------------------
   Shipped 2026-05-15 (page-pga-odds.php Fairway conversion +
   content restructure). Default four-column view per market —
   Player | Best Odds | BTR Fair | Value — with a per-row
   expand panel carrying the four-book breakdown, the aggregate
   trajectory chart, and four per-book sparklines. All scoped
   under body.pga-fairway; reuses the --sec-* tokens. The hero,
   search toolbar (.toolbar / .search) and widget chrome
   (.widget / .widget-header) are shared with the leaderboard —
   only the market tabs, table cells and expand panel are new.
   ========================================================= */

/* ----- Market tabs ----- */
body.pga-fairway .odds-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--sec-border);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
body.pga-fairway .odds-tab {
  padding: 11px 22px;
  font-family: var(--font-chrome);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sec-muted);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
body.pga-fairway .odds-tab:hover { color: var(--sec-text); }
body.pga-fairway .odds-tab.is-active {
  color: var(--sec-primary);
  border-bottom-color: var(--sec-accent);
}

/* ----- Table widget ----- */
body.pga-fairway .odds-tablewrap { overflow-x: auto; }
body.pga-fairway .odds-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-stack, system-ui, -apple-system, "Segoe UI", sans-serif);
  font-size: 0.9rem;
  color: var(--sec-text);
  background: var(--sec-surface);
}
body.pga-fairway .odds-table thead th {
  text-align: left;
  font-family: var(--font-chrome);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sec-muted);
  padding: 12px 16px;
  background: var(--sec-surface);
  border-bottom: 1px solid var(--sec-border);
  white-space: nowrap;
}
body.pga-fairway .odds-table thead th.right { text-align: right; }
body.pga-fairway .odds-table thead th.sortable {
  cursor: pointer;
  user-select: none;
  transition: color 0.12s, background 0.12s;
}
body.pga-fairway .odds-table thead th.sortable:hover {
  color: var(--sec-primary);
  background: var(--sec-surface-alt);
}
body.pga-fairway .odds-table thead th .sort-icon {
  display: inline-flex;
  flex-direction: column;
  margin-left: 5px;
  vertical-align: middle;
  line-height: 0.6;
  opacity: 0.4;
  transition: opacity 0.12s;
}
body.pga-fairway .odds-table thead th.sortable:hover .sort-icon { opacity: 0.8; }
body.pga-fairway .odds-table thead th .sort-icon span {
  font-size: 7px;
  color: currentColor;
}
body.pga-fairway .odds-table thead th.sort-asc,
body.pga-fairway .odds-table thead th.sort-desc { color: var(--sec-primary); }
body.pga-fairway .odds-table thead th.sort-asc .sort-icon,
body.pga-fairway .odds-table thead th.sort-desc .sort-icon { opacity: 1; }
body.pga-fairway .odds-table thead th.sort-asc .sort-icon span:first-child { color: var(--sec-accent-2); }
body.pga-fairway .odds-table thead th.sort-asc .sort-icon span:last-child  { color: var(--sec-border-strong); }
body.pga-fairway .odds-table thead th.sort-desc .sort-icon span:first-child { color: var(--sec-border-strong); }
body.pga-fairway .odds-table thead th.sort-desc .sort-icon span:last-child  { color: var(--sec-accent-2); }

body.pga-fairway .odds-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--sec-border);
  vertical-align: middle;
}
body.pga-fairway .odds-table td.right { text-align: right; }
/* Data columns shrink to their content so the Player column absorbs the
   remaining table width -- gives the "Last, First" name room to render on
   one line in the 5-column default view without horizontal overflow. The
   1% trick + nowrap collapses each numeric cell to its intrinsic width;
   trimmed horizontal padding pulls a few more pixels back from each. */
body.pga-fairway .odds-table thead th.right,
body.pga-fairway .odds-table td.right {
  width: 1%;
  white-space: nowrap;
  padding-left: 10px;
  padding-right: 12px;
}
/* Zebra: each player owns 2 <tr> (row + panel); 4n+3 = every other
   player row, matching the leaderboard's striping convention. */
body.pga-fairway .odds-table tbody tr:nth-child(4n+3) td { background: var(--sec-surface-alt); }
body.pga-fairway .odds-table tbody tr.odds-row { cursor: pointer; }
body.pga-fairway .odds-table tbody tr.odds-row:hover td { background: #eef4e6; }
body.pga-fairway .odds-table tbody tr.odds-row.is-open td {
  background: var(--sec-row-open);
  border-bottom-color: var(--sec-primary);
}
body.pga-fairway .odds-table tbody tr.odds-row.is-open .odds-player-name { color: var(--sec-primary-deep); }
body.pga-fairway .odds-table-placeholder {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--sec-muted);
  font-style: italic;
}

/* ----- Player cell ----- */
body.pga-fairway .odds-player-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}
body.pga-fairway .odds-headshot,
body.pga-fairway .odds-initials {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  flex-shrink: 0;
  box-sizing: border-box;
}
body.pga-fairway .odds-headshot {
  object-fit: cover;
  background: rgba(10, 77, 46, 0.08);
}
body.pga-fairway .odds-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 77, 46, 0.12);
  color: var(--sec-primary-deep);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.02em;
}
body.pga-fairway .odds-player-name {
  color: var(--sec-text);
  font-weight: 600;
  white-space: nowrap;
}

/* ----- Open cell — DraftKings' opening line, muted reference ----- */
body.pga-fairway .odds-cell-open {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--sec-muted);
}

/* ----- DraftKings cell — current line, single-book market reference ----- */
body.pga-fairway .odds-dk-val {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--sec-text);
  line-height: 1.1;
}

/* ----- BTR Fair cell — muted reference price ----- */
body.pga-fairway .odds-cell-btr {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--sec-muted);
}

/* ----- Value cell — single-line "+N.N%" so the column fits the
   fixed mobile width. Replaces the prior two-line .odds-value-val
   / .odds-value-sub treatment. ----- */
body.pga-fairway .odds-value-pct {
  color: var(--sec-accent-2);
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}
body.pga-fairway .odds-mute { color: var(--sec-border-strong); }

/* ----- Result cell — post-tournament finishing position + score ----- */
body.pga-fairway .odds-result-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
}
body.pga-fairway .odds-result {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--sec-text);
  line-height: 1.1;
}
body.pga-fairway .odds-result-score {
  font-size: 12px;
  color: var(--sec-muted);
  line-height: 1.2;
}
/* Center-aligned th / td for complete view */
body.pga-fairway .odds-table thead th.center { text-align: center; }
body.pga-fairway .odds-table td.center { text-align: center; }

/* ----- Expand panel ----- */
body.pga-fairway .odds-panel-row > td {
  padding: 0;
  background: var(--sec-surface-alt);
  border-bottom: 1px solid var(--sec-border);
}
body.pga-fairway .odds-panel {
  padding: 18px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body.pga-fairway .odds-panel-label {
  font-family: var(--font-chrome);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sec-primary);
  margin-bottom: 10px;
}
body.pga-fairway .odds-panel-headrow {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
body.pga-fairway .odds-panel-headrow .odds-panel-label { margin-bottom: 0; }
body.pga-fairway .odds-panel-range {
  font-size: 10.5px;
  color: var(--sec-muted);
  letter-spacing: 0.04em;
}

/* Four-book breakdown mini-table */
body.pga-fairway .odds-book-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}
body.pga-fairway .odds-book-table thead th {
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sec-muted);
  padding: 6px 12px;
  border-bottom: 1px solid var(--sec-border);
}
body.pga-fairway .odds-book-table th.right { text-align: right; }
body.pga-fairway .odds-book-row td {
  padding: 9px 12px;
  border-bottom: 1px solid var(--sec-border);
  background: var(--sec-surface);
}
body.pga-fairway .odds-book-row td.right {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
body.pga-fairway .odds-book-name { color: var(--sec-text); font-weight: 500; }
body.pga-fairway .odds-book-cur {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--sec-text);
}
body.pga-fairway .odds-book-row.is-best td { background: #f3f9ea; }
body.pga-fairway .odds-book-row.is-best td:first-child {
  border-left: 3px solid var(--sec-primary);
}
body.pga-fairway .odds-book-badge {
  display: inline-block;
  margin-left: 6px;
  background: var(--sec-primary);
  color: #fff;
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 3px;
  vertical-align: middle;
}


/* Aggregate trajectory chart */
body.pga-fairway .odds-panel-chart {
  background: var(--sec-surface);
  border: 1px solid var(--sec-border);
  border-radius: 6px;
  padding: 14px 16px;
}
body.pga-fairway .odds-panel-chart svg {
  width: 100%;
  height: 90px;
  display: block;
}
body.pga-fairway .odds-panel-chart-axis {
  display: flex;
  justify-content: space-between;
  padding-top: 6px;
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: var(--sec-muted);
}
body.pga-fairway .odds-panel-chart-foot {
  display: flex;
  justify-content: space-between;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid var(--sec-border);
  font-size: 12px;
}
body.pga-fairway .odds-panel-chart-foot .lbl { color: var(--sec-muted); }
body.pga-fairway .odds-panel-chart-foot .open-val {
  color: var(--sec-text);
  font-family: 'Oswald', sans-serif;
}
body.pga-fairway .odds-panel-chart-foot .cur-val {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--sec-text);
}
body.pga-fairway .odds-panel-chart-foot .pct { font-weight: 600; }
body.pga-fairway .odds-panel-chart-foot.is-gaining .cur-val,
body.pga-fairway .odds-panel-chart-foot.is-gaining .pct { color: #1f7a4a; }
body.pga-fairway .odds-panel-chart-foot.is-losing .cur-val,
body.pga-fairway .odds-panel-chart-foot.is-losing .pct { color: var(--sec-accent-2); }
body.pga-fairway .odds-panel-chart-foot.is-flat .pct { color: var(--sec-muted); }

/* Per-book sparklines */
body.pga-fairway .odds-spark-row {
  display: grid;
  grid-template-columns: 84px 1fr 132px 64px;
  gap: 14px;
  align-items: center;
  padding: 9px 0;
  border-top: 1px solid var(--sec-border);
}
body.pga-fairway .odds-spark-row:first-of-type { border-top: none; }
body.pga-fairway .odds-spark-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--sec-text);
}
body.pga-fairway .odds-spark-chart svg {
  width: 100%;
  height: 30px;
  display: block;
}
body.pga-fairway .odds-spark-range {
  font-size: 12px;
  color: var(--sec-muted);
  font-variant-numeric: tabular-nums;
}
body.pga-fairway .odds-spark-range .open { color: var(--sec-border-strong); }
body.pga-fairway .odds-spark-range .cur  { color: var(--sec-text); }
body.pga-fairway .odds-spark-pct {
  text-align: right;
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: var(--sec-muted);
}
body.pga-fairway .odds-spark-row.is-up   .odds-spark-pct { color: #1f7a4a; }
body.pga-fairway .odds-spark-row.is-down .odds-spark-pct { color: var(--sec-accent-2); }

/* ----- Per-Book Round Table (replaces sparklines) -----
   Mirrors .lb-panel-rounds-table sizing exactly:
     body 0.85rem / tabular-nums, header 10px/1.2px-spacing,
     cell padding 8px 10px. No Oswald — same clean look as the
     leaderboard expand-panel SG table. */
body.pga-fairway .odds-round-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
  color: var(--sec-text);
}
body.pga-fairway .odds-round-table thead th {
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--sec-muted);
  font-weight: 600;
  padding: 6px 10px;
  border-bottom: 1px solid var(--sec-border);
  text-align: right;
  white-space: nowrap;
}
body.pga-fairway .odds-round-table thead th:first-child { text-align: left; }
body.pga-fairway .odds-round-table tbody td {
  padding: 6px 10px;
  border-bottom: 1px solid var(--sec-border);
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  color: var(--sec-muted);
  white-space: nowrap;
}
body.pga-fairway .odds-round-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--sec-text);
}
body.pga-fairway .odds-round-table tbody tr:last-child td { border-bottom: none; }
/* BTR row — green accent */
body.pga-fairway .odds-round-table tbody tr.is-btr td { color: var(--sec-primary); font-weight: 600; }
/* Current/close column — full brightness */
body.pga-fairway .odds-round-table td.rnd-close { color: var(--sec-text); font-weight: 600; }
body.pga-fairway .odds-round-table tr.is-btr td.rnd-close { color: var(--sec-primary); }

/* ----- Off-week / fatal shell ----- */
body.pga-fairway .odds-off {
  background: var(--sec-surface-alt);
  border: 1px solid var(--sec-border);
  border-radius: 8px;
  padding: 36px 24px;
  text-align: center;
  color: var(--sec-muted);
  line-height: 1.6;
}
body.pga-fairway .odds-off h2 {
  color: var(--sec-primary-deep);
  font-family: var(--font-chrome);
  font-size: 18px;
  margin: 0 0 8px;
}
body.pga-fairway .odds-off strong { color: var(--sec-primary-deep); }

/* ----- Mobile ----- */
@media (max-width: 720px) {
  body.pga-fairway .odds-tab { padding: 10px 14px; font-size: 11px; }
  body.pga-fairway .odds-table td,
  body.pga-fairway .odds-table thead th { padding: 9px 10px; }
  /* Numeric columns: tighter horizontal padding, slightly smaller type,
     and wrap-permissive so multi-word content ("+2.6% vs market", header
     "BTR FAIR") flows to multiple lines rather than forcing the table
     wider than the 390px viewport. Player column left untouched. */
  body.pga-fairway .odds-table thead th.right,
  body.pga-fairway .odds-table thead th.center,
  body.pga-fairway .odds-table td.right {
    padding-left: 6px;
    padding-right: 8px;
    white-space: normal;
  }
  body.pga-fairway .odds-table thead th { letter-spacing: 0.04em; }
  body.pga-fairway .odds-cell-open,
  body.pga-fairway .odds-cell-btr { font-size: 12px; }
  body.pga-fairway .odds-dk-val { font-size: 13px; }
  body.pga-fairway .odds-headshot,
  body.pga-fairway .odds-initials { width: 24px; height: 24px; }
  body.pga-fairway .odds-initials { font-size: 10px; }
  body.pga-fairway .odds-panel { padding: 14px 12px 16px; }
  body.pga-fairway .odds-spark-row { grid-template-columns: 64px 1fr 56px; }
  body.pga-fairway .odds-spark-range { display: none; }
}
@media (max-width: 480px) {
  /* Odds market tabs — prevent overflow on narrow phones */
  body.pga-fairway .odds-tab { padding: 8px 10px; font-size: 10px; }
  body.pga-fairway .odds-table td,
  body.pga-fairway .odds-table thead th { padding: 7px 6px; }
}

/* =========================================================
   PGA Odds Board — Majors Futures section
   ---------------------------------------------------------
   Event-level tab bar (.odds-event-tabs) sits above the existing
   market-level .odds-tabs. "Current Week" is the default active
   tab; switching to a major tab hides the market tabs + #odds-
   widgets and reveals the per-major table (#odds-major-tables).
   The bar is hidden when payload.majors_futures is empty -- the
   page behaves identically to its pre-majors shape in that case.
   ========================================================= */

body.pga-fairway .odds-event-tabs {
  display: flex;
  flex-wrap: nowrap;
  border-bottom: 1px solid var(--sec-border);
  margin-bottom: 16px;
  overflow-x: visible; /* no scroll */
}
body.pga-fairway .odds-event-tab {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 4px;
  font-family: var(--font-chrome);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sec-muted);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
  text-align: center;
}
body.pga-fairway .odds-event-tab:hover { color: var(--sec-text); }
body.pga-fairway .odds-event-tab.is-active {
  color: var(--sec-primary);
  border-bottom-color: var(--sec-accent);
}
body.pga-fairway .odds-event-tab-name {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}
body.pga-fairway .odds-event-tab-date {
  display: block;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--sec-muted);
  margin-top: 2px;
}

/* Per-major block (one per upcoming major). Each block carries
   its own header (event name + last-updated stamp), table, and
   footnote so multiple majors stack cleanly when stored side by
   side, even though only one is visible at a time. */
body.pga-fairway .odds-major-block {
  margin-bottom: 28px;
}
body.pga-fairway .widget-head .odds-major-date-inline {
  font-weight: 500;
  opacity: 0.65;
  font-size: 12px;
  margin-left: 8px;
  letter-spacing: 0.03em;
}

/* Per-player consensus movement line inside the expand panel.
   The .trend-gaining / .trend-losing modifiers inherit the
   green / red treatment used elsewhere on this page (matching
   .odds-panel-chart-foot.is-gaining / .is-losing). */
body.pga-fairway .major-movement-line {
  margin-top: 10px;
  font-size: 12px;
  color: var(--sec-muted);
  font-weight: 500;
}
body.pga-fairway .major-movement-line.trend-gaining { color: #1f7a4a; }
body.pga-fairway .major-movement-line.trend-losing  { color: var(--sec-accent-2); }
body.pga-fairway .major-movement-line.trend-flat    { color: var(--sec-muted); }

body.pga-fairway .odds-major-footnote {
  margin-top: 10px;
}

/* Responsive: at <768px, hide the three non-DraftKings columns.
   Players see Player | DraftKings | expand-toggle in the
   collapsed view; tapping the expand row still reveals the full
   four-book grid in the panel. */
@media (max-width: 767px) {
  body.pga-fairway .odds-major-table .col-fanduel,
  body.pga-fairway .odds-major-table .col-betmgm { display: none; }
}

/* =========================================================
   PGA Odds Board — Mobile redesign (2026-05-23)
   ---------------------------------------------------------
   - Market pills bar (replaces the desktop-only tab strip)
   - My Players button + star toggle (shared with leaderboard)
   - Player name -> /pga/leaderboard/?player=<id> deep link
   - Expand panel: 5-box per-day line movement (mobile) +
     DK Now / BTR Fair / Edge summary; full SVG chart stays
     desktop-only
   ========================================================= */

/* Market pills */
body.pga-fairway .odds-market-pills {
  display: flex;
  gap: 6px;
  padding: 8px 14px;
  border-bottom: 1px solid var(--sec-border);
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
body.pga-fairway .odds-market-pills::-webkit-scrollbar { display: none; }
body.pga-fairway .odds-market-pill {
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .03em;
  border: 1.5px solid var(--sec-border);
  color: var(--sec-muted);
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s;
}
body.pga-fairway .odds-market-pill.is-active {
  background: var(--sec-primary);
  border-color: var(--sec-primary);
  color: #fff;
}
body.pga-fairway .odds-market-pill.is-disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* Pre-tournament amber banner (complete view) */
body.pga-fairway .odds-pretournament-banner {
  display: flex;
  align-items: center;
  gap: 7px;
  margin: 6px 0 4px;
  padding: 6px 12px;
  background: #faeeda;
  border: 0.5px solid #eabc6b;
  border-radius: 6px;
  font-size: 11px;
  color: #633806;
}
body.pga-fairway .odds-pretournament-banner svg {
  flex-shrink: 0;
  color: #854f0b;
}

/* Star column — dedicated <td> in complete + major views */
body.pga-fairway .odds-th-star { width: 28px; padding: 5px 4px; }
body.pga-fairway .odds-cell-star {
  width: 28px;
  padding: 4px 4px;
  text-align: center;
  vertical-align: middle;
}

/* Player name — flex so it fills remaining space and truncates cleanly */
body.pga-fairway .odds-player-cell {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
body.pga-fairway .odds-player-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Mobile line-movement boxes — stretch to fill full row width */
body.pga-fairway .odds-mobile-boxes { align-items: stretch; }
body.pga-fairway .odds-mobile-box   { flex: 1; min-width: 0; }

/* Closed column — amber for completed events */
body.pga-fairway .odds-book-closed-hdr { color: #854f0b; font-weight: 600; }
body.pga-fairway .odds-book-closed-val { color: #854f0b; }
body.pga-fairway .odds-major-closed-hdr { color: #854f0b; font-weight: 600; }
body.pga-fairway .odds-major-closed-val { color: #854f0b; }

/* Five-book panel — horizontal scroll for wide table on mobile */
body.pga-fairway .odds-major-panel-scroll { overflow-x: auto; scrollbar-width: none; }
body.pga-fairway .odds-major-panel-scroll::-webkit-scrollbar { display: none; }
body.pga-fairway .odds-major-panel-scroll .odds-book-table { min-width: 320px; }

/* My Players button — matches lb-my-players-btn on leaderboard/projections */
body.pga-fairway .odds-my-players-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 38px;
  padding: 0 16px;
  background: var(--sec-surface, #fff);
  border: 1px solid var(--sec-border-strong, #c7d3c0);
  border-radius: 8px;
  color: var(--sec-muted, #5a6b62);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.15s, color 0.15s, background 0.15s, box-shadow 0.15s;
  flex-shrink: 0;
}
body.pga-fairway .odds-my-players-btn:hover {
  border-color: var(--sec-primary, #0a4d2e);
  color: var(--sec-primary, #0a4d2e);
}
body.pga-fairway .odds-my-players-btn:focus {
  outline: none;
  border-color: var(--sec-primary, #0a4d2e);
  box-shadow: 0 0 0 3px rgba(10, 77, 46, 0.12);
}
body.pga-fairway .odds-my-players-btn.is-active {
  background: var(--sec-primary, #0a4d2e);
  border-color: var(--sec-primary, #0a4d2e);
  color: #fff;
}
body.pga-fairway .odds-my-players-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  background: var(--sec-primary, #0a4d2e);
  color: #fff;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
body.pga-fairway .odds-my-players-btn.is-active .odds-my-players-count {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}
/* Clear tracked button — shared across leaderboard / projections / odds */
body.pga-fairway .lb-clear-tracked-btn {
  background: none;
  border: none;
  padding: 0;
  font-size: 12px;
  color: var(--sec-muted, #5a6b62);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 2px;
  flex-shrink: 0;
}
body.pga-fairway .lb-clear-tracked-btn:hover { color: var(--sec-bad, #c43232); }

/* Star button per row */
body.pga-fairway .odds-star-btn {
  background: none;
  border: none;
  padding: 0 4px 0 0;
  cursor: pointer;
  color: var(--sec-muted);
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 1;
}
body.pga-fairway .odds-star-btn.is-starred { color: #c9a800; }

/* Expand-panel leaderboard link */
body.pga-fairway .odds-panel-lb-wrap {
  padding: 8px 14px 10px;
  text-align: right;
  border-top: 1px solid var(--sec-border);
  margin-top: 4px;
}
body.pga-fairway .odds-panel-lb-link {
  font-size: 12px;
  color: var(--sec-muted);
  text-decoration: none;
}
body.pga-fairway .odds-panel-lb-link:hover {
  color: var(--sec-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Leaderboard row highlight (deep-link target) */
.lb-row-highlight {
  background: #fffbe6 !important;
  outline: 2px solid #c9a800;
  outline-offset: -2px;
}

/* Mobile expand panel */
body.pga-fairway .odds-panel-desktop { display: block; }
body.pga-fairway .odds-panel-mobile  { display: none; }

body.pga-fairway .odds-mobile-boxes {
  display: flex;
  gap: 4px;
  margin-bottom: 10px;
}
body.pga-fairway .odds-mobile-box {
  flex: 1;
  background: var(--sec-surface);
  border: 1px solid var(--sec-border);
  border-radius: 6px;
  padding: 6px 4px;
  text-align: center;
}
body.pga-fairway .odds-mobile-box.is-current {
  border-color: var(--sec-primary);
}
body.pga-fairway .omb-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--sec-muted);
  margin-bottom: 3px;
}
body.pga-fairway .odds-mobile-box.is-current .omb-label { color: var(--sec-primary); }
body.pga-fairway .omb-val {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--sec-text);
}
body.pga-fairway .odds-mobile-box.is-current .omb-val { color: var(--sec-primary); }



@media (max-width: 767px) {
  /* Widget subhead: stack on mobile */
  body.pga-fairway .widget-subhead.widget-subheader {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding-top: 7px;
    padding-bottom: 7px;
  }
  body.pga-fairway .widget-subhead-meta {
    font-size: 10px;
  }
  body.pga-fairway .widget-subhead-meta .wsm-item + .wsm-item::before {
    content: " · ";
  }

  /* Table: hide Open column, tighten rows */
  body.pga-fairway .odds-cell-open,
  body.pga-fairway .odds-table thead th[data-sort="open"] { display: none; }

  body.pga-fairway .odds-table tbody tr td { padding: 8px 6px; }
  body.pga-fairway .odds-table thead tr th { padding: 6px 6px; }

  /* Toolbar: allow wrap so My Players button stays accessible */
  body.pga-fairway #odds-toolbar {
    flex-wrap: wrap;
    gap: 6px;
  }

  /* Expand panel: show mobile version, hide desktop chart */
  body.pga-fairway .odds-panel-desktop { display: none; }
  body.pga-fairway .odds-panel-mobile  { display: block; }

  /* No horizontal page scroll. Fixed-layout table with explicit
     numeric-column widths lets the Player column absorb the rest
     of the viewport while the table itself never overflows. */
  body.pga-fairway .full-width-inner { overflow-x: hidden; }

  body.pga-fairway .odds-table {
    table-layout: fixed;
    width: 100%;
  }
  body.pga-fairway .odds-table .odds-th-player,
  body.pga-fairway .odds-table td.odds-cell-player { width: auto; }
  body.pga-fairway .odds-table thead th[data-sort="dk"]    { width: 62px; }
  body.pga-fairway .odds-table thead th[data-sort="btr"]   { width: 54px; }
  body.pga-fairway .odds-table thead th[data-sort="value"] { width: 52px; }

  /* Complete view — data columns sized for "1315 to 1" (longest value),
     nowrap so odds never break mid-string, font shrunk to 10.5px to
     fit inside the fixed-width columns. */
  body.pga-fairway .odds-table.is-complete thead th[data-sort="dk"]     { width: 50px; }
  body.pga-fairway .odds-table.is-complete thead th[data-sort="btr"]    { width: 50px; }
  body.pga-fairway .odds-table.is-complete thead th[data-sort="result"] { width: 44px; }
  body.pga-fairway .odds-table.is-complete .odds-th-star,
  body.pga-fairway .odds-table.is-complete .odds-cell-star               { width: 26px; }
  /* No wrapping — value must stay on one line */
  body.pga-fairway .odds-table.is-complete td.odds-cell-dk,
  body.pga-fairway .odds-table.is-complete td.odds-cell-btr {
    white-space: nowrap;
    font-family: 'Oswald', sans-serif;
    font-size: 10.5px;
    font-weight: 500;
    color: var(--sec-muted);
  }
  /* Complete view uses .odds-cell-dk for first data col — not subject to open-hide rule */
  body.pga-fairway .odds-table.is-complete .odds-cell-dk { display: table-cell; }

  body.pga-fairway .odds-tablewrap { overflow-x: hidden; }

  /* Row height consistency: ellipsis on long names, fixed 44px row.
     No max-width cap — fixed table layout gives the player column all
     remaining space after the explicit numeric columns are allocated. */
  body.pga-fairway .odds-player-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  body.pga-fairway .odds-table tbody tr { min-height: 44px; }

  /* Per-Book Movement table — compact on mobile so 6 columns fit the
     ~390px viewport without horizontal scroll. */
  body.pga-fairway .odds-round-table { font-size: 11px; }
  body.pga-fairway .odds-round-table thead th {
    font-size: 8px;
    padding: 4px 5px;
    letter-spacing: 0.5px;
  }
  body.pga-fairway .odds-round-table tbody td { padding: 4px 5px; }
}

/* =========================================================
   PGA Projection Board — Fairway palette
   ---------------------------------------------------------
   Shipped 2026-05-16 from docs/mockups/btr_projections_page_v1_locked.html.
   Six-column default table — Pos | Player | Win | Top 5 |
   Top 10 | Make Cut — with a per-row expand panel carrying the
   course-fit + probability-movement top strip and the
   round-by-round projection table. All scoped under
   body.pga-fairway; reuses the --sec-* tokens. The hero, search
   toolbar (.toolbar / .search) and widget chrome (.widget /
   .widget-header) are shared with the leaderboard / odds pages —
   only the table cells, prob cells and expand panel are new.
   Make Cut is percentage-only by design (no American odds).
   ========================================================= */

/* ----- Table widget ----- */
body.pga-fairway .pj-tablewrap { overflow-x: auto; }
body.pga-fairway .pj-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  color: var(--sec-text);
  background: var(--sec-surface);
}
body.pga-fairway .pj-table thead th {
  text-align: left;
  font-family: var(--font-chrome);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sec-muted);
  padding: 12px 14px;
  background: var(--sec-surface);
  border-bottom: 1px solid var(--sec-border);
  white-space: nowrap;
}
body.pga-fairway .pj-table thead th.right { text-align: right; }
body.pga-fairway .pj-table thead th.sortable {
  cursor: pointer;
  user-select: none;
  transition: color 0.12s, background 0.12s;
}
body.pga-fairway .pj-table thead th.sortable:hover {
  color: var(--sec-primary);
  background: var(--sec-surface-alt);
}
body.pga-fairway .pj-table thead th .sort-icon {
  display: inline-flex;
  flex-direction: column;
  margin-left: 5px;
  vertical-align: middle;
  line-height: 0.6;
  opacity: 0.4;
  transition: opacity 0.12s;
}
body.pga-fairway .pj-table thead th.sortable:hover .sort-icon { opacity: 0.8; }
body.pga-fairway .pj-table thead th .sort-icon span {
  font-size: 7px;
  color: currentColor;
}
body.pga-fairway .pj-table thead th.sort-asc,
body.pga-fairway .pj-table thead th.sort-desc { color: var(--sec-primary); }
body.pga-fairway .pj-table thead th.sort-asc .sort-icon,
body.pga-fairway .pj-table thead th.sort-desc .sort-icon { opacity: 1; }
body.pga-fairway .pj-table thead th.sort-asc .sort-icon span:first-child { color: var(--sec-accent-2); }
body.pga-fairway .pj-table thead th.sort-asc .sort-icon span:last-child  { color: var(--sec-border-strong); }
body.pga-fairway .pj-table thead th.sort-desc .sort-icon span:first-child { color: var(--sec-border-strong); }
body.pga-fairway .pj-table thead th.sort-desc .sort-icon span:last-child  { color: var(--sec-accent-2); }

body.pga-fairway .pj-placeholder {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--sec-muted);
  font-style: italic;
}

/* ----- Player rows ----- */
body.pga-fairway .pj-row {
  border-bottom: 1px solid var(--sec-border);
  cursor: pointer;
}
body.pga-fairway .pj-row:hover { background: var(--sec-surface-alt); }
body.pga-fairway .pj-row.is-open { background: var(--sec-surface-alt); }
body.pga-fairway .pj-row.is-open td:first-child {
  box-shadow: inset 3px 0 0 var(--sec-accent-2);
}
body.pga-fairway .pj-table td {
  padding: 13px 14px;
  vertical-align: middle;
}
body.pga-fairway .pj-table td.right {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
body.pga-fairway .pj-table td.pos {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  color: var(--sec-primary);
  width: 56px;
  font-size: 14.5px;
}

/* ----- Player cell ----- */
body.pga-fairway .pj-player-cell {
  display: flex;
  align-items: center;
  gap: 12px;
}
body.pga-fairway .pj-headshot,
body.pga-fairway .pj-initials {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  box-sizing: border-box;
}
body.pga-fairway .pj-headshot {
  object-fit: cover;
  background: rgba(10, 77, 46, 0.08);
}
body.pga-fairway .pj-initials {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sec-primary);
  color: var(--sec-accent);
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.02em;
}
body.pga-fairway .pj-player-name {
  color: var(--sec-text);
  font-weight: 600;
}

/* ----- Stacked probability cell — pct on top, odds beneath ----- */
body.pga-fairway .prob-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}
body.pga-fairway .prob-pct {
  font-family: var(--font-chrome);
  font-weight: 700;
  font-size: 14px;
  color: var(--sec-text);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
body.pga-fairway .prob-odds {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 11.5px;
  color: var(--sec-muted);
  line-height: 1.1;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

/* ----- Expand panel ----- */
body.pga-fairway .pj-panel-row > td {
  padding: 0;
  background: var(--sec-surface-alt);
  border-bottom: 1px solid var(--sec-border);
}
body.pga-fairway .pj-panel {
  padding: 22px 24px;
  border-top: 1px solid var(--sec-border);
}
body.pga-fairway .pj-panel-section { margin-bottom: 22px; }
body.pga-fairway .pj-panel-section:last-child { margin-bottom: 0; }
body.pga-fairway .pj-panel-section-label {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sec-primary);
  font-weight: 700;
  margin-bottom: 10px;
}
body.pga-fairway .pj-rounds-missing {
  font-size: 13px;
  color: var(--sec-muted);
  font-style: italic;
  margin: 0;
}

/* Top strip — Course Fit + 3 Movement cards */
body.pga-fairway .top-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 12px;
}
body.pga-fairway .top-card {
  padding: 13px 16px;
  background: var(--sec-surface);
  border: 1px solid var(--sec-border);
  border-radius: 8px;
}
body.pga-fairway .top-card-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sec-muted);
  font-weight: 600;
  margin-bottom: 7px;
}
body.pga-fairway .top-card-value {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--sec-primary);
  line-height: 1.1;
}
body.pga-fairway .top-card-value .small {
  font-size: 12px;
  color: var(--sec-muted);
  font-weight: 500;
}
body.pga-fairway .top-card-meta {
  font-size: 11.5px;
  color: var(--sec-muted);
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
}
body.pga-fairway .top-card-delta {
  font-weight: 700;
  font-size: 11.5px;
}
body.pga-fairway .top-card-delta.up   { color: var(--sec-good); }
body.pga-fairway .top-card-delta.down { color: var(--sec-bad);  }

/* Round-by-round projection table — Round | Status | Actual | Projected */
body.pga-fairway .rounds-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--sec-surface);
  border: 1px solid var(--sec-border);
  border-radius: 8px;
  overflow: hidden;
  font-size: 13.5px;
}
body.pga-fairway .rounds-table thead th {
  text-align: left;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sec-muted);
  font-weight: 600;
  padding: 10px 14px;
  background: var(--sec-surface-alt);
  border-bottom: 1px solid var(--sec-border);
}
body.pga-fairway .rounds-table thead th.right { text-align: right; }
body.pga-fairway .rounds-table tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--sec-border);
  font-variant-numeric: tabular-nums;
}
body.pga-fairway .rounds-table tbody td.right { text-align: right; }
body.pga-fairway .rounds-table tbody tr:last-child td { border-bottom: none; }
body.pga-fairway .rounds-table tbody tr.is-progress {
  background: var(--sec-progress-bg);
}
body.pga-fairway .rounds-table tbody tr.is-total td {
  border-top: 2px solid var(--sec-primary);
  background: var(--sec-surface-alt);
  font-weight: 700;
}
body.pga-fairway .rounds-table tbody tr.is-total td:first-child { color: var(--sec-accent-2); }

body.pga-fairway .round-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  color: var(--sec-primary);
  font-size: 13px;
  letter-spacing: 0.05em;
}
body.pga-fairway .status-pill {
  display: inline-block;
  padding: 2px 9px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
body.pga-fairway .status-pill.final     { background: var(--sec-primary); color: var(--sec-accent); }
body.pga-fairway .status-pill.progress  { background: var(--sec-bad);   color: #fff; }
body.pga-fairway .status-pill.projected { background: var(--sec-border); color: var(--sec-muted); }

/* Score / to-par formatting */
body.pga-fairway .topar {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 14.5px;
}
body.pga-fairway .topar.under     { color: var(--sec-bad); }
body.pga-fairway .topar.over      { color: var(--sec-text); }
body.pga-fairway .topar.even      { color: var(--sec-muted); }
body.pga-fairway .topar.projected { color: var(--sec-primary); }
body.pga-fairway .rounds-table tbody tr.is-total .topar {
  font-size: 16px;
  color: var(--sec-accent-2);
}
/* "thru X" inline detail inside an Actual cell */
body.pga-fairway .topar .thru {
  font-family: var(--font-chrome);
  font-size: 11.5px;
  font-weight: 500;
  color: var(--sec-muted);
  letter-spacing: 0.02em;
  margin-left: 4px;
}
/* Em-dash placeholder for an empty Actual / Projected cell */
body.pga-fairway .empty {
  color: var(--sec-border-strong);
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 14.5px;
}

/* ----- Off-week / empty shell — Fairway repaint of .off-week-message ----- */
body.pga-fairway .off-week-message {
  border-color: var(--sec-border-strong);
  background: var(--sec-surface-alt);
}
body.pga-fairway .off-week-message h2 { color: var(--sec-primary-deep); }
body.pga-fairway .off-week-message p { color: var(--sec-muted); }
body.pga-fairway .off-week-message strong { color: var(--sec-primary-deep); }

/* ----- Mobile ----- */
@media (max-width: 720px) {
  body.pga-fairway .pj-table td,
  body.pga-fairway .pj-table thead th { padding: 10px 10px; }
  body.pga-fairway .pj-headshot,
  body.pga-fairway .pj-initials { width: 28px; height: 28px; font-size: 10px; }
  body.pga-fairway .pj-player-cell { gap: 9px; }
  body.pga-fairway .pj-panel { padding: 16px 12px; }
  body.pga-fairway .top-strip { grid-template-columns: 1fr 1fr; }
  body.pga-fairway .rounds-table { font-size: 12.5px; }
  body.pga-fairway .rounds-table thead th,
  body.pga-fairway .rounds-table tbody td { padding: 9px 10px; }
}
@media (max-width: 480px) {
  body.pga-fairway .top-strip { grid-template-columns: 1fr; }
}

/* =========================================================
   PGA Matchup Tool — Fairway palette (mobile-first, v1.1.0)
   ---------------------------------------------------------
   Updated 2026-05-23. Adds tee times, weather, previous
   results to player cards. Mobile-first: single-row
   scrollable tabs, 2-col comboboxes down to 400px.
   ========================================================= */
body.pga-fairway .mt-live {
  --mt-slot-1: #c9a84c;
  --mt-slot-2: #5096dc;
  --mt-slot-3: #dc5050;
  --mt-slot-4: #6fcf7c;
  --mt-mono: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, Consolas, monospace;
}

/* ----- Controls ----- */
body.pga-fairway .mt-controls { margin-bottom: 16px; }
body.pga-fairway .mt-round-row {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  min-width: 0;
}

/* Single scrollable row — no wrapping on any screen size */
body.pga-fairway .mt-round-tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 6px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;          /* Firefox */
  padding-bottom: 2px;            /* prevent clipping of focus rings */
  flex: 1;
  min-width: 0;
}
body.pga-fairway .mt-round-tabs::-webkit-scrollbar { display: none; }
body.pga-fairway .mt-round-tab {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sec-primary);
  background: var(--sec-surface);
  border: 1px solid var(--sec-border-strong);
  border-radius: 4px;
  padding: 7px 11px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 120ms ease, color 120ms ease, border-color 120ms ease;
}
body.pga-fairway .mt-round-tab:hover:not(.is-selected) {
  border-color: var(--sec-primary);
  background: var(--sec-surface-alt);
}
body.pga-fairway .mt-round-tab.is-selected {
  background: var(--sec-primary);
  border-color: var(--sec-primary);
  color: #fff;
}
body.pga-fairway .mt-round-tab.is-loading {
  opacity: 0.6;
  cursor: wait;
}
body.pga-fairway .mt-round-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
body.pga-fairway .mt-text-link {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sec-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
  white-space: nowrap;
}
body.pga-fairway .mt-text-link:hover { color: var(--sec-primary); }

/* ----- Player slot comboboxes ----- */
body.pga-fairway .mt-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
body.pga-fairway .mt-slot { display: flex; flex-direction: column; gap: 4px; }
body.pga-fairway .mt-slot-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sec-muted);
}
body.pga-fairway .mt-combobox { position: relative; }
body.pga-fairway .mt-combobox-input {
  width: 100%;
  background: var(--sec-surface);
  color: var(--sec-text);
  border: 1px solid var(--sec-border-strong);
  border-radius: 4px;
  padding: 9px 30px 9px 10px;
  font-size: 14px;
  font-family: inherit;
  box-sizing: border-box;
  min-height: 44px;              /* touch-friendly tap target */
}
body.pga-fairway .mt-combobox-input::placeholder { color: var(--sec-muted); }
body.pga-fairway .mt-combobox-input:focus {
  outline: none;
  border-color: var(--sec-primary);
}
body.pga-fairway .mt-slot[data-slot="0"] .mt-combobox-input { border-left: 3px solid var(--mt-slot-1); }
body.pga-fairway .mt-slot[data-slot="1"] .mt-combobox-input { border-left: 3px solid var(--mt-slot-2); }
body.pga-fairway .mt-slot[data-slot="2"] .mt-combobox-input { border-left: 3px solid var(--mt-slot-3); }
body.pga-fairway .mt-slot[data-slot="3"] .mt-combobox-input { border-left: 3px solid var(--mt-slot-4); }
body.pga-fairway .mt-combobox-clear {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: var(--sec-muted);
  border: none;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 3px;
  min-height: 32px;
  display: flex;
  align-items: center;
}
body.pga-fairway .mt-combobox-clear:hover { color: var(--sec-text); background: var(--sec-surface-alt); }
body.pga-fairway .mt-combobox-panel {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  right: 0;
  z-index: 50;
  max-height: 280px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background: var(--sec-surface);
  border: 1px solid var(--sec-border-strong);
  border-radius: 4px;
  box-shadow: 0 6px 20px rgba(10, 77, 46, 0.18);
}
body.pga-fairway .mt-combobox-option {
  padding: 10px 10px;
  font-size: 13px;
  color: var(--sec-text);
  cursor: pointer;
  border-bottom: 1px solid var(--sec-border);
  line-height: 1.3;
  min-height: 44px;              /* touch-friendly */
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.pga-fairway .mt-combobox-option:last-child { border-bottom: none; }
body.pga-fairway .mt-combobox-option .mt-option-meta { color: var(--sec-muted); font-size: 12px; margin-top: 2px; }
body.pga-fairway .mt-combobox-option:hover,
body.pga-fairway .mt-combobox-option.is-active { background: var(--sec-surface-alt); }
body.pga-fairway .mt-combobox-empty {
  padding: 12px 10px;
  font-size: 13px;
  color: var(--sec-muted);
  font-style: italic;
}

/* ----- Result panels (inside the .widget card) ----- */
body.pga-fairway .mt-results {
  padding: 16px;
  background: var(--sec-surface-alt);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: opacity 200ms ease;
}
body.pga-fairway .mt-results.is-loading {
  opacity: 0.45;
  pointer-events: none;
}

/* ----- Player cards ----- */
body.pga-fairway .mt-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  align-items: start;           /* each card its own height */
}
body.pga-fairway .mt-card {
  background: var(--sec-surface);
  border: 1px solid var(--sec-border);
  border-top: 3px solid var(--mt-slot-1);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.pga-fairway .mt-card.is-empty { opacity: 0.5; }
body.pga-fairway .mt-card-head { display: flex; gap: 10px; align-items: center; }
body.pga-fairway .mt-card-headshot,
body.pga-fairway .mt-card-initials {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--mt-slot-1);
  flex-shrink: 0;
  box-sizing: border-box;
}
body.pga-fairway .mt-card-headshot {
  object-fit: cover;
  background: rgba(10, 77, 46, 0.08);
}
body.pga-fairway .mt-card-initials {
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.02em;
  color: #06231a;
}
body.pga-fairway .mt-card-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.1;
  color: var(--sec-text);
  margin: 0;
}
body.pga-fairway .mt-card-prerank {
  font-size: 11px;
  color: var(--sec-muted);
  margin-top: 2px;
}
body.pga-fairway .mt-card-section-head {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--sec-muted);
  margin: 2px 0 3px;
}
body.pga-fairway .mt-card-divider { height: 1px; background: var(--sec-border); }

/* SG rows: 2×2 grid — more compact, fits better in narrow cards */
body.pga-fairway .mt-sg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px 8px;
}
body.pga-fairway .mt-sg-cell {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12px;
  gap: 4px;
}
body.pga-fairway .mt-sg-cell .mt-label { color: var(--sec-muted); white-space: nowrap; }
body.pga-fairway .mt-sg-cell .mt-val {
  font-family: var(--mt-mono);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
}
body.pga-fairway .mt-sg-cell .mt-val.is-pos { color: var(--sec-good); }
body.pga-fairway .mt-sg-cell .mt-val.is-neg { color: var(--sec-bad); }

/* Course fit: single inline row */
body.pga-fairway .mt-fit-inline {
  font-size: 12px;
  color: var(--sec-text);
  font-family: var(--mt-mono);
  font-variant-numeric: tabular-nums;
}
body.pga-fairway .mt-fit-inline .mt-fit-sep { color: var(--sec-border-strong); margin: 0 4px; }
body.pga-fairway .mt-card.is-top-fit .mt-fit-inline { color: var(--sec-accent-2); font-weight: 600; }

/* ----- Tee times section ----- */
body.pga-fairway .mt-tee-rows {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
body.pga-fairway .mt-tee-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 12px;
  line-height: 1.4;
}
body.pga-fairway .mt-tee-round {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sec-muted);
  min-width: 18px;
  flex-shrink: 0;
}
body.pga-fairway .mt-tee-time {
  color: var(--sec-text);
  font-family: var(--mt-mono);
  font-size: 12px;
}
body.pga-fairway .mt-tee-tbd { color: var(--sec-muted); font-style: italic; font-size: 12px; }
body.pga-fairway .mt-tee-cut {
  color: var(--sec-bad);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ----- Weather strip on cards ----- */
body.pga-fairway .mt-card-wx {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
}
body.pga-fairway .mt-card-wx-slot {
  background: var(--sec-surface-alt);
  border: 1px solid var(--sec-border);
  border-radius: 5px;
  padding: 5px 3px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 0;
}
body.pga-fairway .mt-wx-time {
  font-size: 10px;
  font-weight: 600;
  color: var(--sec-text);
  line-height: 1;
}
body.pga-fairway .mt-wx-icon { font-size: 16px; line-height: 1; }
body.pga-fairway .mt-wx-temp {
  font-size: 11px;
  font-weight: 500;
  color: var(--sec-text);
  line-height: 1;
}
body.pga-fairway .mt-wx-wind {
  font-size: 9px;
  color: var(--sec-muted);
  text-align: center;
  line-height: 1.2;
  word-break: break-word;
}

/* ----- Previous results ----- */
body.pga-fairway .mt-prev-results { display: flex; flex-direction: column; gap: 8px; }
body.pga-fairway .mt-prev-section-head {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--sec-muted);
  margin-bottom: 3px;
}
body.pga-fairway .mt-prev-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
body.pga-fairway .mt-prev-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: var(--sec-surface-alt);
  border: 1px solid var(--sec-border);
  border-radius: 4px;
  padding: 3px 7px;
  font-family: var(--mt-mono);
  white-space: nowrap;
}
body.pga-fairway .mt-prev-pill .mt-prev-fin {
  font-size: 12px;
  font-weight: 600;
  color: var(--sec-text);
  line-height: 1.2;
}
body.pga-fairway .mt-prev-pill .mt-prev-year {
  font-size: 10px;
  color: var(--sec-muted);
  line-height: 1.2;
}
body.pga-fairway .mt-prev-cut .mt-prev-fin { color: var(--sec-bad); }
/* Pill becomes a deep-link to the archive leaderboard when the
   matchup-tool JSON carries dg_event_id on the result. `display: contents`
   keeps the existing pill geometry; only the hover state lives on the
   anchor wrapper. */
body.pga-fairway .mt-prev-pill-link {
  text-decoration: none;
  display: contents;
}
body.pga-fairway .mt-prev-pill-link:hover .mt-prev-pill {
  border-color: var(--sec-primary);
  background: var(--sec-surface);
}
body.pga-fairway .mt-course-no-result {
  font-size: 11px;
  color: var(--sec-muted);
  font-style: italic;
}

/* ----- Split row (radar + pairwise) ----- */
body.pga-fairway .mt-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
body.pga-fairway .mt-panel {
  background: var(--sec-surface);
  border: 1px solid var(--sec-border);
  border-radius: 8px;
  padding: 14px;
}
body.pga-fairway .mt-panel-header {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sec-primary);
  margin-bottom: 10px;
}
body.pga-fairway .mt-panel-sub {
  font-weight: 500;
  color: var(--sec-muted);
  text-transform: none;
  letter-spacing: 0;
  font-size: 11px;
}

/* ----- Radar SVG ----- */
body.pga-fairway .mt-radar-wrap { display: flex; justify-content: center; }
body.pga-fairway #mt-radar { width: 100%; max-width: 340px; height: auto; }
body.pga-fairway .mt-radar-grid { fill: none; stroke: var(--sec-border); stroke-width: 1; }
body.pga-fairway .mt-radar-axis { stroke: var(--sec-border-strong); stroke-width: 1; }
body.pga-fairway .mt-radar-axis-label {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.06em;
  fill: var(--sec-muted);
  text-transform: uppercase;
}
body.pga-fairway .mt-radar-scale-label {
  font-family: var(--mt-mono);
  font-size: 9px;
  fill: var(--sec-muted);
}
body.pga-fairway .mt-radar-poly { stroke-width: 1.5; }

/* ----- Radar legend (under the SVG) ----- */
body.pga-fairway .mt-radar-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 16px;
  margin-top: 10px;
}
body.pga-fairway .mt-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
}
body.pga-fairway .mt-legend-swatch {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
body.pga-fairway .mt-legend-name { color: var(--sec-text); }
body.pga-fairway .mt-legend-item.is-empty .mt-legend-swatch { background: var(--sec-border-strong); }
body.pga-fairway .mt-legend-item.is-empty .mt-legend-name { color: var(--sec-muted); }

/* ----- Pairwise table ----- */
body.pga-fairway .mt-pairwise-header {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--sec-border-strong);
  margin-bottom: 4px;
}
body.pga-fairway .mt-pairwise-col-label {
  font-family: 'Oswald', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--sec-muted);
  text-align: right;
  min-width: 56px;
}
body.pga-fairway .mt-pairwise-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 14px;
  align-items: baseline;
  padding: 7px 0;
  border-bottom: 1px solid var(--sec-border);
  font-size: 13px;
}
body.pga-fairway .mt-pairwise-row:last-child { border-bottom: none; }
body.pga-fairway .mt-pairwise-label { color: var(--sec-text); line-height: 1.3; }
body.pga-fairway .mt-vs { color: var(--sec-muted); }
body.pga-fairway .mt-pairwise-fav {
  font-family: var(--mt-mono);
  color: var(--sec-primary);
  font-weight: 700;
  text-align: right;
  min-width: 56px;
  font-variant-numeric: tabular-nums;
}
body.pga-fairway .mt-pairwise-dog {
  font-family: var(--mt-mono);
  color: var(--sec-muted);
  text-align: right;
  min-width: 56px;
  font-variant-numeric: tabular-nums;
}
body.pga-fairway .mt-empty-note { color: var(--sec-muted); font-size: 13px; padding: 10px 0; }

/* ----- Group winner ----- */
body.pga-fairway .mt-group-rows { display: flex; flex-direction: column; gap: 7px; }
body.pga-fairway .mt-group-row {
  display: grid;
  grid-template-columns: 130px 1fr 60px;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}
body.pga-fairway .mt-group-name {
  color: var(--sec-text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.pga-fairway .mt-group-pct { color: var(--sec-muted); }
body.pga-fairway .mt-group-bar-track {
  background: var(--sec-border);
  height: 9px;
  border-radius: 999px;
  overflow: hidden;
}
body.pga-fairway .mt-group-bar-fill {
  height: 100%;
  border-radius: 999px;
  min-width: 2px;
  transition: width 200ms ease;
}
body.pga-fairway .mt-group-odds {
  font-family: var(--mt-mono);
  text-align: right;
  color: var(--sec-text);
  font-variant-numeric: tabular-nums;
}

/* ----- Analysis ----- */
body.pga-fairway .mt-analysis {
  border-left: 3px solid var(--sec-primary);
  background: linear-gradient(180deg, rgba(10, 77, 46, 0.06), rgba(10, 77, 46, 0.01));
  border-radius: 0 8px 8px 0;
  padding: 16px 18px;
}
body.pga-fairway .mt-analysis-header {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--sec-primary);
}
body.pga-fairway .mt-analysis-prose p {
  font-family: "Source Serif 4", "Source Serif Pro", Georgia, serif;
  font-size: 15px;
  line-height: 1.55;
  color: var(--sec-text);
  margin: 0 0 10px;
}
body.pga-fairway .mt-analysis-prose p:last-child { margin-bottom: 0; }
body.pga-fairway .mt-prose-empty { color: var(--sec-muted); font-size: 14px; }

/* ----- Footer strip ----- */
body.pga-fairway .mt-footer-strip {
  margin-top: 10px;
  background: var(--sec-surface-alt);
  border: 1px solid var(--sec-border);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 11px;
  color: var(--sec-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 16px;
  justify-content: space-between;
}

/* ----- Responsive ----- */
@media (max-width: 980px) {
  body.pga-fairway .mt-slots  { grid-template-columns: repeat(2, 1fr); }
  body.pga-fairway .mt-cards  { grid-template-columns: repeat(2, 1fr); }
  body.pga-fairway .mt-split  { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body.pga-fairway .mt-results { padding: 12px; gap: 12px; }
  body.pga-fairway .mt-group-row { grid-template-columns: 110px 1fr 52px; font-size: 12px; }
}
@media (max-width: 480px) {
  body.pga-fairway .mt-slots  { grid-template-columns: repeat(2, 1fr); }
  body.pga-fairway .mt-cards  { grid-template-columns: repeat(2, 1fr); }
  body.pga-fairway .mt-results { padding: 10px; gap: 10px; }
  body.pga-fairway .mt-card   { padding: 11px; gap: 8px; }
  body.pga-fairway .mt-group-row { grid-template-columns: 90px 1fr 44px; font-size: 11px; }
  body.pga-fairway .mt-radar-legend { gap: 4px 12px; }
  body.pga-fairway .mt-card-wx { grid-template-columns: repeat(2, 1fr); gap: 4px; }
}
@media (max-width: 400px) {
  body.pga-fairway .mt-slots  { grid-template-columns: 1fr; }
  body.pga-fairway .mt-cards  { grid-template-columns: 1fr; }
}

.tool-strip {
  background: var(--light-bg);
  padding: 4rem 2rem;
}
.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.tool-card {
  background: var(--surface);
  border: 1px solid transparent;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, transform 0.2s;
}
.tool-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.tool-card-tag {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.archive-banner-link {
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}
.archive-banner-link:hover {
  color: #f6d77d;
}
@media (max-width: 900px) {
  .hero-inner,
  .tool-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .hero-tournament-badge {
    text-align: left;
  }
}
@media (max-width: 720px) {
  .hero {
    padding: 3.5rem 1.5rem 3rem;
  }
  .section,
  .proj-section {
    padding: 3rem 1.25rem;
  }
}

/* ──────────────────────────────────────────────────────────
   ## NFL LAUNCH PLACEHOLDER
   ────────────────────────────────────────────────────────── */
.nfl-placeholder-card {
  opacity: 0.6;
  pointer-events: none;
  cursor: default;
}
.nfl-placeholder-card:hover {
  background: #fff;
  transform: none;
}
/* ──────────────────────────────────────────────────────────
   ## STATIC PAGES
   ────────────────────────────────────────────────────────── */
.static-page {
  padding: 4rem 2rem;
  background: var(--surface);
}
.static-inner {
  max-width: 800px;
  margin: 0 auto;
}
.static-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 2rem;
}
.static-body {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
}
.static-body h2,
.static-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.static-body p {
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
  .static-page {
    padding: 3rem 1.25rem;
  }
  .static-title {
    font-size: 2rem;
  }
}

/* ──────────────────────────────────────────────────────────
   ## FULL-WIDTH PAGES
   ────────────────────────────────────────────────────────── */
.full-width-page {
  padding: 4rem 2rem;
  background: var(--surface);
  min-height: 60vh;
}
.full-width-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.page-header {
  text-align: center;
  margin-bottom: 4rem;
}
.page-title {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 1rem;
}
.page-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--muted-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.placeholder-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.placeholder-icon {
  margin-bottom: 2rem;
  opacity: 0.8;
}
.placeholder-content h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.placeholder-content p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.placeholder-content ul {
  text-align: left;
  display: inline-block;
  margin-bottom: 2rem;
}
.placeholder-content li {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}
.placeholder-content li::before {
  content: '•';
  color: var(--gold);
  font-weight: bold;
  position: absolute;
  left: 0;
}

.off-week-message {
  text-align: center;
  max-width: 600px;
  margin: 2rem auto;
  padding: 2rem 1.5rem;
  border: 2px solid var(--gold);
  border-radius: 8px;
  background: var(--light-bg);
}

.off-week-message h2 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-bottom: 1.5rem;
}

.off-week-message p {
  font-size: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.off-week-message strong {
  color: var(--text);
}

/* Dark-state between-cycles banner — leaderboard + projections */
.between-cycles-banner {
  background: rgba(255,255,255,0.06);
  border-left: 3px solid var(--pga-gold, #C9A84C);
  color: var(--sec-muted, #aaa);
  font-size: 0.85rem;
  padding: 0.6rem 1rem;
  margin-bottom: 0.75rem;
}

@media (max-width: 600px) {
  .full-width-page {
    padding: 3rem 1.25rem;
  }
  .page-title {
    font-size: 2.2rem;
  }
  .page-subtitle {
    font-size: 1.1rem;
  }
  .placeholder-content h2 {
    font-size: 1.5rem;
  }
  .off-week-message h2 {
    font-size: 1.5rem;
  }
}
/* ──────────────────────────────────────────────────────────
   ## MATCHUP TOOL
   ────────────────────────────────────────────────────────── */
.matchup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.matchup-form {
  background: var(--surface);
  border-left: 3px solid var(--gold);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.matchup-label {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.matchup-select {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  width: 100%;
  border-radius: 0;
  transition: border-color 0.2s;
}
.matchup-select:focus {
  outline: none;
  border-color: var(--gold);
}
.matchup-vs {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin: 1rem 0;
  letter-spacing: 0.05em;
}
#matchup-calculate {
  margin-top: 1rem;
  width: 100%;
}
.matchup-explainer {
  background: var(--surface);
  padding: 2.5rem;
}
.matchup-explainer h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.matchup-explainer p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.matchup-explainer p:last-child {
  margin-bottom: 0;
}
@media (max-width: 720px) {
  .matchup-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ──────────────────────────────────────────────────────────
   ## FAAB TABS
   ────────────────────────────────────────────────────────── */
.faab-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.faab-tab.active {
  border-color: var(--gold);
  color: var(--gold);
}
.faab-panel {
  display: none;
}
.faab-panel.active {
  display: block;
}

/* ──────────────────────────────────────────────────────────
   ## PGA EVENT HEADER — tournament logo (or event-name fallback)
   shown above the leaderboard / projections data tables.
   Rendered server-side by btr_pga_event_logo_block() in functions.php
   from the cached JSON in /wp-content/uploads/btr-data/.
   ────────────────────────────────────────────────────────── */
.btr-event-header {
  text-align: center;
  margin-bottom: 2rem;
}
.btr-event-header img {
  display: inline-block;
  height: 100px;
  width: auto;
  max-width: 100%;
}
.btr-event-name-fallback {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
}

/* Inline variant — logo (or text fallback) sits to the left of the
   page H1 inside the page header. Applied by adding the
   .page-header--with-logo modifier to the <header> when a logo or
   fallback span is present. Off-week / missing event → no modifier,
   header stays centered exactly as before. */
.page-header--with-logo {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  text-align: left;
}
.page-header--with-logo .event-logo-inline {
  height: 160px;
  width: auto;
  flex-shrink: 0;
}
.page-header--with-logo .event-name-fallback-inline {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  flex-shrink: 0;
}
.page-header--with-logo .page-header-text {
  flex: 1;
  min-width: 0;
}
.page-header--with-logo .page-title {
  margin-top: 0;
  margin-bottom: 0.75rem;
}
.page-header--with-logo .page-subtitle {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

@media (max-width: 720px) {
  .page-header--with-logo {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .page-header--with-logo .event-logo-inline {
    height: 120px;
  }
  .page-header--with-logo .page-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Tournament info strip — pipe-separated event name / course+location /
   date range, sits below the page header on /leaderboard/ and
   /pga/projections/. Renders nothing during off-week (the helper
   returns empty markup). Typography is the existing .btr-header-pipe
   (small uppercase, muted, letter-spaced) so it matches the article
   header pipe. */
.btr-event-info {
  text-align: center;
  margin: 0 0 2rem;
}
/* Bump up from the article-header typography (.btr-header-pipe is ~11px).
   The data pages use this strip as a tournament identity header, not as
   fine-print metadata.
   IMPORTANT: this selector intentionally combines both classes
   (.btr-event-info.btr-header-pipe). .btr-header-pipe is defined LATER in
   this file, so a single-class .btr-event-info rule loses the cascade for
   font-size. The double-class selector wins on specificity (0,2,0 vs
   0,1,0) regardless of source order. .btr-header-pipe itself stays
   untouched so the article-header bar keeps its existing look. */
.btr-event-info.btr-header-pipe {
  font-size: 1.125rem;     /* 18px desktop */
  letter-spacing: 0.08em;
  font-weight: 600;
}
@media (max-width: 720px) {
  .btr-event-info.btr-header-pipe {
    font-size: 1rem;       /* 16px mobile */
    letter-spacing: 0.06em;
  }
}

/* ──────────────────────────────────────────────────────────
   ## BTR ARTICLE — wrapper classes for all published articles
   Generated by Claude | May 2026
   Classes: btr-article, btr-article-header, btr-header-tag,
            btr-header-pipe, btr-article-body, btr-disclaimer
   ────────────────────────────────────────────────────────── */

/* ── Outer wrapper ── */
.btr-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  font-family: var(--font-body);
  color: var(--text-soft);
}

/* ── Article header bar — tag + tournament pipe ── */
.btr-article-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gold);
  flex-wrap: wrap;
}
.btr-header-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0f0f0f;
  background: var(--gold);
  padding: 0.3rem 0.75rem;
  white-space: nowrap;
}
.btr-header-pipe {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}

/* ── Article body — base prose ── */
.btr-article-body {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-soft);
}

/* H1 — article headline */
.btr-article-body h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

/* H2 — major section breaks */
.btr-article-body h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

/* H3 — sub-sections (Course Profile, Did You Know, etc.) */
.btr-article-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-top: 2.25rem;
  margin-bottom: 0.9rem;
}

/* Paragraphs */
.btr-article-body p {
  margin-bottom: 1.25rem;
  color: var(--text-soft);
}

/* Strong inside body */
.btr-article-body strong {
  font-weight: 600;
  color: var(--text);
}

/* HR dividers */
.btr-article-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5rem 0;
}

/* Inline links */
.btr-article-body a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.btr-article-body a:hover { color: var(--gold-dim); }

/* ── Tables ── */
.btr-article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.75rem 0 2rem;
  font-size: 0.88rem;
  overflow-x: auto;
  display: block;
}
.btr-article-body table thead tr {
  background: #111;
  border-bottom: 2px solid var(--gold);
}
.btr-article-body table thead th {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.75rem 1rem;
  white-space: nowrap;
}
.btr-article-body table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.12s;
}
.btr-article-body table tbody tr:nth-child(even) {
  background: var(--card-alt);
}
.btr-article-body table tbody tr:hover {
  background: rgba(201, 168, 76, 0.07);
}
.btr-article-body table tbody td {
  padding: 0.75rem 1rem;
  color: var(--text-soft);
  white-space: nowrap;
}
/* First column (player names) — slightly brighter */
.btr-article-body table tbody td:first-child {
  color: var(--text);
  font-weight: 500;
}

/* Mobile table scroll hint */
@media (max-width: 640px) {
  .btr-article-body table {
    font-size: 0.82rem;
  }
  .btr-article-body table thead th,
  .btr-article-body table tbody td {
    padding: 0.6rem 0.65rem;
  }
}

/* ── Disclaimer block ── */
.btr-disclaimer {
  margin-top: 3.5rem;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  background: var(--card);
  font-size: 0.8rem;
  font-style: italic;
  color: var(--muted);
  line-height: 1.65;
}

/* ── Responsive article padding ── */
@media (max-width: 640px) {
  .btr-article {
    padding: 2rem 1.25rem 4rem;
  }
  .btr-article-body h1 {
    font-size: 1.5rem;
  }
  .btr-article-body h2 {
    font-size: 1.15rem;
  }
}


/* ==========================================
   PGA Hub page (page-pga.php) - v4 LOCKED
   Locked design: docs/mockups/btr_pga_homepage_v4_locked.html
   Fairway palette (deep green + electric yellow on white).
   v4 delta: all four data widgets live in the body (Live Coverage +
   Tools for This Week, 2-up each); the right sidebar holds CTA/ad
   placeholders (.sidebar-widget / .ad-slot). Odds widget is not sticky.
   All selectors namespaced under .pga-hub-root so the dark site
   theme stays untouched everywhere else. The site nav is NOT here
   — it is global (.site-nav block, section 4).
   ========================================== */
.pga-hub-root {
  /* Section palette (--sec-*) is defined once on body.theme-pga
     — see the "Section palette" block earlier in this file. */
  background: var(--sec-bg);
  color: var(--sec-text);
  font-family: var(--font-chrome);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
body.page-pga-hub { background: #ffffff; }
.pga-hub-root *, .pga-hub-root *::before, .pga-hub-root *::after { box-sizing: border-box; }
.pga-hub-root img { max-width: 100%; display: block; }
.pga-hub-root a { color: inherit; text-decoration: none; }
.pga-hub-root button { font-family: inherit; cursor: pointer; }

/* Page grid */
.pga-hub-root .page-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
}
.pga-hub-root .main-col { min-width: 0; }
.pga-hub-root .right-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: start;
}

/* ----- Hero + Article List row ----- */
.pga-hub-root .hero-row {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 20px;
  margin-bottom: 36px;
  align-items: stretch;
}
.pga-hub-root .hero-img {
  position: relative;
  min-height: 540px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--sec-grad-hero);
  display: flex;
  align-items: flex-end;
  color: #fff;
  transition: transform 0.2s ease;
}
.pga-hub-root .hero-img .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.pga-hub-root .placeholder-stack {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  z-index: 0;
  pointer-events: none;
  padding-bottom: 90px;
}
.pga-hub-root .placeholder-logo {
  height: 130px;
  width: auto;
  opacity: 0.95;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.28));
}
.pga-hub-root .placeholder-graphic {
  font-size: 64px;
  font-weight: 900;
  opacity: 0.18;
  color: #fff;
  letter-spacing: -0.03em;
}
.pga-hub-root .hero-img:not(.is-placeholder) .placeholder-stack { display: none; }
.pga-hub-root .hero-img.is-placeholder .hero-bg { opacity: 0; }
.pga-hub-root .hero-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--sec-hero-overlay);
  z-index: 1;
}
.pga-hub-root .hero-img.is-placeholder::after {
  background: none;
}
.pga-hub-root .hero-img .hero-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  transition: opacity 0.2s ease;
}
.pga-hub-root .hero-img .hero-title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -0.015em;
  margin: 12px 0 10px;
  max-width: 720px;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}
.pga-hub-root .hero-img .hero-meta { font-size: 13px; font-weight: 600; opacity: 0.95; }
.pga-hub-root .tag {
  display: inline-block;
  background: var(--sec-accent);
  color: #0a1a12;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
}

/* ----- Article List (middle column, hover-driven) ----- */
.pga-hub-root .article-list {
  background: var(--sec-surface);
  border: 1px solid var(--sec-border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pga-hub-root .list-head {
  background: var(--sec-primary);
  color: #fff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.pga-hub-root .list-head .list-title {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pga-hub-root .list-head .list-sub {
  font-size: 11px;
  font-weight: 700;
  opacity: 0.88;
}
.pga-hub-root .article-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  padding: 11px 14px;
  border-bottom: 1px solid var(--sec-border);
  cursor: pointer;
  transition: background 0.15s ease, padding-left 0.15s ease;
  align-items: center;
  border-left: 3px solid transparent;
}
.pga-hub-root .article-row:last-child { border-bottom: none; }
.pga-hub-root .article-row.art-hidden { display: none; }
.pga-hub-root .article-row:hover,
.pga-hub-root .article-row.active {
  background: var(--sec-surface-alt);
  border-left-color: var(--sec-accent);
}
.pga-hub-root .article-thumb {
  width: 80px;
  height: 50px;
  border-radius: 6px;
  background-size: cover;
  background-position: center top;
  background-color: var(--sec-surface-alt);
  flex-shrink: 0;
}
.pga-hub-root .article-row-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.pga-hub-root .article-row-tag {
  font-size: 9px;
  font-weight: 800;
  color: var(--sec-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.pga-hub-root .article-row-body h3 {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pga-hub-root .article-row-meta { font-size: 10px; color: var(--sec-muted); }
.pga-hub-root .article-empty {
  padding: 28px 16px;
  text-align: center;
  color: var(--sec-muted);
  font-size: 13px;
  font-style: italic;
}
.pga-hub-root .list-foot {
  padding: 11px 16px;
  border-top: 1px solid var(--sec-border);
  background: var(--sec-surface-alt);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pga-hub-root .list-foot a {
  font-size: 12px;
  font-weight: 800;
  color: var(--sec-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pga-hub-root .list-foot a:hover { color: var(--sec-accent-2); }
.pga-hub-root .art-show-more {
  font-size: 12px;
  font-weight: 800;
  color: var(--sec-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.pga-hub-root .art-show-more:hover { color: var(--sec-accent-2); }

/* ----- Two-tier widget header (shared by all four widgets) ----- */
body.theme-pga .widget-head {
  background: var(--sec-primary);
  color: #fff;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
body.theme-pga .widget-event-name {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
body.theme-pga .widget-event-status {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  flex-shrink: 0;
}
body.theme-pga .widget-event-status.live { background: var(--sec-accent-2); }
body.theme-pga .live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sec-accent-2);
  box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.32);
  animation: pga-hub-pulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pga-hub-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }

body.theme-pga .widget-subhead {
  background: #e8ecf0;
  border-bottom: 1px solid #d0d6dc;
  padding: 0 16px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
body.theme-pga .tool-name {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #2a3540;
}
body.theme-pga .tool-sub {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #5a6671;
}

/* Silver-band meta — the tool pages' course / dates / "Updated …"
   strip (parts/widget-header.php). Sits in the .tool-sub slot on the
   right of the silver band. The hub widgets don't render it. */
body.theme-pga .widget-subhead-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5a6671;
  min-width: 0;
}
body.theme-pga .widget-subhead-meta .wsm-item {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.theme-pga .widget-subhead-meta .wsm-item + .wsm-item::before {
  content: "\00b7";
  margin-right: 7px;
  color: #aab2ba;
}
body.theme-pga .widget-updated strong { color: #2a3540; font-weight: 800; }
@media (max-width: 480px) {
  /* On small phones the full "Course · Dates · Updated …" string overflows.
     Hide course and date items — keep only the Updated timestamp. */
  body.theme-pga .widget-subhead-meta .wsm-item:not(.widget-updated) {
    display: none !important;
  }
  /* Remove the leading dot that was on the Updated item when it was third */
  body.theme-pga .widget-subhead-meta .widget-updated::before {
    display: none !important;
  }
}
@media (max-width: 720px) {
  body.theme-pga .widget-subhead {
    height: auto;
    padding-top: 7px;
    padding-bottom: 7px;
    flex-wrap: wrap;
    gap: 4px 8px;
  }
}
@media (max-width: 480px) {
  /* Widget green header — tighter on small phones */
  body.theme-pga .widget-head { padding: 9px 12px; }
  body.theme-pga .widget-event-name { font-size: 11px; }
  body.theme-pga .widget-event-status { font-size: 9px; padding: 2px 6px; }
  body.theme-pga .widget-subhead { padding-left: 12px; padding-right: 12px; }
  body.theme-pga .tool-name { font-size: 10px; }
}

.pga-hub-root .proj-toggle { display: flex; gap: 4px; }
.pga-hub-root .proj-toggle button {
  padding: 0 10px;
  height: 22px;
  line-height: 1;
  font-size: 10px;
  font-weight: 800;
  background: #fff;
  border: 1px solid #c8cfd5;
  color: #2a3540;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
}
.pga-hub-root .proj-toggle button:hover { border-color: var(--sec-primary); }
.pga-hub-root .proj-toggle button.active {
  background: var(--sec-primary);
  color: #fff;
  border-color: var(--sec-primary);
}

/* ----- Widget foot (shared) ----- */
.pga-hub-root .widget-foot {
  padding: 11px 16px;
  border-top: 1px solid var(--sec-border);
  background: var(--sec-surface-alt);
}
.pga-hub-root .widget-foot a {
  font-size: 12px;
  font-weight: 800;
  color: var(--sec-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pga-hub-root .widget-foot a:hover { color: var(--sec-accent-2); }

/* ----- Empty-state rows (leaderboard / odds / projections / matchup) ----- */
.pga-hub-root .empty-row {
  padding: 20px 16px;
  text-align: center;
  color: var(--sec-muted);
  font-size: 13px;
  font-style: italic;
}

/* ----- Leaderboard widget (in body, Live Coverage 2-up) ----- */
.pga-hub-root .leaderboard-widget {
  background: var(--sec-surface);
  border: 1px solid var(--sec-border);
  border-radius: 14px;
  overflow: hidden;
}
/* Shared 5-col grid definition — header row + live data rows */
.pga-hub-root .lb-header-row,
.pga-hub-root .leaderboard-list.is-live .lb-row {
  grid-template-columns: 22px 1fr 34px 26px 38px;
  gap: 0 6px;
}
/* Header row — only shown in live/final */
.pga-hub-root .lb-header-row {
  display: grid;
  align-items: center;
  padding: 5px 16px 4px;
  background: var(--sec-surface-alt);
  border-bottom: 1px solid var(--sec-border);
}
.pga-hub-root .lb-header-col {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--sec-muted);
  text-align: right;
  text-transform: uppercase;
}
/* All data rows — base layout (pre-round 3-col; is-live overrides to 5-col above) */
.pga-hub-root .lb-row {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 0 8px;
  padding: 9px 16px;
  border-bottom: 1px solid var(--sec-border);
  font-size: 13px;
}
.pga-hub-root .lb-row:last-child { border-bottom: none; }
/* Striping: no header → odd rows; with header (child 1) → even children are 1st/3rd data rows */
.pga-hub-root .lb-row:nth-child(odd) { background: var(--sec-surface-alt); }
.pga-hub-root .lb-header-row ~ .lb-row { background: transparent; }
.pga-hub-root .lb-header-row ~ .lb-row:nth-child(even) { background: var(--sec-surface-alt); }
/* Column styles */
.pga-hub-root .lb-pos { font-size: 11px; font-weight: 800; color: var(--sec-muted); }
.pga-hub-root .lb-name { font-weight: 700; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pga-hub-root .lb-today {
  font-size: 12px;
  font-weight: 700;
  color: var(--sec-muted);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.pga-hub-root .lb-today.score-negative { color: var(--sec-accent-2); }
.pga-hub-root .lb-thru {
  font-size: 11px;
  font-weight: 400;
  color: var(--sec-muted);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.pga-hub-root .lb-score {
  font-weight: 800;
  color: var(--sec-primary);
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.pga-hub-root .lb-score.score-negative { color: var(--sec-accent-2); }
.pga-hub-root .lb-row.t1 .lb-pos { color: var(--sec-accent-2); }

/* ----- Odds widget (in body, Live Coverage 2-up — not sticky) ----- */
.pga-hub-root .odds-widget {
  background: var(--sec-surface);
  border: 1px solid var(--sec-border);
  border-radius: 14px;
  overflow: hidden;
}
.pga-hub-root .odds-toggle {
  padding: 10px 14px;
  background: var(--sec-surface-alt);
  border-bottom: 1px solid var(--sec-border);
  display: flex;
  gap: 6px;
}
.pga-hub-root .odds-toggle button {
  flex: 1;
  padding: 6px 8px;
  background: var(--sec-surface);
  border: 1px solid var(--sec-border);
  color: var(--sec-text);
  font-size: 11px;
  font-weight: 800;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.pga-hub-root .odds-toggle button.active {
  background: var(--sec-primary);
  color: #fff;
  border-color: var(--sec-primary);
}
.pga-hub-root .odds-market-label {
  padding: 9px 16px 7px;
  font-size: 10px;
  font-weight: 700;
  color: var(--sec-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--sec-surface);
  border-bottom: 1px solid var(--sec-border);
}
.pga-hub-root .odds-list { max-height: 520px; overflow-y: auto; }
.pga-hub-root .odds-row {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  padding: 9px 16px;
  border-bottom: 1px solid var(--sec-border);
  font-size: 13px;
}
.pga-hub-root .odds-row:last-child { border-bottom: none; }
.pga-hub-root .odds-row:nth-child(odd) { background: var(--sec-surface-alt); }
.pga-hub-root .odds-pos { font-weight: 800; color: var(--sec-muted); font-size: 11px; }
.pga-hub-root .odds-name { font-weight: 700; }
.pga-hub-root .odds-price {
  font-weight: 900;
  color: var(--sec-primary);
  font-variant-numeric: tabular-nums;
}
.pga-hub-root .odds-row.hot .odds-price { color: var(--sec-accent-2); }

/* ----- Section headers ----- */
.pga-hub-root .section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 16px;
}
.pga-hub-root .section-head h2 {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pga-hub-root .section-head h2::before {
  content: "";
  width: 5px;
  height: 20px;
  background: var(--sec-accent);
  border-radius: 2px;
}
.pga-hub-root .section-head a {
  font-size: 12px;
  font-weight: 800;
  color: var(--sec-primary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pga-hub-root .section-head a:hover { color: var(--sec-accent-2); }

/* ----- Widgets sections (Live Coverage / Tools for This Week) ----- */
.pga-hub-root .widgets-section { margin-bottom: 36px; }
.pga-hub-root .widgets-section:last-child { margin-bottom: 8px; }
.pga-hub-root .widgets-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.pga-hub-root .widget-card {
  background: var(--sec-surface);
  border: 1px solid var(--sec-border);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pga-hub-root .matchup-body {
  padding: 22px 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}
.pga-hub-root .matchup-body.matchup-empty {
  display: block;
  text-align: center;
}
.pga-hub-root .matchup-player { text-align: center; }
.pga-hub-root .player-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sec-grad-hero);
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.pga-hub-root .matchup-player.p2 .player-avatar { background: var(--sec-grad-4); }
.pga-hub-root .player-name { font-weight: 800; font-size: 15px; margin-bottom: 4px; }
.pga-hub-root .player-odds {
  font-size: 22px;
  font-weight: 900;
  color: var(--sec-primary);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}
.pga-hub-root .matchup-player.fav .player-odds { color: var(--sec-accent-2); }
.pga-hub-root .matchup-vs {
  font-size: 13px;
  font-weight: 900;
  color: var(--sec-muted);
  background: var(--sec-surface-alt);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pga-hub-root .matchup-edge {
  background: var(--sec-surface-alt);
  padding: 12px 20px;
  border-top: 1px solid var(--sec-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}
.pga-hub-root .edge-label {
  font-weight: 700;
  color: var(--sec-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pga-hub-root .edge-value { font-weight: 900; color: var(--sec-accent-2); font-size: 14px; }

.pga-hub-root .projections-list { flex: 1; padding: 6px 0; }
.pga-hub-root .proj-row {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  align-items: center;
  padding: 11px 20px;
  border-bottom: 1px solid var(--sec-border);
  font-size: 14px;
}
.pga-hub-root .proj-row:last-child { border-bottom: none; }
.pga-hub-root .proj-pos { font-size: 12px; font-weight: 800; color: var(--sec-muted); }
.pga-hub-root .proj-row.t1 .proj-pos { color: var(--sec-accent-2); }
.pga-hub-root .proj-name { font-weight: 700; }
.pga-hub-root .proj-score {
  font-weight: 800;
  color: var(--sec-primary);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* ----- Right-sidebar widgets (signup + ad placeholders) -----
   v4: the right sidebar is CTA/monetization real estate. These are
   placeholder shells — production swaps in a real email-provider embed
   and real ad creative. Markup is intentionally minimal. */
.pga-hub-root .sidebar-widget {
  background: var(--sec-surface);
  border: 1px solid var(--sec-border);
  border-radius: 14px;
  overflow: hidden;
}
.pga-hub-root .sidebar-widget .sw-head {
  background: var(--sec-primary);
  color: #fff;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pga-hub-root .sidebar-widget .sw-body { padding: 18px 16px 20px; }
.pga-hub-root .signup-widget .sw-body p {
  font-size: 13px;
  color: var(--sec-muted);
  margin-bottom: 14px;
  line-height: 1.5;
}
.pga-hub-root .signup-widget input[type="email"] {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--sec-border);
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
  margin-bottom: 10px;
  outline: none;
  transition: border-color 0.15s;
}
.pga-hub-root .signup-widget input[type="email"]:focus { border-color: var(--sec-primary); }
.pga-hub-root .signup-widget .sw-btn {
  width: 100%;
  padding: 11px;
  background: var(--sec-primary);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: background 0.15s;
}
.pga-hub-root .signup-widget .sw-btn:hover { background: var(--sec-primary-deep); }
.pga-hub-root .signup-widget .sw-fine {
  font-size: 11px;
  color: var(--sec-muted);
  margin-top: 10px;
}

.pga-hub-root .ad-slot {
  border: 1px dashed #cbd2d8;
  border-radius: 14px;
  padding: 8px;
  text-align: center;
}
.pga-hub-root .ad-slot .ad-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--sec-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.pga-hub-root .ad-slot .ad-box {
  background: #eef1f4;
  border-radius: 8px;
  color: #8b96a0;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pga-hub-root .ad-slot.ad-300x250 .ad-box { height: 250px; }
.pga-hub-root .ad-slot.ad-300x600 .ad-box { height: 600px; }

/* ----- Responsive ----- */
@media (max-width: 1100px) {
  .pga-hub-root .page-grid { grid-template-columns: 1fr; }
  .pga-hub-root .right-sidebar { flex-direction: row; flex-wrap: wrap; }
  .pga-hub-root .sidebar-widget,
  .pga-hub-root .ad-slot { flex: 1 1 280px; }
}
@media (max-width: 760px) {
  .pga-hub-root .hero-row { grid-template-columns: 1fr; }
  .pga-hub-root .widgets-row { grid-template-columns: 1fr; }
  .pga-hub-root .right-sidebar { flex-direction: column; }
  .pga-hub-root .hero-img { min-height: 360px; }
  .pga-hub-root .hero-img .hero-title { font-size: 22px; }
}
@media (max-width: 480px) {
  /* Tall enough for logo + PGA watermark (centered upper zone) +
     hero-content at the bottom with no overlap */
  .pga-hub-root .hero-img { min-height: 420px; }
  .pga-hub-root .hero-img .hero-title { font-size: 20px; }
  .pga-hub-root .hero-img .hero-content { padding: 20px; }
  /* Stack: keep center-justified, pull center point up 50px so
     content lands in the upper ~55% and the bottom ~45% is clear
     for hero-content */
  .pga-hub-root .placeholder-stack {
    justify-content: center;
    padding-top: 0;
    padding-bottom: 100px;
    gap: 10px;
  }
  .pga-hub-root .placeholder-logo { height: 100px; }
  .pga-hub-root .placeholder-graphic { font-size: 52px; }
  .pga-hub-root .sidebar-widget .sw-head { font-size: 11px; padding: 9px 12px; }
}


/* ==========================================
   PGA Articles page (page-pga-articles.php)
   Article index at /pga/articles/. Fairway palette, white body,
   under the shared dark-green site nav (rendered via get_header()).
   ========================================== */
.pga-articles-root {
  background: #ffffff;
  color: #0a1a12;
  font-family: var(--font-chrome);
  -webkit-font-smoothing: antialiased;
}
.pga-articles-root *, .pga-articles-root *::before, .pga-articles-root *::after { box-sizing: border-box; }

.pga-articles-hero {
  background: linear-gradient(135deg, #0a4d2e 0%, #1f7a4a 100%);
  color: #fff;
}
.pga-articles-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}
body.theme-pga .pga-articles-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sec-accent);
  margin-bottom: 8px;
}
.pga-articles-hero h1 {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: #fff;
}
.pga-articles-hero p {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
  margin: 0;
  max-width: 620px;
}

.pga-articles-body {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 24px 64px;
}

.pga-articles-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.pga-articles-filters .filter-chip {
  font-size: 12px;
  font-weight: 800;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid #e6e9e0;
  color: #5a6b62;
  background: #fff;
  text-decoration: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  display: inline-block;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.pga-articles-filters .filter-chip:hover:not(.active) {
  background: #f2f5ef;
  border-color: #c8d4c2;
  color: #2d4a38;
}
body.theme-pga .pga-articles-filters .filter-chip.active {
  background: #0a4d2e;
  border-color: #0a4d2e;
  color: var(--sec-accent);
}

.pga-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pga-articles-root .article-card {
  background: #fff;
  border: 1px solid #e6e9e0;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.pga-articles-root .article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  border-color: #0a4d2e;
}
.pga-articles-root .article-card-thumb {
  position: relative;
  /* Fallback shown when no featured image is set */
  background: linear-gradient(135deg, #0a4d2e 0%, #1f7a4a 100%);
  line-height: 0; /* kills the gap below inline img */
}
.pga-articles-root .article-card-thumb > img {
  /* Natural proportions — no fixed height, no object-fit, never crops */
  width: 100%;
  height: auto;
  display: block;
}
/* Tournament badge — white circle overlaid bottom-left of the thumbnail */
.article-card-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  width: 36%;
  aspect-ratio: 1;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8%;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.32), 0 1px 4px rgba(0, 0, 0, 0.18);
  z-index: 2;
  pointer-events: none;
}
.article-card-badge img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}
.pga-articles-root .article-card-body { padding: 16px 16px 18px; }
.pga-articles-root .article-card-cat {
  display: block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #0a4d2e;
  margin-bottom: 7px;
}
.pga-articles-root .article-card-body h3 {
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.005em;
  margin: 0 0 10px;
  color: #0a1a12;
}
.pga-articles-root .article-card-meta { font-size: 11px; color: #5a6b62; }

.pga-articles-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 32px;
}
.pga-articles-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  font-size: 13px;
  font-weight: 800;
  border: 1px solid #e6e9e0;
  border-radius: 7px;
  color: #0a4d2e;
  background: #fff;
}
.pga-articles-pagination a.page-numbers:hover {
  border-color: #0a4d2e;
  background: #f7faf3;
}
.pga-articles-pagination .page-numbers.current {
  background: #0a4d2e;
  border-color: #0a4d2e;
  color: #fff;
}
.pga-articles-pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
}

.pga-articles-empty {
  padding: 48px 16px;
  text-align: center;
  color: #5a6b62;
  font-size: 15px;
  font-style: italic;
}

@media (max-width: 900px) {
  .pga-articles-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pga-articles-grid { grid-template-columns: 1fr; }
  .pga-articles-hero h1 { font-size: 26px; }
}


/* ==========================================
   Events Coming Soon page (page-events.php)
   ========================================== */
.events-coming-soon {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem 6rem;
  background: var(--bg);
}
.events-coming-soon .ecs-card {
  max-width: 560px;
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  text-align: center;
}
.events-coming-soon .ecs-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.events-coming-soon h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text);
  margin-bottom: 1rem;
}
.events-coming-soon p {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted-light);
  line-height: 1.7;
  margin-bottom: 1.75rem;
}
.events-coming-soon .ecs-back {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  transition: background 0.15s ease, color 0.15s ease;
}
.events-coming-soon .ecs-back:hover {
  background: var(--gold);
  color: var(--bg);
}
@media (max-width: 480px) {
  .events-coming-soon { padding: 3rem 1rem 4rem; }
  .events-coming-soon .ecs-card { padding: 2rem 1.25rem; }
  .events-coming-soon h1 { font-size: 1.5rem; }
}

/* ==========================================
   About Us page (page-about.php)
   ========================================== */
.about-page {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 7rem;
  background: transparent;
}
.about-inner {
  max-width: 640px;
  width: 100%;
}
.about-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.about-headline {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #0a0a0a;
  margin-bottom: 2rem;
  line-height: 1.15;
}
.about-body p {
  font-family: var(--font-body);
  font-size: 1.075rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.about-body p:last-child {
  margin-bottom: 0;
}
.about-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.about-link {
  display: inline-block;
  padding: 0.65rem 1.4rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}
.about-link:hover {
  background: var(--gold);
  color: var(--bg);
}
@media (max-width: 480px) {
  .about-page { padding: 3.5rem 1rem 5rem; }
  .about-headline { font-size: 1.75rem; }
  .about-body p { font-size: 1rem; }
  .about-links { flex-direction: column; }
}

/* ──────────────────────────────────────────────────────────
   16.  ROOT HOMEPAGE — front-page.php, v1 LOCKED
        (docs/mockups/btr_root_homepage_v1_locked.html)

        Editorial-first root homepage. Everything is scoped under
        .root-home so the white B&W root palette never collides
        with the dark BTR brand or the PGA section surfaces. The
        shared site nav (B&W via body.theme-root, section 4b) and
        the shared dark .site-footer are NOT scoped here.

        Local --rh-* tokens stay on .root-home — promote to :root
        only if a second B&W surface (About Us) adopts the same
        palette.
   ────────────────────────────────────────────────────────── */
.root-home {
  --rh-bg:     #ffffff;
  --rh-text:   #0a0a0a;
  --rh-muted:  #6a6a6a;
  --rh-border: #e8e8e8;
  --rh-soft:   #f5f5f5;
  background: var(--rh-bg);
  color: var(--rh-text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Inter, Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.root-home a { color: inherit; text-decoration: none; }
.root-home img { max-width: 100%; display: block; }

/* ===== Hero (editorial — bottom black fade) ===== */
.root-home .hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 24px 24px;
  background: transparent;
  border-bottom: none;
}
.root-home .eyebrow {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--rh-muted);
  margin-bottom: 16px;
}
.root-home .hero-card {
  position: relative;
  min-height: 580px;
  border-radius: 4px;
  overflow: hidden;
  background: #1a1a1a;
  color: #fff;
  display: flex;
  align-items: flex-end;
}
.root-home .hero-card--empty {
  background: linear-gradient(150deg, #1a1a1a 0%, #0a0a0a 100%);
}
.root-home .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Hero overlay — sport-tinted gradient feathers up from the bottom
   Default: no overlay (preview / market / projections show the full
   image clean). Recap articles get a sport-tinted gradient to hold
   the white text. Add hero-card--type-recap to enable it. */
.root-home .hero-card::after {
  content: none;
}
.root-home .hero-card.hero-card--type-recap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0) 20%, rgba(0,0,0,0.3) 55%, rgba(0,0,0,0.72) 100%);
}
.root-home .hero-card.hero-card--type-recap.hero-card--pga::after {
  background: linear-gradient(180deg, rgba(6,56,32,0) 20%, rgba(6,56,32,0.45) 55%, rgba(6,56,32,0.82) 100%);
}
.root-home .hero-card.hero-card--type-recap.hero-card--nfl::after {
  background: linear-gradient(180deg, rgba(10,18,32,0) 20%, rgba(10,18,32,0.45) 55%, rgba(10,18,32,0.82) 100%);
}
.root-home .hero-content {
  position: relative;
  z-index: 2;
  padding: 56px;
  max-width: 920px;
}
.root-home .hero-tag {
  display: inline-block;
  background: #fff;
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
  margin-bottom: 18px;
}
.root-home .hero-event-chip {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  margin-right: 12px;
  padding: 6px 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: 100px;
}
.root-home .event-name {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
}
.root-home .hero-card h1 {
  font-size: 56px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.root-home .hero-card h1 a { color: #fff; }
.root-home .hero-card h1 a:hover { opacity: 0.92; }
/* Full-card overlay link — direct child of hero-card (position:relative),
   covers the entire hero so clicking anywhere on the image navigates */
.root-home .hero-overlay-link {
  position: absolute;
  inset: 0;
  z-index: 3;
}
.root-home .hero-deck {
  font-size: 18px;
  line-height: 1.5;
  opacity: 0.92;
  max-width: 720px;
  margin-bottom: 18px;
  font-weight: 400;
}
.root-home .hero-meta {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.85;
}

/* Preview hero desktop — featured image is white so text must be dark.
   On mobile a separate dark image is served; text stays white (default). */
@media (min-width: 640px) {
  .root-home .hero-card--type-preview { color: #111111; }
  .root-home .hero-card--type-preview h1 a { color: #111111; }
  .root-home .hero-card--type-preview h1 a:hover { opacity: 0.75; }
  .root-home .hero-card--type-preview .hero-deck { color: rgba(0,0,0,0.68); }
  .root-home .hero-card--type-preview .hero-meta { color: rgba(0,0,0,0.55); }
  .root-home .hero-card--type-preview .hero-event-chip {
    background: rgba(0,0,0,0.06);
    border-color: rgba(0,0,0,0.14);
  }
  .root-home .hero-card--type-preview .event-name { color: #111111; }
  .root-home .hero-card--type-preview .hero-tag {
    background: #c9a44a;
    color: #fff;
  }
}

/* ===== Section shell + heads ===== */
.root-home .section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 24px;
}
/* NOTE: the root section-head uses a 2px solid black bottom border —
   deliberately different from the PGA hub's yellow accent bar. */
.root-home .section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 2px solid #0a0a0a;
}
.root-home .section-head h2 {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.root-home .section-head a {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.root-home .section-head a:hover { text-decoration: underline; }

/* ===== Latest Coverage row ===== */
.root-home .articles-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.root-home .article-card {
  display: block;
  width: 100%;
  min-width: 0;
  transition: transform 0.18s ease;
}
.root-home .article-card:hover { transform: translateY(-3px); }
.root-home .article-thumb {
  width: 100%;
  border-radius: 3px;
  overflow: hidden;
  background: #1a1a1a;
  margin-bottom: 16px;
  line-height: 0;
}
.root-home .article-thumb img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}
.root-home .article-thumb--placeholder {
  background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}
.root-home .article-cat {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rh-muted);
  margin-bottom: 8px;
}
.root-home .article-card h3 {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.root-home .article-meta {
  font-size: 12px;
  color: var(--rh-muted);
}

/* ===== Coverage by Sport tiles ===== */
.root-home .sports {
  background: var(--rh-soft);
  padding: 64px 0;
}
.root-home .sports-inner { padding-top: 0; padding-bottom: 0; }
.root-home .sport-tiles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.root-home .sport-tile {
  position: relative;
  aspect-ratio: 2 / 1;
  border-radius: 6px;
  overflow: hidden;
  background: #1a1a1a;
  color: #fff;
  display: flex;
  align-items: flex-end;
  transition: transform 0.2s ease;
}
.root-home a.sport-tile:hover { transform: translateY(-3px); }
.root-home .sport-tile.pga {
  background: linear-gradient(135deg, #0a4d2e 0%, #1f7a4a 100%);
}
.root-home .sport-tile.nfl {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  opacity: 0.7;
  cursor: default;
}
.root-home .sport-tile .tile-content {
  padding: 36px;
  width: 100%;
  position: relative;
  z-index: 2;
}
.root-home .sport-tile .tile-label {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.85;
  margin-bottom: 12px;
}
.root-home .sport-tile h3 {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 14px;
}
.sport-tile.pga { --sec-accent: #d4ff3a; }           /* per-tile accent so var() resolves under any body theme */
.root-home .sport-tile.pga h3 { color: var(--sec-accent); }
.root-home .sport-tile .tile-cta {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid currentColor;
  padding-bottom: 4px;
}
.root-home .sport-tile.nfl .tile-soon {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-radius: 4px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ===== Connect strip (Follow + Events) ===== */
.root-home .brand-strip {
  background: #0a0a0a;
  color: #fff;
  padding: 80px 24px;
}
.root-home .connect-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.root-home .connect-eyebrow {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.55;
  margin-bottom: 14px;
}
.root-home .connect-heading {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.root-home .connect-text {
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.8;
  margin-bottom: 22px;
  max-width: 480px;
}
.root-home .connect-cta {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 2px solid currentColor;
  padding-bottom: 3px;
  transition: opacity 0.15s ease;
}
.root-home .connect-cta:hover { opacity: 0.75; }
.root-home .social-row {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}
.root-home .social-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  color: #fff;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.root-home .social-icon:hover {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
  transform: translateY(-2px);
}
.root-home .social-icon svg { width: 20px; height: 20px; display: block; }

/* ===== Newsletter ===== */
.root-home .newsletter {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}
.root-home .newsletter h2 {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.root-home .newsletter p {
  font-size: 16px;
  color: var(--rh-muted);
  margin-bottom: 26px;
}
.root-home .newsletter form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
}
.root-home .newsletter input {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid #0a0a0a;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}
.root-home .newsletter button {
  padding: 14px 24px;
  background: #0a0a0a;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.root-home .newsletter .fine {
  font-size: 12px;
  color: var(--rh-muted);
  margin-top: 12px;
}

/* ===== Show-more expand button (articles row) ===== */
.articles-expand-btn {
  display: none; /* desktop: hidden — all 4 cards show in a grid */
}
@media (max-width: 720px) {
  /* On mobile, hide cards 3+ by default */
  .root-home .article-card--extra {
    display: none;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }
  /* When the row is expanded, show the extra cards */
  .root-home .articles-row.is-expanded .article-card--extra {
    display: block;
    opacity: 1;
    transform: none;
  }
  /* Show the button */
  .articles-expand-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin: 16px 0 0;
    padding: 13px 20px;
    background: transparent;
    border: 1.5px solid #0a0a0a;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0a0a0a;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
  }
  .articles-expand-btn:hover,
  .articles-expand-btn:focus-visible {
    background: #0a0a0a;
    color: #fff;
  }
  .articles-expand-btn .aeb-arrow { font-size: 10px; }
}

/* ===== Root homepage responsive ===== */
@media (max-width: 960px) {
  .root-home .articles-row { grid-template-columns: 1fr 1fr; }
  .root-home .sport-tiles { grid-template-columns: 1fr; }
  .root-home .hero-card h1 { font-size: 36px; }
  .root-home .hero-content { padding: 32px; }
}
@media (max-width: 720px) {
  .root-home .articles-row { grid-template-columns: 1fr; }
  .root-home .connect-wrap { grid-template-columns: 1fr; gap: 48px; }
  .root-home .connect-heading { font-size: 24px; }
  .root-home .hero-card { min-height: 460px; }
  .root-home .newsletter form { flex-direction: column; }
}
@media (max-width: 480px) {
  /* Hero */
  .root-home .hero { padding: 24px 16px 16px; }
  .root-home .hero-card { min-height: 320px; }
  .root-home .hero-card h1 { font-size: 26px; line-height: 1.1; }
  .root-home .hero-content { padding: 20px; max-width: 100%; }
  .root-home .hero-deck { font-size: 14px; }

  /* Sections */
  .root-home .section { padding: 36px 16px; }
  .root-home .section-head { margin-bottom: 20px; }
  .root-home .section-head h2 { font-size: 16px; }

  /* Article cards */
  .root-home .article-card h3 { font-size: 16px; }

  /* Sport tiles */
  .root-home .sports { padding: 36px 0; }
  .root-home .sport-tile .tile-content { padding: 20px; }
  .root-home .sport-tile h3 { font-size: 32px; }

  /* Connect strip */
  .root-home .brand-strip { padding: 48px 16px; }
  .root-home .connect-wrap { gap: 36px; }
  .root-home .connect-heading { font-size: 20px; }
  .root-home .connect-text { font-size: 14px; }

  /* Newsletter */
  .root-home .newsletter { padding: 48px 16px; }
  .root-home .newsletter h2 { font-size: 22px; }
  .root-home .newsletter p { font-size: 14px; margin-bottom: 20px; }
  .root-home .newsletter input,
  .root-home .newsletter button { padding: 12px 16px; font-size: 13px; }
}


/* ==========================================
   Article sidebar layout — single.php
   Full-bleed hero above, then two-column grid:
     Left  (.article-col)     — content + disclaimer
     Right (.article-sidebar) — sticky newsletter + ad slots
   PGA articles get Fairway palette via .is-pga-article.
   ========================================== */

/* Reset article-page padding — .article-layout handles spacing now */
.article-page {
  padding: 0;
}

/* Outer wrap — PGA articles flip to white Fairway background */
.is-pga-article {
  background: var(--sec-bg, #ffffff);
}

/* Pipeline articles carry their own .btr-hero header — suppress the
   WP-generated article-hero (featured image + title overlay) and the
   fallback article-intro header so the title only appears once.
   Uses CSS :has() so this works even if PHP OPcache serves old PHP. */
.is-pga-article:has(.btr-hero) .article-hero,
.is-pga-article:has(.btr-hero) .article-intro {
  display: none;
}
.is-pga-article .article-page {
  background: var(--sec-bg, #ffffff);
}

/* Two-column grid */
.article-layout {
  max-width: 1240px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}
.article-col {
  min-width: 0;
}

/* btr-article wrapper: remove its own max-width/padding inside the grid
   so .article-layout is the sole layout authority */
.article-col .btr-article {
  max-width: none;
  margin: 0;
  padding: 0;
}

/* ══════════════════════════════════════════════════════════════
   PIPELINE ARTICLE v6 — COMPONENT STYLES
   All CSS formerly in the template's inline <style> block.
   Moved here because GoDaddy Managed WP strips <style> from
   post content (DISALLOW_UNFILTERED_HTML). Tokens live in :root.
   ══════════════════════════════════════════════════════════════ */

.btr-article {
  background: var(--pgl-body);
  line-height: 1.5;
}
.btr-article * { box-sizing: border-box; }

/* Tabular numerics across every data surface */
.btr-glance-item .value,
.btr-pw-table th, .btr-pw-table td,
.btr-stat-card .v,
.btr-odds-cell .v,
.btr-cfs-label .value,
.btr-history,
.btr-weather-day .temp, .btr-weather-day .wind,
.btr-sg .val, .btr-sg .rank,
.btr-example .sg-line .val, .btr-example .sg-line .rank,
.btr-longshot .price,
.btr-read-time {
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

/* ============ HERO ============ */
.btr-hero {
  background:
    radial-gradient(circle at 92% -10%, rgba(201, 168, 76, 0.12) 0%, transparent 45%),
    linear-gradient(178deg, #11684A 0%, var(--pgl-green-deep) 100%);
  color: var(--pgl-white);
  padding: 26px 16px 30px;
  position: relative;
  overflow: hidden;
}
.btr-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--pgl-gold) 30%, var(--pgl-gold) 70%, transparent);
  opacity: 0.55;
}
.btr-hero-meta {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  margin-bottom: 18px;
}
.btr-hero-meta .sep {
  display: inline-block;
  color: var(--pgl-gold);
  opacity: 0.7;
  padding: 0 8px;
  transform: translateY(-1px);
}
.btr-hero-logo {
  width: 76px; height: 84px;
  background: var(--pgl-white);
  color: var(--pgl-green-deep);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  padding: 0;
  line-height: 1;
  box-shadow:
    0 0 0 1.5px var(--pgl-gold),
    0 6px 14px rgba(0,0,0,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.6);
  overflow: hidden;
  font-size: 0;
}
.btr-hero-logo svg { display: block; }
.btr-hero h1 {
  font-family: var(--pgl-serif);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.16;
  margin: 0 0 12px;
  letter-spacing: -0.012em;
  text-wrap: balance;
}
.btr-hero-deck {
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
  margin: 0;
  max-width: 56ch;
}
.btr-read-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  background: rgba(255,255,255,0.10);
  padding: 5px 11px 5px 9px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
}
.btr-read-time::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--pgl-gold);
  display: inline-block;
}

/* ============ AT A GLANCE ============ */
.btr-glance {
  background: var(--pgl-white);
  padding: 18px 16px;
  border-bottom: 1px solid var(--pgl-divider);
}
.btr-glance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
}
.btr-glance-item .label {
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pgl-text-soft);
  font-weight: 700;
  margin-bottom: 3px;
}
.btr-glance-item .value {
  font-size: 14px;
  font-weight: 600;
  color: var(--pgl-text);
  letter-spacing: -0.005em;
}

/* ============ SECTIONS + DIVIDERS — scoped to .btr-article ============ */
.btr-article section { padding: 26px 16px; background: var(--pgl-body); position: relative; }
.btr-article section + section { border-top: none; }
.btr-article section + section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--pgl-divider) 22%, var(--pgl-divider) 78%, transparent 100%);
  pointer-events: none;
}

.btr-section-header {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pgl-green-deep);
  font-weight: 800;
  margin: 0 0 18px;
  padding-bottom: 9px;
  border-bottom: 2px solid var(--pgl-green-deep);
  display: inline-block;
}

.btr-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* ============ WEATHER ============ */
.btr-weather-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.btr-weather-day {
  background: var(--pgl-white);
  border: 1px solid var(--pgl-border);
  border-radius: 10px;
  padding: 11px 6px 9px;
  text-align: center;
  box-shadow: var(--pgl-shadow-sm);
}
.btr-weather-day .day {
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pgl-green-deep);
  font-weight: 800;
}
.btr-weather-day .icon {
  height: 32px;
  margin: 6px auto 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btr-weather-day .icon svg {
  width: 30px; height: 30px;
  display: block;
}
.btr-weather-day .temp {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--pgl-text);
}
.btr-weather-day .wind {
  font-size: 10px;
  color: var(--pgl-text-muted);
  margin-top: 2px;
  font-weight: 500;
}
.btr-callouts {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.btr-callouts li {
  padding-left: 14px;
  position: relative;
  font-size: 13px;
  line-height: 1.5;
  color: var(--pgl-text);
}
.btr-callouts li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  background: var(--pgl-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(201,168,76,0.18);
}

/* ============ PAST WINNERS TABLE ============ */
.btr-pw-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--pgl-white);
  border: 1px solid var(--pgl-border);
  border-radius: 10px;
  overflow: hidden;
  font-size: 13px;
  box-shadow: var(--pgl-shadow-sm);
}
.btr-pw-table thead { background: var(--pgl-green-tint); }
.btr-pw-table th {
  text-align: left;
  padding: 9px 10px;
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pgl-green-deep);
  font-weight: 800;
}
.btr-pw-table td {
  padding: 10px;
  border-top: 1px solid var(--pgl-divider);
}
.btr-pw-table tr.callout td {
  background: var(--pgl-green-faint);
  font-weight: 600;
}
.btr-pw-table .winner { font-weight: 600; }
.btr-pw-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--pgl-text-muted);
  font-style: italic;
  line-height: 1.5;
}

/* ============ DEFENDING CHAMPION ============ */
.btr-champion-section {
  background:
    radial-gradient(circle at 88% 8%, rgba(201,168,76,0.10) 0%, transparent 42%),
    radial-gradient(circle at 6% 100%, rgba(14,94,63,0.06) 0%, transparent 50%),
    linear-gradient(180deg, var(--pgl-white) 0%, var(--pgl-green-faint) 100%);
  padding: 34px 16px 32px;
  border-top: 1px solid var(--pgl-divider);
  position: relative;
}
.btr-champion-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--pgl-gold) 20%, var(--pgl-gold) 80%, transparent 100%);
}
.btr-champion-head {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
}
.btr-champion-portrait {
  width: 108px; height: 108px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #1F8A5C 0%, var(--pgl-green-deep) 65%, #0A4A32 100%);
  color: var(--pgl-white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 38px;
  letter-spacing: -0.02em;
  border: 3px solid var(--pgl-white);
  box-shadow:
    0 0 0 3px var(--pgl-gold),
    var(--pgl-shadow-portrait);
  position: relative;
  overflow: hidden;
}
.btr-champion-portrait::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 18%, rgba(255,255,255,0.18) 0%, transparent 45%);
  pointer-events: none;
}
.btr-champion-name {
  font-family: var(--pgl-serif);
  font-size: 26px;
  font-weight: 700;
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.btr-champion-role {
  font-size: 10.5px;
  color: var(--pgl-green-deep);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btr-champion-role::before {
  content: "";
  width: 16px; height: 2px;
  background: var(--pgl-gold);
  display: inline-block;
}
.btr-champion-narrative { margin-bottom: 20px; }
.btr-champion-narrative p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 10px;
  color: var(--pgl-text);
}
.btr-champion-narrative p:last-child { margin-bottom: 0; }

/* ============ STAT GRID ============ */
.btr-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.btr-stat-card {
  background: var(--pgl-white);
  border: 1px solid var(--pgl-border);
  border-radius: 10px;
  padding: 12px 13px;
  box-shadow: var(--pgl-shadow-sm);
}
.btr-stat-card .l {
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pgl-text-soft);
  font-weight: 800;
  margin-bottom: 6px;
}
.btr-stat-card .v {
  font-size: 20px;
  font-weight: 800;
  color: var(--pgl-text);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.btr-stat-card .sub {
  font-size: 10.5px;
  color: var(--pgl-green-deep);
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.btr-champion-data {
  background: var(--pgl-white);
  border: 1px solid var(--pgl-border);
  border-radius: 12px;
  padding: 14px;
  box-shadow: var(--pgl-shadow-card);
}

/* ============ STORYLINES ============ */
.btr-storyline-section {
  background: var(--pgl-white);
  padding: 32px 16px;
  border-top: 1px solid var(--pgl-divider);
  border-bottom: 1px solid var(--pgl-divider);
  position: relative;
}
.btr-storyline-section::before {
  content: "";
  position: absolute;
  top: -1px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--pgl-green-deep) 30%, var(--pgl-green-deep) 70%, transparent 100%);
  opacity: 0.55;
}
.btr-storyline {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--pgl-divider);
}
.btr-storyline:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.btr-storyline-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  background: var(--pgl-green-deep);
  color: var(--pgl-white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  margin-right: 12px;
  vertical-align: middle;
  box-shadow: 0 0 0 3px var(--pgl-green-tint);
  letter-spacing: 0;
}
.btr-storyline h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 14px;
  line-height: 1.28;
  letter-spacing: -0.012em;
  color: var(--pgl-text);
}
.btr-storyline p {
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0 0 10px;
  color: var(--pgl-text);
}
.btr-storyline p:last-of-type { margin-bottom: 14px; }
.btr-examples { margin-top: 16px; }
.btr-examples-label {
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pgl-green-deep);
  font-weight: 800;
  margin-bottom: 8px;
}
.btr-examples-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.btr-example {
  background: var(--pgl-green-faint);
  border: 1px solid var(--pgl-green-tint);
  border-radius: 10px;
  padding: 10px 12px;
}
.btr-example .name {
  font-size: 13.5px;
  font-weight: 700;
  margin: 0 0 6px;
  color: var(--pgl-text);
  letter-spacing: -0.005em;
}
.btr-example .sg-line {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-size: 12px;
  margin-bottom: 2px;
  color: var(--pgl-text-muted);
}
.btr-example .sg-line .cat {
  width: 36px;
  color: var(--pgl-text-soft);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.06em;
}
.btr-example .sg-line .val {
  font-weight: 700;
  color: var(--pgl-text);
  font-size: 12px;
}
.btr-example .sg-line .rank {
  color: var(--pgl-green-deep);
  font-size: 11px;
  font-weight: 700;
}

/* ============ FEATURED PLAYERS ============ */
.btr-players {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.btr-player {
  background: var(--pgl-white);
  border: 1px solid var(--pgl-border);
  border-radius: 12px;
  padding: 14px;
  box-shadow: var(--pgl-shadow-sm);
}
.btr-player-top {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}
.btr-player-head {
  width: 56px; height: 56px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #FFFFFF 0%, var(--pgl-green-faint) 55%, #DCEADF 100%);
  color: var(--pgl-green-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.01em;
  border: 2px solid var(--pgl-white);
  box-shadow:
    0 0 0 1px var(--pgl-border),
    0 2px 6px rgba(14,94,63,0.10);
  position: relative;
  overflow: hidden;
}
.btr-player-head::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.55) 0%, transparent 50%);
  pointer-events: none;
}
.btr-player-name {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.008em;
}
.btr-player-role {
  font-size: 12px;
  color: var(--pgl-text-muted);
  margin: 3px 0 0;
  font-weight: 500;
}
.btr-odds-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  background: var(--pgl-green-faint);
  border: 1px solid var(--pgl-green-tint);
  border-radius: 8px;
  padding: 9px 8px;
  margin-bottom: 12px;
}
.btr-odds-cell { text-align: center; }
.btr-odds-cell .l {
  display: block;
  font-size: 9px;
  color: var(--pgl-text-soft);
  letter-spacing: 0.14em;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.btr-odds-cell .v {
  font-size: 14px;
  font-weight: 700;
  color: var(--pgl-green-deep);
  letter-spacing: -0.005em;
}
.btr-cfs-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 10px;
}
.btr-cfs-label .key {
  color: var(--pgl-text-soft);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  display: block;
  margin-bottom: 2px;
}
.btr-cfs-label .value {
  font-weight: 700;
  font-size: 15px;
  color: var(--pgl-text);
  letter-spacing: -0.005em;
}

/* ============ CFS TIER BADGES ============ */
.btr-tier-badge {
  --tier-color: var(--pgl-green-deep);
  background: var(--tier-color);
  color: var(--pgl-white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 5px 11px 5px 22px;
  border-radius: 999px;
  position: relative;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.btr-tier-badge::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  background: var(--pgl-white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.25);
}
.btr-tier-badge.strong { --tier-color: var(--pgl-green-mid); }
.btr-tier-badge.above  { --tier-color: #6B8E73; }
.btr-tier-badge.average { --tier-color: #8A8A8A; }

.btr-history {
  font-size: 12.5px;
  color: var(--pgl-text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}
.btr-history strong { color: var(--pgl-text); font-weight: 700; }

.btr-radar-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--pgl-divider);
  border-bottom: 1px solid var(--pgl-divider);
  margin-bottom: 12px;
}
.btr-radar { width: 96px; height: 96px; }
.btr-sg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 12px;
  font-size: 12px;
}
.btr-sg {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.btr-sg .cat {
  width: 34px;
  color: var(--pgl-text-soft);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.06em;
}
.btr-sg .val { font-weight: 700; color: var(--pgl-text); }
.btr-sg .rank {
  color: var(--pgl-green-deep);
  font-size: 11px;
  font-weight: 700;
}
.btr-take {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--pgl-text);
  margin: 0;
}

/* ============ FIELD NOTES ============ */
.btr-notes {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btr-notes li {
  background: var(--pgl-white);
  border: 1px solid var(--pgl-border);
  border-left: 3px solid var(--pgl-green-mid);
  padding: 11px 13px;
  border-radius: 0 8px 8px 0;
  font-size: 13.5px;
  line-height: 1.5;
  box-shadow: var(--pgl-shadow-sm);
}
.btr-notes li strong {
  color: var(--pgl-green-deep);
  font-weight: 700;
}

/* ============ LONG SHOTS ============ */
.btr-longshots {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.btr-longshot {
  background: var(--pgl-white);
  border: 1px solid var(--pgl-border);
  border-radius: 12px;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  box-shadow: var(--pgl-shadow-sm);
}
.btr-longshot .head {
  width: 44px; height: 44px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #FFFFFF 0%, var(--pgl-green-faint) 55%, #DCEADF 100%);
  color: var(--pgl-green-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 13px;
  border: 2px solid var(--pgl-white);
  box-shadow:
    0 0 0 1px var(--pgl-border),
    0 1px 3px rgba(14,94,63,0.10);
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;
}
.btr-longshot .head::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.55) 0%, transparent 50%);
  pointer-events: none;
}
.btr-longshot .name {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.008em;
}
.btr-longshot .why {
  font-size: 12px;
  color: var(--pgl-text-muted);
  margin-top: 3px;
  line-height: 1.45;
}
.btr-longshot .why strong { color: var(--pgl-green-deep); font-weight: 700; }
.btr-longshot .price {
  text-align: right;
  font-size: 15px;
  font-weight: 700;
  color: var(--pgl-green-deep);
  letter-spacing: -0.005em;
}
.btr-longshot .price .l {
  display: block;
  font-size: 9px;
  color: var(--pgl-text-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 2px;
  font-weight: 800;
}

/* ============ TOOL SURFACE CARDS ============ */
.btr-tools {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.btr-tool {
  background: var(--pgl-white);
  border: 1px solid var(--pgl-border);
  border-left: 3px solid var(--pgl-green-deep);
  color: var(--pgl-text);
  border-radius: 10px;
  padding: 14px 32px 14px 14px;
  text-decoration: none;
  display: block;
  position: relative;
  box-shadow: var(--pgl-shadow-sm);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-left-color 0.15s ease;
}
.btr-tool:hover {
  transform: translateY(-1px);
  box-shadow: var(--pgl-shadow-card);
  border-left-color: var(--pgl-gold);
}
.btr-tool::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px; height: 8px;
  border-right: 2px solid var(--pgl-green-deep);
  border-top: 2px solid var(--pgl-green-deep);
  transform: translateY(-50%) rotate(45deg);
}
.btr-tool .name {
  font-size: 14px;
  font-weight: 700;
  display: block;
  margin-bottom: 3px;
  color: var(--pgl-text);
  letter-spacing: -0.008em;
}
.btr-tool .sub {
  font-size: 9.5px;
  color: var(--pgl-text-soft);
  letter-spacing: 0.14em;
  font-weight: 700;
  text-transform: uppercase;
}

/* ============ GLOSSARY + DISCLAIMER ============ */
.btr-glossary {
  background: var(--pgl-white);
  border: 1px solid var(--pgl-border);
  border-radius: 10px;
  padding: 16px 16px 14px;
  box-shadow: var(--pgl-shadow-sm);
}
.btr-glossary h3 {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 800;
  color: var(--pgl-green-deep);
  letter-spacing: 0.02em;
}
.btr-glossary dl { margin: 0; display: grid; gap: 10px; }
.btr-glossary dt {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 3px;
  letter-spacing: -0.005em;
}
.btr-glossary dd {
  margin: 0;
  font-size: 12.5px;
  color: var(--pgl-text-muted);
  line-height: 1.55;
}
.btr-disclaimer {
  padding: 18px 16px 28px;
  font-size: 11px;
  color: var(--pgl-text-soft);
  font-style: italic;
  line-height: 1.55;
  border-top: 1px solid var(--pgl-divider);
  background: var(--pgl-body);
}

/* ============ ≥640px BREAKPOINT ============ */
@media (min-width: 640px) {
  .btr-glance-grid { grid-template-columns: repeat(3, 1fr); }
  .btr-pair { grid-template-columns: 1fr 1fr; gap: 24px; }
  .btr-players { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .btr-tools { grid-template-columns: repeat(4, 1fr); }
  .btr-stat-grid { grid-template-columns: repeat(4, 1fr); }
  .btr-article section { padding: 30px 24px; }
  .btr-storyline-section, .btr-champion-section { padding: 36px 24px; }
  .btr-hero { padding: 34px 24px 36px; }
  .btr-glance { padding: 22px 24px; }
  .btr-hero h1 { font-size: 34px; line-height: 1.12; }
  .btr-hero-deck { font-size: 15.5px; }
  .btr-champion-head { grid-template-columns: 124px 1fr; gap: 22px; }
  .btr-champion-portrait { width: 124px; height: 124px; font-size: 42px; }
  .btr-champion-name { font-size: 30px; }
  .btr-disclaimer { padding: 20px 24px 30px; }
}

/* The old .btr-article block (dark-theme era) stamps color: #e8e4dc and
   font-family: Source Serif 4 onto the wrapper. On the PGA article's white
   background that makes text near-invisible (whiteout). Reset both here so
   the v6 template's own per-component styles take over cleanly. */
.is-pga-article .btr-article {
  color: var(--sec-text, #0a1a12);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ─────────────────────────────────────────
   PGA article: Fairway palette overrides
   Targets both .article-body (WP native content)
   and .btr-article-body (pipeline-generated articles)
   ───────────────────────────────────────── */

/* Hero title on white */
.is-pga-article .article-title {
  color: var(--sec-text, #0a1a12);
}
.is-pga-article .article-meta .article-date {
  color: var(--sec-muted, #5a6b62);
}
.is-pga-article .article-meta .article-category {
  color: var(--sec-primary, #0a4d2e);
}

/* btr-article header bar */
.is-pga-article .btr-article-header {
  border-bottom-color: var(--sec-primary, #0a4d2e);
}
.is-pga-article .btr-header-pipe {
  color: var(--sec-muted, #5a6b62);
}

/* btr-article body text */
.is-pga-article .btr-article-body {
  color: var(--sec-text, #0a1a12);
}
.is-pga-article .btr-article-body p {
  color: #2a3e30;
}
.is-pga-article .btr-article-body strong {
  color: var(--sec-text, #0a1a12);
}

/* Headings */
.is-pga-article .btr-article-body h1 {
  color: var(--sec-text, #0a1a12);
  border-bottom-color: var(--sec-border, #e6e9e0);
}
.is-pga-article .btr-article-body h2 {
  color: var(--sec-primary, #0a4d2e);
  border-bottom-color: var(--sec-border, #e6e9e0);
}
.is-pga-article .btr-article-body h3 {
  color: var(--sec-muted, #5a6b62);
}

/* Links */
.is-pga-article .btr-article-body a {
  color: var(--sec-primary, #0a4d2e);
}
.is-pga-article .btr-article-body a:hover {
  color: var(--sec-primary-deep, #063820);
}

/* HR */
.is-pga-article .btr-article-body hr {
  border-top-color: var(--sec-border, #e6e9e0);
}

/* Tables — full light theme */
.is-pga-article .btr-article-body table thead tr {
  background: var(--sec-primary, #0a4d2e);
  border-bottom-color: var(--sec-primary-deep, #063820);
}
.is-pga-article .btr-article-body table thead th {
  color: #ffffff;
}
.is-pga-article .btr-article-body table tbody tr {
  border-bottom-color: var(--sec-border, #e6e9e0);
}
.is-pga-article .btr-article-body table tbody tr:nth-child(even) {
  background: var(--sec-surface-alt, #f7faf3);
}
.is-pga-article .btr-article-body table tbody tr:hover {
  background: rgba(10, 77, 46, 0.06);
}
.is-pga-article .btr-article-body table tbody td {
  color: var(--sec-muted, #5a6b62);
}
.is-pga-article .btr-article-body table tbody td:first-child {
  color: var(--sec-text, #0a1a12);
}

/* Disclaimer block */
.is-pga-article .btr-disclaimer {
  border-top-color: var(--sec-border, #e6e9e0);
  border-left-color: var(--sec-primary, #0a4d2e);
  background: var(--sec-surface-alt, #f7faf3);
  color: var(--sec-muted, #5a6b62);
}

/* WP native .article-body overrides (fallback for non-pipeline articles) */
.is-pga-article .article-body {
  color: var(--sec-text, #0a1a12);
}
.is-pga-article .article-body p { color: #2a3e30; }
.is-pga-article .article-body h2,
.is-pga-article .article-body h3,
.is-pga-article .article-body h4 { color: var(--sec-primary, #0a4d2e); }
.is-pga-article .article-body a { color: var(--sec-primary, #0a4d2e); }
.is-pga-article .article-body a:hover { color: var(--sec-primary-deep, #063820); }
.is-pga-article .article-body blockquote {
  border-left-color: var(--sec-primary, #0a4d2e);
  background: rgba(10, 77, 46, 0.05);
  color: var(--sec-muted, #5a6b62);
}
.is-pga-article .article-body th {
  color: var(--sec-primary, #0a4d2e);
  background: rgba(10, 77, 46, 0.06);
}
.is-pga-article .article-body th,
.is-pga-article .article-body td {
  border-color: var(--sec-border, #e6e9e0);
}
.is-pga-article .article-disclaimer {
  border-top-color: var(--sec-border, #e6e9e0);
}
.is-pga-article .article-disclaimer p { color: var(--sec-muted, #5a6b62); }

/* ─────────────────────────────────────────
   Sticky sidebar
   ───────────────────────────────────────── */
.article-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Widget shell — dark theme default */
.article-sidebar .sidebar-widget {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border, rgba(255, 255, 255, 0.12));
  border-radius: 14px;
  overflow: hidden;
}
.article-sidebar .sidebar-widget .sw-head {
  background: var(--gold, #C9A84C);
  color: #000;
  padding: 12px 16px;
  font-family: var(--font-display, 'Oswald', sans-serif);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.article-sidebar .sidebar-widget .sw-body {
  padding: 18px 16px 20px;
}
.article-sidebar .signup-widget .sw-body p {
  font-size: 13px;
  color: var(--muted-light, #a0a0a0);
  margin-bottom: 14px;
  line-height: 1.5;
}
.article-sidebar .signup-widget input[type="email"] {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--border, rgba(255, 255, 255, 0.15));
  border-radius: 6px;
  font-size: 13px;
  font-family: inherit;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text, #f0f0f0);
  outline: none;
  transition: border-color 0.15s;
}
.article-sidebar .signup-widget input[type="email"]:focus {
  border-color: var(--gold, #C9A84C);
}
.article-sidebar .signup-widget .sw-btn {
  width: 100%;
  padding: 11px;
  background: var(--gold, #C9A84C);
  color: #000;
  border: none;
  border-radius: 6px;
  font-family: var(--font-display, 'Oswald', sans-serif);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.15s;
}
.article-sidebar .signup-widget .sw-btn:hover {
  background: var(--gold-dim, #9e7e35);
}
.article-sidebar .signup-widget .sw-fine {
  font-size: 11px;
  color: var(--muted, #787878);
  margin-top: 10px;
  line-height: 1.4;
}
/* Widget shell - PGA Fairway overrides */
.is-pga-article .article-sidebar .sidebar-widget {
  background: #ffffff;
  border-color: var(--sec-border, #e6e9e0);
  box-shadow: 0 2px 12px rgba(10, 77, 46, 0.06);
}
.is-pga-article .article-sidebar .sidebar-widget .sw-head {
  background: var(--sec-primary, #0a4d2e);
  color: #ffffff;
}
.is-pga-article .article-sidebar .signup-widget .sw-body p {
  color: var(--sec-muted, #5a6b62);
}
.is-pga-article .article-sidebar .signup-widget input[type="email"] {
  background: #ffffff;
  border-color: var(--sec-border, #e6e9e0);
  color: var(--sec-text, #0a1a12);
}
.is-pga-article .article-sidebar .signup-widget input[type="email"]:focus {
  border-color: var(--sec-primary, #0a4d2e);
}
.is-pga-article .article-sidebar .signup-widget .sw-btn {
  background: var(--sec-primary, #0a4d2e);
  color: #ffffff;
}
.is-pga-article .article-sidebar .signup-widget .sw-btn:hover {
  background: var(--sec-primary-deep, #063820);
}
.is-pga-article .article-sidebar .signup-widget .sw-fine {
  color: var(--sec-muted, #5a6b62);
}
/* Ad slots */
.article-sidebar .ad-slot {
  border: 1px dashed #4a4a4a;
  border-radius: 14px;
  padding: 8px;
  text-align: center;
}
.is-pga-article .article-sidebar .ad-slot { border-color: #cbd2d8; }
.article-sidebar .ad-slot .ad-label {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted, #787878);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.is-pga-article .article-sidebar .ad-slot .ad-label { color: var(--sec-muted, #5a6b62); }
.article-sidebar .ad-slot .ad-box {
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  color: #6a6a6a;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.is-pga-article .article-sidebar .ad-slot .ad-box { background: #eef1f4; color: #8b96a0; }
.article-sidebar .ad-slot.ad-300x250 .ad-box { height: 250px; }
.article-sidebar .ad-slot.ad-300x600 .ad-box { height: 600px; }
@media (max-width: 960px) {
  .article-layout { grid-template-columns: 1fr; padding: 32px 20px 60px; gap: 32px; }
  .article-sidebar { position: static; flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .article-sidebar .sidebar-widget, .article-sidebar .ad-slot { flex: 1 1 280px; }
}
@media (max-width: 600px) {
  .article-layout { padding: 24px 16px 48px; }
  .article-sidebar { flex-direction: column; }
}

/* ── Mobile hero: white bg, text pinned bottom-left, black + gold palette ── */
@media (max-width: 639px) {
  .btr-hero {
    background: #ffffff;
    color: #111111;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 16px 24px;
  }
  .btr-hero::after { display: none; }   /* hide the gold bottom rule on white */
  .btr-hero-meta {
    color: var(--pgl-gold, #c9a44a);
    order: 2;                            /* meta sits below the logo */
    margin-bottom: 8px;
    margin-top: 0;
  }
  .btr-hero-logo {
    order: 1;                            /* crest floats top-left */
    align-self: flex-start;
    margin-bottom: 0;
    margin-top: 20px;
    box-shadow:
      0 0 0 1.5px var(--pgl-gold, #c9a44a),
      0 4px 10px rgba(0,0,0,0.12);
  }
  .btr-hero h1 {
    color: #111111;
    font-size: 24px;
    order: 3;
    margin-bottom: 8px;
  }
  .btr-hero-deck {
    color: rgba(0,0,0,0.65);
    order: 4;
    margin-bottom: 0;
  }
  .btr-read-time {
    order: 5;
    background: rgba(0,0,0,0.06);
    border-color: rgba(0,0,0,0.12);
    color: rgba(0,0,0,0.6);
  }
  .btr-read-time::before { background: var(--pgl-gold, #c9a44a); }
}

/* Hero title must always stay white regardless of palette — restore over
   the .is-pga-article .article-title override which has equal specificity */
.is-pga-article .article-hero .article-title { color: #ffffff; }
.is-pga-article .article-hero .article-meta .article-date,
.is-pga-article .article-hero .article-meta .article-category {
  color: rgba(255, 255, 255, 0.85);
}
