/* ================================================================
   Sports News Plus — Complete Theme Stylesheet
   Compiled: theme.css
   ================================================================ */


/* ── Design Tokens ──────────────────────────────────────────── */
:root {
    /* Colours */
    --ink:      #1a1a1a;
    --paper:    #f7f5f0;
    --gold:     #c9a84c;
    --gold-lt:  #f0e6c8;
    --gold-dk:  #9a7a28;
    --slate:    #4a4a4a;
    --rule:     #ddd8d0;
    --muted:    #888880;
    --white:    #ffffff;
    --black:    #000000;

    /* Header / dark surfaces */
    --hdr-bg:   #1a1a1a;
    --hdr-text: #f7f5f0;
    --nav-bg:   #111111;

    /* Typography */
    --serif:    'Playfair Display', Georgia, 'Times New Roman', serif;
    --sans:     'Source Sans 3', 'Helvetica Neue', Arial, system-ui, sans-serif;

    /* Layout */
    --max-w:    1200px;
    --content-w: 740px;
    --gap:      24px;
    --gap-lg:   48px;
    --radius:   4px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--sans);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
table { border-collapse: collapse; width: 100%; }

/* ── Layout helpers ─────────────────────────────────────────── */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--gap);
}
.content-grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ── Section label ──────────────────────────────────────────── */
.snp-section-label {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.snp-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--rule);
}

/* ================================================================
   MASTHEAD
   ================================================================ */
#snp-header {
    background: var(--ink);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--gold);
}

.snp-masthead {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 16px 0 0;
    border-bottom: 1px solid #2a2a2a;
}

.snp-wordmark {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 400;
    color: #f7f5f0;
    letter-spacing: -1px;
    line-height: 1;
    text-decoration: none;
}
.snp-wordmark sup {
    color: var(--gold);
    font-size: 28px;
    vertical-align: super;
    line-height: 0;
}

.snp-tagline {
    font-family: var(--sans);
    font-size: 9px;
    color: #666;
    letter-spacing: .18em;
    text-transform: uppercase;
    margin-top: 4px;
    display: block;
}

.snp-masthead-right {
    text-align: right;
    padding-bottom: 4px;
}
.snp-date {
    font-family: var(--sans);
    font-size: 10px;
    color: #555;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.snp-edition {
    font-family: var(--sans);
    font-size: 9px;
    color: var(--gold);
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ── Primary nav ─────────────────────────────────────────────── */
.snp-nav {
    display: flex;
    align-items: center;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.snp-nav::-webkit-scrollbar { display: none; }

.snp-nav a {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #888;
    padding: 12px 14px;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    display: block;
    transition: color .15s;
}
.snp-nav a:hover { color: #f7f5f0; }
.snp-nav a.current,
.snp-nav a[aria-current="page"] {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* ── Breaking ticker ─────────────────────────────────────────── */
.snp-ticker {
    background: var(--gold);
    padding: 6px 0;
    overflow: hidden;
}
.snp-ticker-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}
.snp-ticker-label {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--ink);
    background: rgba(0,0,0,.15);
    padding: 2px 8px;
    border-radius: 2px;
    white-space: nowrap;
    flex-shrink: 0;
}
.snp-ticker-text {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Mobile menu toggle */
.snp-menu-toggle {
    display: none;
    background: transparent;
    border: 1px solid #444;
    color: #f7f5f0;
    padding: 6px 10px;
    border-radius: 3px;
    font-size: 12px;
    margin-left: auto;
}

/* ================================================================
   HOMEPAGE
   ================================================================ */
.snp-home-wrap { padding: 32px 0 48px; }

/* ── Lead story ──────────────────────────────────────────────── */
.snp-lead {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 0;
    border-bottom: 2px solid var(--ink);
    padding-bottom: 32px;
    margin-bottom: 32px;
}

.snp-lead-text {
    padding-right: 36px;
    border-right: 1px solid var(--rule);
}

.snp-lead-eyebrow {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    display: block;
}

.snp-lead-hed {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 400;
    line-height: 1.15;
    color: var(--ink);
    margin-bottom: 14px;
    letter-spacing: -.5px;
}
.snp-lead-hed a { color: var(--ink); }
.snp-lead-hed a:hover { color: var(--gold); }

.snp-lead-dek {
    font-family: var(--serif);
    font-size: 16px;
    font-style: italic;
    color: var(--slate);
    line-height: 1.65;
    margin-bottom: 16px;
}

.snp-lead-byline {
    font-family: var(--sans);
    font-size: 10px;
    color: var(--muted);
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.snp-lead-byline strong { color: var(--ink); }

.snp-read-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink);
    border-bottom: 1.5px solid var(--ink);
    padding-bottom: 1px;
    transition: color .15s, border-color .15s;
}
.snp-read-btn:hover { color: var(--gold); border-bottom-color: var(--gold); }

.snp-lead-image {
    padding-left: 32px;
}
.snp-lead-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    background: #2a2a2a;
}
.snp-lead-no-img {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #1a2a1a, #0a1a2a, #2a1a0a);
    display: flex;
    align-items: center;
    justify-content: center;
}
.snp-lead-no-img span {
    font-family: var(--serif);
    font-size: 60px;
    color: rgba(255,255,255,.08);
}

/* ── Mid-tier 3 columns ──────────────────────────────────────── */
.snp-mid-tier {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    margin-bottom: 32px;
}

.snp-mid-card {
    padding: 20px;
    border-right: 1px solid var(--rule);
}
.snp-mid-card:last-child { border-right: none; }

.snp-mid-sport {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}

.snp-mid-hed {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--ink);
    margin-bottom: 8px;
}
.snp-mid-hed a { color: var(--ink); }
.snp-mid-hed a:hover { color: var(--gold); }

.snp-mid-dek {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
}

.snp-mid-meta {
    font-family: var(--sans);
    font-size: 10px;
    color: #aaa;
    margin-top: 10px;
    letter-spacing: .04em;
}

/* ── News digest ─────────────────────────────────────────────── */
.snp-digest { margin-bottom: 32px; }

.snp-digest-item {
    display: grid;
    grid-template-columns: 90px 1fr 80px;
    gap: 16px;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid var(--rule);
}
.snp-digest-item:last-child { border-bottom: none; }

.snp-digest-sport {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
}

.snp-digest-hed {
    font-family: var(--serif);
    font-size: 15px;
    line-height: 1.35;
    color: var(--ink);
}
.snp-digest-hed a { color: var(--ink); }
.snp-digest-hed a:hover { color: var(--gold); }

.snp-digest-time {
    font-family: var(--sans);
    font-size: 10px;
    color: #aaa;
    text-align: right;
    white-space: nowrap;
}

/* ── Analysis strip ──────────────────────────────────────────── */
.snp-analysis-strip {
    background: var(--ink);
    padding: 20px var(--gap);
    display: grid;
    grid-template-columns: 52px 1fr auto;
    gap: 20px;
    align-items: center;
    border-top: 3px solid var(--gold);
    margin-top: 8px;
}

.snp-strip-icon {
    width: 52px;
    height: 52px;
    border: 1.5px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.snp-strip-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.5;
}

.snp-strip-label {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 4px;
}
.snp-strip-hed {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    color: #f7f5f0;
}
.snp-strip-hed a { color: #f7f5f0; }
.snp-strip-hed a:hover { color: var(--gold); }

.snp-strip-link {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid rgba(201,168,76,.3);
    padding-bottom: 1px;
    white-space: nowrap;
}
.snp-strip-link:hover { border-bottom-color: var(--gold); }

/* ================================================================
   CATEGORY / ARCHIVE PAGES
   ================================================================ */
.snp-cat-hero {
    background: var(--ink);
    padding: 28px 0 24px;
    border-bottom: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
}
.snp-cat-hero::after {
    content: attr(data-emoji);
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 90px;
    opacity: .06;
    pointer-events: none;
}

.snp-cat-kicker {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}

.snp-cat-title {
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 400;
    color: #f7f5f0;
    line-height: 1;
    letter-spacing: -1px;
    margin-bottom: 6px;
}

.snp-cat-desc {
    font-family: var(--sans);
    font-size: 13px;
    color: #888;
    letter-spacing: .04em;
}

.snp-cat-stats {
    display: flex;
    gap: 28px;
    margin-top: 16px;
}
.snp-cat-stat .n {
    font-family: var(--sans);
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    display: block;
}
.snp-cat-stat .l {
    font-family: var(--sans);
    font-size: 9px;
    color: #555;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: 2px;
    display: block;
}

/* Filter bar */
.snp-filter-bar {
    background: #f0ece4;
    border-bottom: 1px solid var(--rule);
    padding: 10px 0;
}
.snp-filter-bar-inner {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}
.snp-filter-bar span {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-right: 4px;
}

.snp-archive-wrap {
    padding: 32px 0 48px;
}

/* Featured article on archive */
.snp-archive-feature {
    border-bottom: 2px solid var(--ink);
    padding-bottom: 28px;
    margin-bottom: 28px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    align-items: start;
}
.snp-archive-feature-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #2a2a2a;
    display: block;
}
.snp-archive-feature-no-img {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #1a2a1a, #0a1a2a);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    opacity: .3;
}
.snp-archive-feature-sport {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
}
.snp-archive-feature-hed {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--ink);
    margin-bottom: 10px;
}
.snp-archive-feature-hed a { color: var(--ink); }
.snp-archive-feature-hed a:hover { color: var(--gold); }
.snp-archive-feature-dek {
    font-family: var(--sans);
    font-size: 14px;
    color: var(--slate);
    line-height: 1.6;
    margin-bottom: 10px;
}
.snp-archive-feature-meta {
    font-family: var(--sans);
    font-size: 10px;
    color: var(--muted);
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* Ruled article list */
.snp-rule-list {}

.snp-rule-item {
    display: grid;
    grid-template-columns: 1fr 60px;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--rule);
    align-items: start;
}
.snp-rule-item:last-child { border-bottom: none; }

.snp-rule-sport {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 5px;
    display: block;
}
.snp-rule-hed {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.35;
    color: var(--ink);
    margin-bottom: 5px;
}
.snp-rule-hed a { color: var(--ink); }
.snp-rule-hed a:hover { color: var(--gold); }
.snp-rule-meta {
    font-family: var(--sans);
    font-size: 10px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .04em;
}
.snp-rule-num {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 400;
    color: #e8e3da;
    line-height: 1;
    text-align: right;
    padding-top: 4px;
}

/* ================================================================
   SIDEBAR
   ================================================================ */
.snp-sidebar { }

.snp-widget {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--rule);
}
.snp-widget:last-child { border-bottom: none; margin-bottom: 0; }

.snp-widget-title {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--rule);
}

/* Trending list */
.snp-trending-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid #f0ece4;
}
.snp-trending-item:last-child { border-bottom: none; }
.snp-trending-num {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    color: #e0dbd3;
    line-height: 1;
    min-width: 28px;
    flex-shrink: 0;
}
.snp-trending-hed {
    font-family: var(--serif);
    font-size: 13px;
    line-height: 1.4;
    color: var(--ink);
}
.snp-trending-hed a { color: var(--ink); }
.snp-trending-hed a:hover { color: var(--gold); }

/* Sport pills */
.snp-sport-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.snp-pill {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--slate);
    border: 1px solid var(--rule);
    padding: 4px 10px;
    border-radius: 20px;
    text-decoration: none;
    transition: background .15s, color .15s, border-color .15s;
}
.snp-pill:hover, .snp-pill.active {
    background: var(--ink);
    color: var(--gold);
    border-color: var(--ink);
}

/* Newsletter */
.snp-newsletter-widget {
    background: var(--ink);
    padding: 16px;
    border-radius: var(--radius);
}
.snp-newsletter-widget .snp-widget-title { color: var(--gold); border-bottom-color: #2a2a2a; }
.snp-newsletter-desc {
    font-family: var(--sans);
    font-size: 12px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.5;
}
.snp-newsletter-form { display: flex; flex-direction: column; gap: 8px; }
.snp-newsletter-form input[type="email"] {
    background: #2a2a2a;
    border: 1px solid #333;
    color: #f7f5f0;
    padding: 9px 12px;
    font-family: var(--sans);
    font-size: 13px;
    border-radius: 3px;
    width: 100%;
}
.snp-newsletter-form input[type="email"]::placeholder { color: #555; }
.snp-newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--gold);
}
.snp-newsletter-btn {
    background: var(--gold);
    color: var(--ink);
    border: none;
    padding: 9px 16px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
    transition: background .15s;
}
.snp-newsletter-btn:hover { background: var(--gold-dk); color: #fff; }

/* ================================================================
   SINGLE ARTICLE
   ================================================================ */

/* Dark article masthead */
.snp-article-header {
    background: var(--ink);
    padding: 28px 0 0;
}
.snp-article-breadcrumb {
    font-family: var(--sans);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #555;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.snp-article-breadcrumb a { color: #555; }
.snp-article-breadcrumb a:hover { color: var(--gold); }
.snp-article-breadcrumb .sep { color: #333; }
.snp-article-breadcrumb .current { color: var(--gold); }

.snp-article-cat-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 3px;
    margin-bottom: 12px;
    text-decoration: none;
}
.snp-article-cat-tag:hover { background: var(--gold-dk); color: #fff; }

.snp-article-title {
    font-family: var(--serif);
    font-size: 38px;
    font-weight: 400;
    color: #f7f5f0;
    line-height: 1.2;
    letter-spacing: -.5px;
    margin-bottom: 14px;
    max-width: 760px;
}

.snp-article-dek {
    font-family: var(--serif);
    font-size: 17px;
    font-style: italic;
    color: #999;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 680px;
}

.snp-article-meta-bar {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid #2a2a2a;
    flex-wrap: wrap;
}
.snp-meta-by, .snp-meta-date, .snp-meta-read {
    font-family: var(--sans);
    font-size: 10px;
    color: #666;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.snp-meta-by strong { color: var(--gold); font-weight: 600; }
.snp-meta-sep {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #333;
    flex-shrink: 0;
}
.snp-meta-read { margin-left: auto; }

/* Share bar */
.snp-share-bar {
    background: #f0ece4;
    border-bottom: 1px solid var(--rule);
    padding: 10px 0;
}
.snp-share-bar-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}
.snp-share-label {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-right: 4px;
}
.snp-share-btn {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 3px;
    border: 1px solid var(--rule);
    background: var(--surface);
    color: var(--slate);
    text-decoration: none;
    transition: all .15s;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.snp-share-btn:hover { border-color: var(--ink); color: var(--ink); }
.snp-share-btn.x { background: #000; color: #fff; border-color: #000; }
.snp-share-btn.fb { background: #1877f2; color: #fff; border-color: #1877f2; }
.snp-share-btn.wa { background: #25d366; color: #fff; border-color: #25d366; }

/* Hero image */
.snp-article-hero {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    display: block;
}
.snp-article-no-hero {
    width: 100%;
    height: 320px;
    background: linear-gradient(135deg, #1a2a1a, #0a0a1a, #1a0a2a);
    display: flex;
    align-items: center;
    justify-content: center;
}
.snp-article-no-hero-inner {
    font-family: var(--serif);
    font-size: 80px;
    opacity: .07;
}
.snp-article-img-caption {
    font-family: var(--sans);
    font-size: 11px;
    color: #aaa;
    padding: 8px var(--gap);
    background: #f0ece4;
    border-bottom: 1px solid var(--rule);
}

/* Article body */
.snp-article-wrap {
    padding: 36px 0 48px;
}

.snp-article-body {
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.8;
    color: var(--slate);
    max-width: var(--content-w);
}

.snp-article-body p {
    margin-bottom: 20px;
    font-family: var(--serif);
    font-size: 18px;
    line-height: 1.8;
    color: var(--slate);
}

/* Drop cap */
.snp-article-body > p:first-of-type::first-letter {
    float: left;
    font-size: 70px;
    line-height: .78;
    font-family: var(--serif);
    font-weight: 400;
    color: var(--ink);
    margin: 6px 10px -2px 0;
    padding: 4px 0 0;
}

.snp-article-body h2 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--ink);
    margin: 36px 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rule);
    letter-spacing: -.2px;
    line-height: 1.3;
    clear: both;
}

.snp-article-body h3 {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 28px 0 12px;
    clear: both;
}

.snp-article-body ul, .snp-article-body ol {
    padding-left: 20px;
    margin-bottom: 20px;
}
.snp-article-body ul li { list-style: disc; margin-bottom: 6px; }
.snp-article-body ol li { list-style: decimal; margin-bottom: 6px; }

.snp-article-body strong { font-weight: 600; color: var(--ink); }
.snp-article-body em { font-style: italic; }

.snp-article-body a {
    color: var(--ink);
    text-decoration: underline;
    text-decoration-color: var(--rule);
    text-underline-offset: 3px;
}
.snp-article-body a:hover {
    color: var(--gold);
    text-decoration-color: var(--gold);
}

.snp-article-body blockquote {
    border-left: 3px solid var(--gold);
    margin: 24px 0;
    padding: 4px 20px;
    font-style: italic;
    color: var(--slate);
    background: transparent;
}

/* Source line */
.snp-source {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--muted);
    padding-top: 16px;
    border-top: 1px solid var(--rule);
    margin-top: 24px;
    display: block;
    clear: both;
}
.snp-source a { color: var(--gold); }
.snp-source a:hover { text-decoration: underline; }

/* Tags */
.snp-article-tags {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--rule);
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    clear: both;
}
.snp-article-tags .label {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-right: 4px;
}
.snp-tag {
    font-family: var(--sans);
    font-size: 10px;
    color: var(--muted);
    border: 1px solid var(--rule);
    padding: 2px 9px;
    border-radius: 2px;
    text-decoration: none;
}
.snp-tag:hover { border-color: var(--gold); color: var(--gold); }

/* Related articles */
.snp-related {
    padding: 24px 0;
    border-top: 2px solid var(--ink);
    margin-top: 16px;
}
.snp-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 16px;
}
.snp-related-card {
    border: 1px solid var(--rule);
    border-radius: 4px;
    overflow: hidden;
}
.snp-related-img {
    width: 100%;
    height: 80px;
    object-fit: cover;
    background: #2a2a2a;
    display: block;
}
.snp-related-no-img {
    width: 100%;
    height: 80px;
    background: linear-gradient(135deg, #1a2a1a, #1a1a2a);
}
.snp-related-body { padding: 10px 12px; }
.snp-related-sport {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
    display: block;
}
.snp-related-hed {
    font-family: var(--serif);
    font-size: 13px;
    line-height: 1.4;
    color: var(--ink);
}
.snp-related-hed a { color: var(--ink); }
.snp-related-hed a:hover { color: var(--gold); }

/* ================================================================
   SNP CONTENT BLOCKS (Takeaways, Analysis, Gear Pick, FAQ)
   ================================================================ */

/* Takeaways */
.snp-takeaways {
    background: var(--ink) !important;
    border: none !important;
    border-left: 3px solid var(--gold) !important;
    border-radius: 0 !important;
    padding: 18px 22px !important;
    margin: 0 0 30px !important;
    clear: both;
}
.snp-takeaways__header { margin-bottom: 12px !important; }
.snp-takeaways__icon { background: var(--gold) !important; border-radius: 4px !important; }
.snp-takeaways__label {
    font-family: var(--sans) !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: .2em !important;
    text-transform: uppercase !important;
    color: var(--gold) !important;
}
.snp-takeaways__list li {
    font-family: var(--sans) !important;
    font-size: 15px !important;
    color: #ccc !important;
    line-height: 1.55 !important;
    border-bottom-color: #2a2a2a !important;
    padding: 5px 0 !important;
}
.snp-takeaways__bullet { background: var(--gold) !important; }

/* Analysis */
.snp-analysis {
    background: transparent !important;
    border: none !important;
    border-top: 2px solid var(--ink) !important;
    border-bottom: 2px solid var(--ink) !important;
    border-radius: 0 !important;
    padding: 22px 0 !important;
    margin: 32px 0 !important;
    clear: both;
}
.snp-analysis__label {
    font-family: var(--sans) !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: .2em !important;
    text-transform: uppercase !important;
    color: var(--gold) !important;
}
.snp-analysis__badge {
    background: var(--ink) !important;
    color: var(--gold) !important;
    border: 1px solid var(--gold) !important;
    border-radius: 3px !important;
    font-size: 10px !important;
}
.snp-analysis__body p {
    font-family: var(--serif) !important;
    font-size: 18px !important;
    color: var(--ink) !important;
    font-style: italic !important;
    line-height: 1.8 !important;
    margin-bottom: 12px !important;
}

/* Gear pick */
.snp-gear-pick {
    border: 1.5px solid var(--gold) !important;
    border-radius: var(--radius) !important;
    padding: 16px 20px !important;
    margin: 28px 0 !important;
    background: var(--gold-lt) !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 16px !important;
    clear: both;
}
.snp-gear-pick__label, .snp-gear-pick__sport {
    font-family: var(--sans) !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: .16em !important;
    text-transform: uppercase !important;
    color: #7a5500 !important;
    margin-bottom: 4px !important;
}
.snp-gear-pick__title {
    font-family: var(--sans) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: var(--ink) !important;
}
.snp-gear-pick__desc {
    font-family: var(--sans) !important;
    font-size: 12px !important;
    color: #7a5500 !important;
    margin-top: 3px !important;
    line-height: 1.5 !important;
}
.snp-gear-pick__btn {
    background: var(--ink) !important;
    color: var(--gold) !important;
    font-family: var(--sans) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
    padding: 10px 16px !important;
    border-radius: 3px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}
.snp-gear-pick__btn:hover { background: #333 !important; }

/* FAQ */
.sna-faq-block {
    border-top: 2px solid var(--ink);
    padding-top: 22px;
    margin: 32px 0;
    clear: both;
}
.sna-faq-block h2 {
    font-family: var(--sans) !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    letter-spacing: .2em !important;
    text-transform: uppercase !important;
    color: var(--gold) !important;
    margin-bottom: 18px !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}
.sna-faq-item {
    border-bottom: 1px solid var(--rule);
    padding-bottom: 14px;
    margin-bottom: 14px;
}
.sna-faq-item:last-child { border-bottom: none; }
.sna-faq-item h3 {
    font-family: var(--serif) !important;
    font-size: 17px !important;
    font-weight: 400 !important;
    color: var(--ink) !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    margin-bottom: 8px !important;
    border-bottom: none !important;
}
.sna-faq-item p {
    font-family: var(--sans) !important;
    font-size: 14px !important;
    color: var(--slate) !important;
    line-height: 1.65 !important;
    font-style: normal !important;
}

/* sna-source override */
.sna-source {
    font-family: var(--sans) !important;
    font-size: 12px !important;
    color: var(--muted) !important;
    font-style: normal !important;
    padding-top: 14px !important;
    margin-top: 20px !important;
    border-top: 1px solid var(--rule) !important;
    display: block !important;
    clear: both;
}
.sna-source a { color: var(--gold) !important; }
/* ── Image credit line ──────────────────────────────────────── */
.snp-image-credit {
    font-family: var(--sans);
    font-size: 11px;
    color: var(--muted);
    background: rgba(0,0,0,.04);
    padding: 5px 12px;
    margin: 0;
    text-align: right;
    letter-spacing: .02em;
}
.snp-image-credit a {
    color: var(--muted);
    text-decoration: underline;
}
.snp-image-credit a:hover { color: var(--gold); }

/* ── Aggregator disclaimer — inside article, below tags, above related ── */
.snp-aggregator-notice {
    border-top: 1px solid var(--rule);
    margin: 28px 0 0;
    padding: 14px 0 0;
}
.snp-aggregator-notice p {
    font-family: var(--sans);
    font-size: 11px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}
.snp-aggregator-notice a {
    color: var(--gold-dk);
    text-decoration: underline;
}


/* ── Social embed block — subtle inline note, moved to end of body ──────── */
.snp-social-embed {
    border-top: 1px solid var(--rule);
    padding: 10px 0 0;
    margin: 28px 0 0;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}
.snp-social-embed-label {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0;
    flex-shrink: 0;
}
.snp-social-embed-text {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}
.snp-social-embed-text a {
    color: var(--gold-dk);
    font-weight: 600;
    text-decoration: underline;
}

/* ================================================================
   BEST DEALS PAGE
   ================================================================ */
.snp-deals-hero {
    background: var(--ink);
    padding: 28px 0 24px;
    border-bottom: 3px solid var(--gold);
}
.snp-deals-hero h1 {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 400;
    color: #f7f5f0;
    letter-spacing: -.5px;
    margin-bottom: 6px;
}
.snp-deals-hero p {
    font-family: var(--sans);
    font-size: 14px;
    color: #888;
    max-width: 560px;
}

.snp-deals-wrap { padding: 32px 0 48px; }

.snp-deals-section-title {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--ink);
    margin: 32px 0 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--rule);
    letter-spacing: -.3px;
}
.snp-deals-section-title:first-child { margin-top: 0; }

.snp-deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 12px;
}

.snp-deal-card {
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    transition: border-color .15s, box-shadow .15s;
}
.snp-deal-card:hover {
    border-color: var(--gold);
    box-shadow: 0 4px 12px rgba(201,168,76,.15);
}
.snp-deal-card__body { padding: 16px 18px 18px; }
.snp-deal-card__sport {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 6px;
    display: block;
}
.snp-deal-card__title {
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.35;
    margin-bottom: 8px;
}
.snp-deal-card__price {
    font-family: var(--sans);
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 14px;
}
.snp-deal-card__price strong {
    font-size: 18px;
    color: var(--ink);
    font-weight: 700;
}
.snp-deal-card__btn {
    display: block;
    text-align: center;
    background: var(--ink);
    color: var(--gold);
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: 10px 0;
    border-radius: 3px;
    text-decoration: none;
    transition: background .15s;
}
.snp-deal-card__btn:hover { background: #333; color: var(--gold); }

.snp-deals-disclaimer {
    font-family: var(--sans);
    font-size: 11px;
    color: var(--muted);
    font-style: italic;
    padding-top: 20px;
    border-top: 1px solid var(--rule);
    margin-top: 24px;
}
.snp-deals-disclaimer a { color: var(--gold); }

/* ================================================================
   GEAR REVIEW PAGE — Comparison Table
   ================================================================ */
.snp-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--sans);
    font-size: 13px;
    margin: 24px 0;
}
.snp-comparison-table thead th {
    background: var(--ink);
    color: #f7f5f0;
    padding: 10px 14px;
    text-align: left;
    font-weight: 700;
    font-size: 9px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.snp-comparison-table thead th:first-child {
    border-left: 3px solid var(--gold);
}
.snp-comparison-table tbody tr {
    border-bottom: 1px solid var(--rule);
    transition: background .1s;
}
.snp-comparison-table tbody tr:hover { background: var(--gold-lt); }
.snp-comparison-table tbody td {
    padding: 12px 14px;
    color: var(--slate);
    vertical-align: middle;
}
.snp-comparison-table .snp-best-pick td:first-child {
    border-left: 3px solid var(--gold);
    font-weight: 700;
    color: var(--ink);
}

/* ================================================================
   FOOTER
   ================================================================ */
#snp-footer {
    background: var(--ink);
    border-top: 3px solid var(--gold);
}

.snp-footer-widgets {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
    padding: 40px 0 32px;
    border-bottom: 1px solid #1f1f1f;
}

.snp-footer-brand-name {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    color: #f7f5f0;
    letter-spacing: -.3px;
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
}
.snp-footer-brand-name sup { color: var(--gold); }
.snp-footer-brand-desc {
    font-family: var(--sans);
    font-size: 12px;
    color: #555;
    line-height: 1.65;
    max-width: 200px;
}
.snp-footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}
.snp-footer-social a {
    width: 30px;
    height: 30px;
    border: 1px solid #2a2a2a;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    transition: all .15s;
}
.snp-footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.snp-footer-col h4 {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #1f1f1f;
}
.snp-footer-col ul li {
    padding: 6px 0;
    border-bottom: 1px solid #1a1a1a;
}
.snp-footer-col ul li:last-child { border-bottom: none; }
.snp-footer-col ul li a {
    font-family: var(--sans);
    font-size: 12px;
    color: #555;
    text-decoration: none;
    transition: color .15s;
}
.snp-footer-col ul li a:hover { color: var(--gold); }

.snp-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}
.snp-copyright {
    font-family: var(--sans);
    font-size: 10px;
    color: #333;
    letter-spacing: .04em;
}
.snp-footer-legal {
    display: flex;
    gap: 16px;
}
.snp-footer-legal a {
    font-family: var(--sans);
    font-size: 10px;
    color: #333;
    text-decoration: none;
    letter-spacing: .04em;
}
.snp-footer-legal a:hover { color: #666; }

/* ================================================================
   STATIC PAGES (About, Contact, Privacy etc)
   ================================================================ */
.snp-page-hero {
    background: var(--ink);
    padding: 28px 0 24px;
    border-bottom: 3px solid var(--gold);
}
.snp-page-hero h1 {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 400;
    color: #f7f5f0;
    letter-spacing: -.3px;
}

.snp-page-content {
    max-width: 760px;
    padding: 36px 0 48px;
    font-family: var(--serif);
    font-size: 17px;
    line-height: 1.8;
    color: var(--slate);
}
.snp-page-content h2 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--ink);
    margin: 32px 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--rule);
}
.snp-page-content p { margin-bottom: 18px; }
.snp-page-content a { color: var(--gold); }
.snp-page-content ul { padding-left: 18px; margin-bottom: 18px; }
.snp-page-content ul li { list-style: disc; margin-bottom: 6px; font-size: 16px; }

/* ================================================================
   SEARCH & 404
   ================================================================ */
.snp-search-wrap { padding: 40px 0 60px; }
.snp-search-form-wrap { max-width: 540px; margin: 0 auto 40px; text-align: center; }
.snp-search-form-wrap p {
    font-family: var(--sans);
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 16px;
}
.snp-search-form {
    display: flex;
    gap: 8px;
}
.snp-search-input {
    flex: 1;
    padding: 10px 14px;
    font-family: var(--sans);
    font-size: 14px;
    border: 1.5px solid var(--rule);
    border-radius: 3px;
    background: var(--surface);
    color: var(--ink);
}
.snp-search-input:focus { outline: none; border-color: var(--gold); }
.snp-search-submit {
    background: var(--ink);
    color: var(--gold);
    border: none;
    padding: 10px 18px;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    border-radius: 3px;
    cursor: pointer;
}

.snp-404-wrap {
    padding: 60px 0;
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}
.snp-404-num {
    font-family: var(--serif);
    font-size: 120px;
    font-weight: 400;
    color: var(--rule);
    line-height: 1;
    margin-bottom: 16px;
}
.snp-404-msg {
    font-family: var(--serif);
    font-size: 24px;
    color: var(--ink);
    margin-bottom: 10px;
}
.snp-404-desc {
    font-family: var(--sans);
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

/* ================================================================
   PAGINATION
   ================================================================ */
.snp-pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    padding: 32px 0 0;
}
.snp-pagination a,
.snp-pagination span {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--slate);
    padding: 7px 13px;
    border: 1px solid var(--rule);
    border-radius: 2px;
    text-decoration: none;
    display: inline-block;
    transition: all .15s;
}
.snp-pagination a:hover {
    background: var(--ink);
    color: var(--gold);
    border-color: var(--ink);
}
.snp-pagination .current {
    background: var(--ink);
    color: var(--gold);
    border-color: var(--ink);
    font-weight: 700;
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 960px) {
    .snp-lead {
        grid-template-columns: 1fr;
    }
    .snp-lead-text {
        padding-right: 0;
        border-right: none;
        border-bottom: 1px solid var(--rule);
        padding-bottom: 24px;
        margin-bottom: 24px;
    }
    .snp-lead-image { padding-left: 0; }
    .snp-mid-tier { grid-template-columns: 1fr 1fr; }
    .snp-mid-card:nth-child(2) { border-right: none; }
    .snp-mid-card:nth-child(3) {
        grid-column: 1/-1;
        border-right: none;
        border-top: 1px solid var(--rule);
    }
    .content-grid {
        grid-template-columns: 1fr;
    }
    .snp-footer-widgets {
        grid-template-columns: 1fr 1fr;
    }
    .snp-deals-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .snp-wordmark { font-size: 28px; }
    .snp-article-title { font-size: 28px; }
    .snp-cat-title { font-size: 34px; }
    .snp-lead-hed { font-size: 28px; }
    .snp-article-body,
    .snp-article-body p { font-size: 16px; }
    .snp-article-body > p:first-of-type::first-letter { font-size: 52px; }
    .snp-mid-tier { grid-template-columns: 1fr; }
    .snp-mid-card { border-right: none; border-bottom: 1px solid var(--rule); }
    .snp-mid-card:last-child { border-bottom: none; }
    .snp-digest-item { grid-template-columns: 80px 1fr; }
    .snp-digest-time { display: none; }
    .snp-related-grid { grid-template-columns: 1fr 1fr; }
    .snp-analysis-strip { grid-template-columns: 1fr; gap: 12px; }
    .snp-strip-icon { display: none; }
    .snp-archive-feature { grid-template-columns: 1fr; }
    .snp-gear-pick { flex-direction: column; align-items: flex-start; }
    .snp-menu-toggle { display: block; }
    .snp-nav {
        display: none;
        flex-direction: column;
        background: #111;
        padding: 8px 0;
    }
    .snp-nav.open { display: flex; }
    .snp-nav a { padding: 10px 16px; border-bottom: none; }
    .snp-footer-widgets { grid-template-columns: 1fr 1fr; }
    .snp-footer-brand { grid-column: 1/-1; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .snp-wordmark { font-size: 24px; }
    .snp-article-title { font-size: 24px; }
    .snp-footer-widgets { grid-template-columns: 1fr; }
    .snp-related-grid { grid-template-columns: 1fr; }
    .snp-deals-grid { grid-template-columns: 1fr; }
    .snp-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}


/* ── Homepage sport grid ─────────────────────────────────────── */
.snp-sport-grid-item:hover { opacity: .8; }

@media (max-width: 768px) {
    .snp-home-sport-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}
@media (max-width: 480px) {
    .snp-home-sport-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* Print styles */
@media print {
    #snp-header, #snp-footer, .snp-sidebar, .snp-share-bar { display: none; }
    .content-grid { grid-template-columns: 1fr; }
    .snp-article-body { font-size: 12pt; }
}


/* ================================================================
   HOMEPAGE — NEW SECTIONS (v1.0.6)
   snp-more-grid, snp-more-card, snp-sport-strip, snp-sport-card
   ================================================================ */

/* ── More Stories grid (3-col) ───────────────────────────────── */
.snp-more-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    margin-bottom: 40px;
}

.snp-more-card {
    border-right: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
}
.snp-more-card:last-child { border-right: none; }

.snp-more-img-wrap {
    display: block;
    overflow: hidden;
    flex-shrink: 0;
    background: #2a2a2a;
}
.snp-more-img-wrap img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform .25s ease;
}
.snp-more-card:hover .snp-more-img-wrap img {
    transform: scale(1.03);
}

.snp-more-body {
    padding: 16px 20px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.snp-more-sport {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    display: block;
    text-decoration: none;
}
.snp-more-sport:hover { color: var(--gold-dk); }

.snp-more-hed {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: auto;
    padding-bottom: 10px;
}
.snp-more-hed a { color: var(--ink); text-decoration: none; }
.snp-more-hed a:hover { color: var(--gold); }

.snp-more-time {
    font-family: var(--sans);
    font-size: 10px;
    color: #aaa;
    letter-spacing: .03em;
    margin-top: 10px;
    display: block;
}

/* ── Per-sport strips ────────────────────────────────────────── */
.snp-sport-strip {
    background: var(--paper);
    border-top: 1px solid var(--rule);
    padding: 28px 0 36px;
    margin-bottom: 0;
}

.snp-strip-more {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold);
    text-decoration: none;
    margin-left: auto;       /* push to right of section-label flex row */
    white-space: nowrap;
}
.snp-strip-more:hover { color: var(--gold-dk); }

.snp-sport-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
}

.snp-sport-card {
    padding: 16px 20px;
    border-right: 1px solid var(--rule);
    display: flex;
    flex-direction: column;
}
.snp-sport-card:last-child { border-right: none; }

.snp-sport-img-wrap {
    display: block;
    overflow: hidden;
    margin: -16px -20px 14px;  /* bleed to card edges */
    flex-shrink: 0;
    background: #2a2a2a;
}
.snp-sport-img-wrap img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform .25s ease;
}
.snp-sport-card:hover .snp-sport-img-wrap img {
    transform: scale(1.03);
}

.snp-sport-hed {
    font-family: var(--serif);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
    color: var(--ink);
    margin-bottom: auto;
    padding-bottom: 8px;
    flex: 1;
}
.snp-sport-hed a { color: var(--ink); text-decoration: none; }
.snp-sport-hed a:hover { color: var(--gold); }

.snp-sport-time {
    font-family: var(--sans);
    font-size: 10px;
    color: #aaa;
    letter-spacing: .03em;
    margin-top: 8px;
    display: block;
}

/* ── Responsive: More grid ───────────────────────────────────── */
@media (max-width: 960px) {
    .snp-more-grid {
        grid-template-columns: 1fr 1fr;
    }
    .snp-more-card:nth-child(2) { border-right: none; }
    .snp-more-card:nth-child(n+3) {
        border-top: 1px solid var(--rule);
    }
    .snp-sport-grid {
        grid-template-columns: 1fr 1fr;
    }
    .snp-sport-card:nth-child(2) { border-right: none; }
    .snp-sport-card:nth-child(n+3) {
        border-top: 1px solid var(--rule);
    }
}

@media (max-width: 640px) {
    .snp-more-grid {
        grid-template-columns: 1fr;
    }
    .snp-more-card {
        border-right: none;
        border-bottom: 1px solid var(--rule);
    }
    .snp-more-card:last-child { border-bottom: none; }
    .snp-more-img-wrap img { height: 200px; }
    .snp-sport-grid {
        grid-template-columns: 1fr;
    }
    .snp-sport-card {
        border-right: none;
        border-bottom: 1px solid var(--rule);
    }
    .snp-sport-card:last-child { border-bottom: none; }
    .snp-sport-img-wrap { margin: -16px -20px 14px; }
    .snp-sport-img-wrap img { height: 180px; }
    .snp-sport-strip { padding: 20px 0 28px; }
}


/* ================================================================
   EVERGREEN CONTENT — Article styles (v1.0.7)
   Scoped to body.sna-evergreen to avoid affecting news articles.
   ================================================================ */

/* ── Evergreen badge in article header ───────────────────────── */
.snp-evergreen-badge {
    display: inline-block;
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--gold-dk);
    background: var(--gold-lt);
    border: 1px solid var(--gold);
    padding: 3px 10px;
    border-radius: 2px;
    margin-left: 10px;
    vertical-align: middle;
}

/* ── H4 — product subheading (Best for / Price labels) ───────── */
.snp-article-body h4 {
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 4px;
    clear: both;
}

/* ── Evergreen product card sections ─────────────────────────── */
/* Each ## Product heading becomes a visually distinct card block */
.sna-evergreen .snp-article-body h2 {
    border-bottom: none;
    border-left: 3px solid var(--gold);
    padding-left: 14px;
    padding-bottom: 0;
    margin-top: 40px;
}

/* First H2 (Introduction) keeps the standard rule style */
.sna-evergreen .snp-article-body h2:first-of-type {
    border-left: none;
    border-bottom: 1px solid var(--rule);
    padding-left: 0;
    margin-top: 0;
}

/* "Best for:" and "Price:" strong labels styled as meta pills */
.sna-evergreen .snp-article-body h2 + p strong:first-child {
    display: inline-block;
    font-family: var(--sans);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gold-dk);
    background: var(--gold-lt);
    padding: 2px 8px;
    border-radius: 2px;
    margin-right: 4px;
}

/* ── "Last updated" framing on evergreen meta bar ─────────────── */
.sna-evergreen .snp-meta-date::before {
    content: 'Updated ';
    font-size: 10px;
    color: var(--muted);
    letter-spacing: .04em;
    text-transform: uppercase;
}

/* ── Pexels image credit ──────────────────────────────────────── */
.snp-image-credit {
    font-family: var(--sans);
    font-size: 11px;
    color: var(--muted);
    padding: 6px 0;
    text-align: right;
    display: block;
}
.snp-image-credit a {
    color: var(--muted);
    text-decoration: underline;
    text-decoration-color: var(--rule);
}
.snp-image-credit a:hover { color: var(--gold); }

/* ── Comparison table refinements for evergreen ──────────────── */
.sna-evergreen .snp-ct-wrap {
    margin: 36px 0;
}
.sna-evergreen .snp-ct th:first-child,
.sna-evergreen .snp-ct td:first-child {
    font-weight: 600;
}

/* ── FAQ block refinements for evergreen ─────────────────────── */
.sna-evergreen .sna-faq-block {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-top: 3px solid var(--ink);
    border-radius: 0 0 4px 4px;
    padding: 24px 28px;
    margin: 40px 0;
}

/* ── Aggregator notice hidden on evergreen (no source) ───────── */
.sna-evergreen .snp-aggregator-notice {
    display: none;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 768px) {
    .sna-evergreen .snp-article-body h2 {
        border-left: none;
        border-bottom: 1px solid var(--rule);
        padding-left: 0;
    }
    .snp-evergreen-badge { display: none; }
}


/* ================================================================
   EVERGREEN — Table of Contents + Sidebar widget (v1.0.7)
   ================================================================ */

/* ── Table of Contents ───────────────────────────────────────── */
.snp-toc {
    background: var(--paper);
    border: 1px solid var(--rule);
    border-left: 3px solid var(--gold);
    border-radius: 0 4px 4px 0;
    padding: 18px 22px;
    margin: 28px 0 32px;
    clear: both;
}
.snp-toc__label {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--gold-dk);
    margin-bottom: 12px;
}
.snp-toc__list {
    padding-left: 18px;
    margin: 0;
}
.snp-toc__list li {
    font-family: var(--sans);
    font-size: 14px;
    color: var(--ink);
    margin-bottom: 7px;
    list-style: decimal;
}
.snp-toc__list li:last-child { margin-bottom: 0; }
.snp-toc__list a {
    color: var(--ink);
    text-decoration: none;
    border-bottom: 1px solid var(--rule);
    transition: color .15s, border-color .15s;
}
.snp-toc__list a:hover {
    color: var(--gold-dk);
    border-bottom-color: var(--gold);
}

/* ── Sidebar Top Pick widget ─────────────────────────────────── */
.snp-top-pick-widget {
    background: var(--gold-lt);
    border: 1.5px solid var(--gold);
    border-radius: 6px;
    padding: 18px 20px;
    text-align: center;
}
.snp-top-pick-label {
    font-family: var(--sans);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold-dk);
    margin-bottom: 10px;
}
.snp-top-pick-product {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 400;
    color: var(--ink);
    line-height: 1.35;
    margin-bottom: 10px;
}
.snp-top-pick-reason {
    font-family: var(--sans);
    font-size: 12px;
    color: var(--slate);
    line-height: 1.55;
    margin-bottom: 14px;
    text-align: left;
}
.snp-top-pick-btn {
    display: block;
    background: var(--ink);
    color: var(--gold) !important;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 11px 16px;
    border-radius: 4px;
    text-decoration: none !important;
    margin-bottom: 8px;
    transition: background .15s;
}
.snp-top-pick-btn:hover { background: #333; }
.snp-top-pick-disclaimer {
    display: block;
    font-family: var(--sans);
    font-size: 10px;
    color: var(--muted);
    font-style: italic;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 960px) {
    .snp-top-pick-widget { margin-bottom: 20px; }
}
@media (max-width: 768px) {
    .snp-toc { margin: 20px 0 24px; }
}
