/* =====================================================================
   SportSteer — main.css
   Pixel-faithful Dallas Cowboys clone for sportsteer.com
   ===================================================================== */

/* ─── Design Tokens ──────────────────────────────────────────── */
:root {
  /* Cowboys exact colour palette */
  --st-navy:        #002244;
  --st-navy-mid:    #00316e;
  --st-navy-light:  #0047a0;
  --st-silver:      #acc0c6;
  --st-gold:        #c8a84b;
  --st-gold-light:  #d9bc73;
  --st-white:       #ffffff;
  --st-dark:        #111111;
  --st-dark-card:   #1a1a1a;
  --st-gray:        #f4f4f4;
  --st-gray-mid:    #e8e8e8;
  --st-text:        #1a1a1a;
  --st-text-muted:  #555555;
  --st-text-light:  #888888;
  --st-border:      #dddddd;
  --st-red:         #cc0000;
  --st-shadow:      0 2px 8px rgba(0,0,0,.12);
  --st-shadow-lg:   0 8px 32px rgba(0,0,0,.2);

  /* Typography — Barlow Condensed is the closest to Cowboys' Proxima Nova Condensed */
  --st-font-headline: 'Barlow Condensed', 'Arial Narrow', Arial, sans-serif;
  --st-font-body:     'Barlow', 'Helvetica Neue', Arial, sans-serif;

  /* Layout */
  --st-max-w:  1280px;
  --st-pad:    20px;
}

/* ─── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--st-font-body); font-size: 15px; line-height: 1.55; color: var(--st-text); background: var(--st-white); -webkit-font-smoothing: antialiased; }
img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
a:hover { color: var(--st-navy-light); }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ─── Container ──────────────────────────────────────────────── */
.st-container { max-width: var(--st-max-w); margin: 0 auto; padding: 0 var(--st-pad); }

/* ─── Header Top Strip ───────────────────────────────────────── */
.st-header-top { background: var(--st-navy); border-bottom: 1px solid rgba(255,255,255,.08); padding: 4px 0; }
.st-header-top__inner { display: flex; justify-content: flex-end; align-items: center; gap: 0; }
.st-header-top__link {
  color: rgba(255,255,255,.85);
  font-family: var(--st-font-headline);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-left: 1px solid rgba(255,255,255,.15);
  transition: color .15s, background .15s;
}
.st-header-top__link:hover { color: #fff; background: rgba(255,255,255,.1); }

/* ─── Logo Row ───────────────────────────────────────────────── */
.st-header-logo-row { background: var(--st-navy); padding: 10px 0; }
.st-header-logo-row__inner {
  max-width: var(--st-max-w);
  margin: 0 auto;
  padding: 0 var(--st-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
/* Logo — SportSteer wordmark */
.st-logo { display: inline-flex; flex-direction: column; align-items: center; text-decoration: none; line-height: 1.05;margin-left:auto;margin-right:auto}
.st-logo__sport { font-family: var(--st-font-headline); font-size: 36px; font-weight: 900; color: var(--st-silver); letter-spacing: 2px; text-transform: uppercase; line-height: 1; }
.st-logo__steer { font-family: var(--st-font-headline); font-size: 36px; font-weight: 900; color: #fff; letter-spacing: 2px; text-transform: uppercase; line-height: 1; }
.st-logo--white .st-logo__sport { color: var(--st-silver); }
.st-logo--white .st-logo__steer { color: #fff; }
.st-logo--sm .st-logo__sport,
.st-logo--sm .st-logo__steer { font-size: 22px; }

/* Search button in header */
.st-header-logo-row__search-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.8);
  font-family: var(--st-font-headline);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .15s;
}
.st-header-logo-row__search-label { display: inline; }
.st-header-logo-row__search-btn:hover { color: #fff; }

/* Hamburger */
.st-hamburger { color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 6px; font-family: var(--st-font-headline); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; transition: color .15s; }
.st-hamburger__label { display: inline; }
.st-hamburger:hover { color: #fff; }

/* ─── Primary Navigation ─────────────────────────────────────── */
.st-primary-nav { background: var(--st-navy); border-top: 1px solid rgba(255,255,255,.1); border-bottom: 2px solid var(--st-gold); }
.st-primary-nav > .st-container { max-width: var(--st-max-w); margin: 0 auto; padding: 0; }
.st-primary-nav__list { display: flex; overflow-x: auto; scrollbar-width: none; align-items: stretch; }
.st-primary-nav__list::-webkit-scrollbar { display: none; }
.st-primary-nav__item { display: flex; align-items: stretch; }
.st-primary-nav__link {
  display: flex;
  align-items: center;
  padding: 0 18px;
  height: 44px;
  font-family: var(--st-font-headline);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: color .15s, border-color .15s, background .15s;
}
.st-primary-nav__link:hover { color: #fff; border-bottom-color: var(--st-gold); background: rgba(255,255,255,.06); }
.st-primary-nav__item.is-current .st-primary-nav__link { color: #fff; border-bottom-color: var(--st-gold); }

/* ─── Action Nav ─────────────────────────────────────────────── */
.st-action-nav { background: #0a0a1a; border-bottom: 1px solid rgba(255,255,255,.06); }
.st-action-nav__inner { max-width: var(--st-max-w); margin: 0 auto; padding: 0 var(--st-pad); display: flex; align-items: stretch; }
.st-action-nav__link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 18px;
  height: 38px;
  font-family: var(--st-font-headline);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
  border-right: 1px solid rgba(255,255,255,.08);
  transition: color .15s, background .15s;
  white-space: nowrap;
}
.st-action-nav__link:hover { color: #fff; background: rgba(255,255,255,.08); }
.st-action-nav__link--tickets { background: var(--st-gold); color: var(--st-navy); }
.st-action-nav__link--tickets:hover { background: var(--st-gold-light); color: var(--st-navy); }

/* ─── Search Overlay ─────────────────────────────────────────── */
.st-search-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.9); z-index: 9999; display: flex; flex-direction: column; align-items: stretch; padding-top: 60px; opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s; }
.st-search-overlay.is-open { opacity: 1; visibility: visible; }
.st-search-overlay__inner { background: var(--st-white); padding: 28px var(--st-pad) 20px; max-width: 780px; margin: 0 auto; width: 100%; border-radius: 0 0 4px 4px; }
.st-search-overlay__close { position: absolute; top: 12px; right: 20px; display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,.8); font-family: var(--st-font-headline); font-size: 13px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.st-search-overlay__close:hover { color: #fff; }
.st-search-overlay__hints { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.st-search-overlay__hint { font-size: 13px; padding: 4px 10px; background: var(--st-gray); border: 1px solid var(--st-border); border-radius: 2px; color: var(--st-text-muted); transition: background .12s, color .12s; }
.st-search-overlay__hint:hover { background: var(--st-navy); color: #fff; }

/* Search form */
.st-search-form { display: flex; border-bottom: 2px solid var(--st-navy); }
.st-search-form__input { flex: 1; height: 52px; font-family: var(--st-font-headline); font-size: 22px; font-weight: 600; text-transform: uppercase; border: none; outline: none; color: var(--st-text); background: transparent; }
.st-search-form__input::placeholder { color: var(--st-border); }
.st-search-form__btn { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; color: var(--st-navy); flex-shrink: 0; transition: color .15s; }
.st-search-form__btn:hover { color: var(--st-gold); }

/* ─── Hero Carousel ──────────────────────────────────────────── */
.st-hero { position: relative; background: var(--st-dark); overflow: hidden; }
.st-hero__tagline {
  background: var(--st-navy);
  text-align: center;
  padding: 7px 16px;
  font-family: var(--st-font-headline);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.75);
}
.st-hero__track { position: relative; min-height: 520px; }
.st-hero__slide {
  position: absolute;
  inset: 0;
  background-color: var(--st-dark);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity .7s ease;
}
.st-hero__slide.is-active { opacity: 1; pointer-events: auto; position: relative; min-height: 520px; }
.st-hero__slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, rgba(0,0,0,.4) 40%, rgba(0,0,0,.05) 70%, transparent 100%);
}
.st-hero__slide-body { position: relative; z-index: 2; padding: 48px 32px; max-width: 900px; }
.st-hero__kicker {
  display: inline-block;
  font-family: var(--st-font-headline);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--st-gold);
  margin-bottom: 10px;
}
.st-hero__title {
  font-family: var(--st-font-headline);
  font-size: 48px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #fff;
  margin-bottom: 12px;
}
.st-hero__title a { color: #fff; }
.st-hero__title a:hover { color: var(--st-gold); }
.st-hero__excerpt { font-size: 17px; color: rgba(255,255,255,.88); line-height: 1.5; font-family: var(--st-font-body); }

/* Arrows */
.st-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  background: rgba(0,0,0,.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .15s;
  border: 2px solid rgba(255,255,255,.25);
}
.st-hero__arrow:hover { background: var(--st-gold); color: var(--st-navy); }
.st-hero__arrow--prev { left: 16px; }
.st-hero__arrow--next { right: 16px; }

/* Dots */
.st-hero__dots { position: absolute; bottom: 16px; right: 28px; z-index: 10; display: flex; gap: 6px; }
.st-hero__dot { width: 8px; height: 8px; border-radius: 50%; border: 2px solid rgba(255,255,255,.6); background: transparent; padding: 0; cursor: pointer; transition: background .2s, border-color .2s; }
.st-hero__dot.is-active { background: var(--st-gold); border-color: var(--st-gold); }

/* ─── Tabbed Section ─────────────────────────────────────────── */
.st-tabs-section { padding: 24px 0 0; background: var(--st-white); }
.st-tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 3px solid var(--st-navy);
  margin-bottom: 0;
}
.st-tab-btn {
  font-family: var(--st-font-headline);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 10px 24px;
  color: var(--st-text-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -3px;
  transition: color .15s, border-color .15s;
  background: transparent;
}
.st-tab-btn:hover { color: var(--st-navy); }
.st-tab-btn.is-active { color: var(--st-navy); border-bottom-color: var(--st-navy); }

.st-tab-panel { display: none; padding: 16px 0; }
.st-tab-panel.is-active { display: block; }

.st-tabs-body { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 28px; align-items: start; padding-top: 4px; }

/* Tab content: featured + numbered list */
.st-tab-content { display: flex; flex-direction: column; }
.st-tab-featured { margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--st-border); }
.st-tab-featured__img-wrap { display: block; overflow: hidden; margin-bottom: 10px; position: relative; aspect-ratio: 16/9; }
.st-tab-featured__img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.st-tab-featured__img-wrap:hover .st-tab-featured__img { transform: scale(1.03); }
.st-tab-featured__body {}
.st-tab-featured__title { font-family: var(--st-font-headline); font-size: 22px; font-weight: 800; line-height: 1.2; text-transform: uppercase; color: var(--st-text); margin: 6px 0 6px; letter-spacing: .02em; }
.st-tab-featured__title a:hover { color: var(--st-navy-light); }
.st-tab-featured__excerpt { font-size: 14px; color: var(--st-text-muted); line-height: 1.5; }

/* Numbered list */
.st-news-list { display: flex; flex-direction: column; gap: 0; list-style: none; }
.st-news-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--st-border);
}
.st-news-list-item__num {
  font-family: var(--st-font-headline);
  font-size: 32px;
  font-weight: 900;
  color: var(--st-gray-mid);
  line-height: 1;
  width: 30px;
  flex-shrink: 0;
  text-align: right;
}
.st-news-list-item__body { flex: 1; min-width: 0; }
.st-news-list-item__kicker { display: block; font-family: var(--st-font-headline); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--st-navy-light); margin-bottom: 2px; }
.st-news-list-item__title { display: block; font-family: var(--st-font-headline); font-size: 16px; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; color: var(--st-text); line-height: 1.3; }
.st-news-list-item__title:hover { color: var(--st-navy-light); }
.st-news-list-item__thumb-wrap { flex-shrink: 0; width: 80px; position: relative; overflow: hidden; }
.st-news-list-item__thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

/* More link */
.st-more-link { display: inline-flex; align-items: center; font-family: var(--st-font-headline); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--st-navy); margin-top: 14px; transition: color .15s; }
.st-more-link:hover { color: var(--st-navy-light); text-decoration: underline; }
.st-more-link--lg { font-size: 16px; }

/* ─── Trending Sidebar ───────────────────────────────────────── */
.st-trending { border-left: 3px solid var(--st-navy); padding-left: 16px; }
.st-trending__title { font-family: var(--st-font-headline); font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: .14em; color: var(--st-navy); margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid var(--st-border); }
.st-trending__list { display: flex; flex-direction: column; gap: 0; list-style: none; }
.st-trending__item { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; border-bottom: 1px solid var(--st-border); }
.st-trending__item:last-child { border-bottom: none; }
.st-trending__num { font-family: var(--st-font-headline); font-size: 26px; font-weight: 900; color: var(--st-gray-mid); width: 22px; flex-shrink: 0; line-height: 1; text-align: right; }
.st-trending__body { flex: 1; min-width: 0; }
.st-trending__kicker { display: block; font-family: var(--st-font-headline); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--st-navy-light); margin-bottom: 2px; }
.st-trending__title-link { display: block; font-family: var(--st-font-headline); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; color: var(--st-text); line-height: 1.3; }
.st-trending__title-link:hover { color: var(--st-navy-light); }

/* ─── Kicker ─────────────────────────────────────────────────── */
.st-kicker {
  display: inline-block;
  font-family: var(--st-font-headline);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--st-navy-light);
  margin-bottom: 3px;
}
.st-kicker--lg { font-size: 14px; }
a.st-kicker:hover { text-decoration: underline; }

/* ─── Section Head ───────────────────────────────────────────── */
.st-section-head { display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid var(--st-navy); padding-bottom: 8px; margin-bottom: 16px; }
.st-section-head__title { font-family: var(--st-font-headline); font-size: 20px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; color: var(--st-navy); }
.st-section-head__more { font-family: var(--st-font-headline); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--st-navy-light); }
.st-section-head__more:hover { text-decoration: underline; }

/* ─── Ad Slot / Placeholder ──────────────────────────────────── */
.st-ad-slot { padding: 10px 0; }
.st-ad-placeholder { background: var(--st-gray); border: 1px dashed var(--st-border); height: 80px; display: flex; align-items: center; justify-content: center; font-family: var(--st-font-headline); font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--st-text-light); border-radius: 2px; }
.st-ad-placeholder--rect { height: 250px; }

/* ─── Season News Grid ───────────────────────────────────────── */
.st-season-section { padding: 24px 0; background: var(--st-gray); }
.st-season-header { margin-bottom: 16px; border-bottom: 2px solid var(--st-navy); padding-bottom: 8px; }
.st-season-header__title { font-family: var(--st-font-headline); font-size: 22px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; color: var(--st-navy); }

.st-season-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.st-article-card { background: var(--st-white); overflow: hidden; }
.st-article-card__img-wrap { display: block; overflow: hidden; aspect-ratio: 16/9; }
.st-article-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.st-article-card__img-wrap:hover .st-article-card__img { transform: scale(1.04); }
.st-article-card__body { padding: 12px 14px; }
.st-article-card__kicker { display: block; font-family: var(--st-font-headline); font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--st-navy-light); margin-bottom: 5px; }
.st-article-card__title { font-family: var(--st-font-headline); font-size: 18px; font-weight: 800; text-transform: uppercase; letter-spacing: .02em; line-height: 1.2; color: var(--st-text); margin-bottom: 6px; }
.st-article-card__title a:hover { color: var(--st-navy-light); }
.st-article-card__excerpt { font-size: 13px; color: var(--st-text-muted); line-height: 1.5; }

/* ─── Featured Video ─────────────────────────────────────────── */
.st-featured-video { padding: 24px 0; background: var(--st-white); }
.st-featured-video__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; border-bottom: 2px solid var(--st-navy); padding-bottom: 8px; }
.st-featured-video__title { font-family: var(--st-font-headline); font-size: 22px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; color: var(--st-navy); }
.st-featured-video__sponsor { font-family: var(--st-font-headline); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--st-text-muted); }

.st-featured-video__grid { display: grid; grid-template-columns: minmax(0,1.6fr) minmax(0,1fr); gap: 16px; }
.st-featured-video__lead {}
.st-featured-video__lead-img-wrap { display: block; overflow: hidden; position: relative; aspect-ratio: 16/9; margin-bottom: 10px; }
.st-featured-video__lead-img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.st-featured-video__lead-img-wrap:hover .st-featured-video__lead-img { transform: scale(1.03); }
.st-featured-video__lead-body {}
.st-featured-video__lead-title { font-family: var(--st-font-headline); font-size: 20px; font-weight: 800; text-transform: uppercase; line-height: 1.2; color: var(--st-text); margin: 5px 0 6px; }
.st-featured-video__lead-title a:hover { color: var(--st-navy-light); }
.st-featured-video__lead-excerpt { font-size: 13px; color: var(--st-text-muted); line-height: 1.5; }

/* Small video cards (right column = 3 stacked) */
.st-video-card { display: flex; gap: 10px; align-items: flex-start; padding-bottom: 12px; border-bottom: 1px solid var(--st-border); margin-bottom: 12px; }
.st-video-card:last-child { border-bottom: none; margin-bottom: 0; }
.st-video-card__thumb-wrap { flex-shrink: 0; width: 120px; position: relative; overflow: hidden; }
.st-video-card__thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.st-video-card__body { flex: 1; min-width: 0; }
.st-video-card__title { font-family: var(--st-font-headline); font-size: 15px; font-weight: 700; text-transform: uppercase; line-height: 1.3; color: var(--st-text); margin-top: 3px; }
.st-video-card__title a:hover { color: var(--st-navy-light); }
.st-video-card__dur { position: absolute; bottom: 4px; right: 4px; background: rgba(0,0,0,.75); color: #fff; font-size: 10px; font-weight: 700; padding: 1px 4px; border-radius: 2px; }
.st-video-card__excerpt { font-size: 13px; color: var(--st-text-muted); margin-top: 4px; line-height: 1.4; }

/* ─── Play overlay ───────────────────────────────────────────── */
.st-play-overlay {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  background: rgba(0,0,0,.6);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: background .15s;
}
*:hover > .st-play-overlay { background: rgba(0,34,68,.85); }
.st-play-overlay--sm { width: 34px; height: 34px; }
.st-play-overlay--sm svg { width: 16px; height: 16px; }
.st-play-overlay--xs { width: 24px; height: 24px; }
.st-play-overlay--xs svg { width: 10px; height: 10px; }

/* Video / gallery badge */
.st-video-badge, .st-gallery-badge {
  position: absolute;
  bottom: 6px; left: 6px;
  background: rgba(0,0,0,.7);
  color: rgba(255,255,255,.9);
  font-family: var(--st-font-headline);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 2px 7px;
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: lowercase;
}

/* ─── "Up Next" carousel ─────────────────────────────────────── */
.st-upnext { padding: 16px 0 20px; background: var(--st-dark-card); position: relative; overflow: hidden; }
.st-upnext__title { font-family: var(--st-font-headline); font-size: 14px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.6); margin-bottom: 10px; }
.st-upnext__track { overflow: hidden; }
.st-upnext__list { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; padding-bottom: 4px; }
.st-upnext__list::-webkit-scrollbar { display: none; }

.st-upnext-item { flex-shrink: 0; width: 200px; }
.st-upnext-item__link { display: flex; gap: 8px; align-items: flex-start; text-decoration: none; }
.st-upnext-item__thumb-wrap { flex-shrink: 0; width: 100px; position: relative; overflow: hidden; }
.st-upnext-item__thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.st-upnext-item__body { flex: 1; min-width: 0; }
.st-upnext-item__type { display: block; font-family: var(--st-font-headline); font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.55); margin-bottom: 2px; }
.st-upnext-item__title { display: block; font-family: var(--st-font-headline); font-size: 13px; font-weight: 700; text-transform: uppercase; color: rgba(255,255,255,.9); line-height: 1.3; }

.st-upnext__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; width: 32px; height: 32px; background: rgba(255,255,255,.15); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .15s; }
.st-upnext__arrow:hover { background: var(--st-gold); color: var(--st-navy); }
.st-upnext__arrow--left  { left: 0; }
.st-upnext__arrow--right { right: 0; }

/* ─── Events ─────────────────────────────────────────────────── */
.st-events-section { padding: 24px 0; background: var(--st-white); }
.st-events-section__title { font-family: var(--st-font-headline); font-size: 22px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; color: var(--st-navy); border-bottom: 2px solid var(--st-navy); padding-bottom: 8px; margin-bottom: 16px; }
.st-events-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.st-event-card { background: var(--st-white); border: 1px solid var(--st-border); overflow: hidden; }
.st-event-card__link { display: block; text-decoration: none; }
.st-event-card__img-wrap { overflow: hidden; aspect-ratio: 1/1; }
.st-event-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.st-event-card__link:hover .st-event-card__img { transform: scale(1.05); }
.st-event-card__body { padding: 10px 12px; }
.st-event-card__time { display: block; font-family: var(--st-font-headline); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--st-navy-light); margin-bottom: 4px; }
.st-event-card__title { font-family: var(--st-font-headline); font-size: 15px; font-weight: 700; text-transform: uppercase; color: var(--st-text); line-height: 1.3; margin-bottom: 4px; }
.st-event-card__link:hover .st-event-card__title { color: var(--st-navy-light); }
.st-event-card__desc { font-size: 12px; color: var(--st-text-muted); line-height: 1.4; }

/* ─── Podcast Video ──────────────────────────────────────────── */
.st-podcast-video-section { padding: 24px 0; background: var(--st-gray); }
.st-podcast-video-section__title { font-family: var(--st-font-headline); font-size: 22px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; color: var(--st-navy); border-bottom: 2px solid var(--st-navy); padding-bottom: 8px; margin-bottom: 16px; }
.st-podcast-video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.st-pvideo-card { background: var(--st-white); overflow: hidden; }
.st-pvideo-card__link { display: block; text-decoration: none; }
.st-pvideo-card__thumb-wrap { display: block; overflow: hidden; position: relative; aspect-ratio: 16/9; }
.st-pvideo-card__thumb { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.st-pvideo-card__link:hover .st-pvideo-card__thumb { transform: scale(1.04); }
.st-pvideo-card__body { padding: 10px 12px; }
.st-pvideo-card__show { display: block; font-family: var(--st-font-headline); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--st-navy-light); margin-bottom: 4px; }
.st-pvideo-card__title { font-family: var(--st-font-headline); font-size: 16px; font-weight: 700; text-transform: uppercase; color: var(--st-text); line-height: 1.3; margin-bottom: 4px; }
.st-pvideo-card__link:hover .st-pvideo-card__title { color: var(--st-navy-light); }
.st-pvideo-card__excerpt { font-size: 13px; color: var(--st-text-muted); line-height: 1.4; }

/* ─── Podcast Audio ──────────────────────────────────────────── */
.st-podcast-audio-section { padding: 24px 0; background: var(--st-dark); }
.st-podcast-audio-section__title { font-family: var(--st-font-headline); font-size: 22px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.9); border-bottom: 2px solid rgba(255,255,255,.15); padding-bottom: 8px; margin-bottom: 16px; }
.st-podcast-audio-list { display: flex; flex-direction: column; gap: 0; }
.st-paudio-item { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.st-paudio-item:last-child { border-bottom: none; }
.st-paudio-item__body { flex: 1; min-width: 0; }
.st-paudio-item__show { display: block; font-family: var(--st-font-headline); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--st-gold); margin-bottom: 2px; }
.st-paudio-item__title { font-family: var(--st-font-headline); font-size: 16px; font-weight: 700; text-transform: uppercase; color: rgba(255,255,255,.9); line-height: 1.3; }
.st-paudio-item__title:hover { color: var(--st-gold); }
.st-paudio-item__dur { display: block; font-size: 12px; color: rgba(255,255,255,.45); margin-top: 2px; }
.st-paudio-item__listen {
  flex-shrink: 0;
  background: transparent;
  border: 2px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.85);
  padding: 7px 20px;
  font-family: var(--st-font-headline);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color .15s, color .15s, background .15s;
}
.st-paudio-item__listen:hover { border-color: var(--st-gold); color: var(--st-gold); }

/* ─── Photo Galleries ────────────────────────────────────────── */
.st-galleries-section { padding: 24px 0; background: var(--st-white); }
.st-galleries-section__header { display: flex; align-items: center; justify-content: space-between; border-bottom: 2px solid var(--st-navy); padding-bottom: 8px; margin-bottom: 16px; }
.st-galleries-section__title { font-family: var(--st-font-headline); font-size: 22px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; color: var(--st-navy); }
.st-galleries-section__sponsor { font-family: var(--st-font-headline); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--st-text-muted); }
.st-galleries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.st-gallery-card {}
.st-gallery-card__img-wrap { display: block; overflow: hidden; position: relative; aspect-ratio: 3/2; margin-bottom: 8px; }
.st-gallery-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.st-gallery-card__img-wrap:hover .st-gallery-card__img { transform: scale(1.04); }
.st-gallery-badge { position: absolute; bottom: 6px; left: 6px; background: rgba(0,0,0,.7); color: rgba(255,255,255,.9); font-family: var(--st-font-headline); font-size: 11px; font-weight: 700; letter-spacing: .06em; padding: 2px 7px; display: flex; align-items: center; gap: 4px; }
.st-gallery-card__body {}
.st-gallery-card__excerpt { font-size: 12px; color: var(--st-text-muted); margin-bottom: 4px; line-height: 1.4; }
.st-gallery-card__title { font-family: var(--st-font-headline); font-size: 15px; font-weight: 700; text-transform: uppercase; line-height: 1.25; color: var(--st-text); }
.st-gallery-card__title a:hover { color: var(--st-navy-light); }

/* ─── Cheerleaders Banner ────────────────────────────────────── */
.st-cheer-banner { background: var(--st-navy); padding: 0; overflow: hidden; }
.st-cheer-banner__inner { display: flex; align-items: stretch; min-height: 280px; }
.st-cheer-banner__img-wrap { flex-shrink: 0; width: 240px; overflow: hidden; }
.st-cheer-banner__img-placeholder { width: 100%; background: rgba(255,255,255,.1); }
.st-cheer-banner__img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.st-cheer-banner__body { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 40px 48px; }
.st-cheer-banner__title { font-family: var(--st-font-headline); font-size: 40px; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; color: #fff; margin-bottom: 10px; line-height: 1.05; }
.st-cheer-banner__desc { font-size: 15px; color: rgba(255,255,255,.75); margin-bottom: 20px; }
.st-cheer-banner__btn { display: inline-flex; align-items: center; background: var(--st-gold); color: var(--st-navy); padding: 10px 28px; font-family: var(--st-font-headline); font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; border-radius: 2px; transition: background .15s; width: fit-content; }
.st-cheer-banner__btn:hover { background: var(--st-gold-light); color: var(--st-navy); }

/* ─── Follow Us ──────────────────────────────────────────────── */
.st-follow-section { padding: 28px 0; background: var(--st-white); border-top: 3px solid var(--st-navy); border-bottom: 1px solid var(--st-border); }
.st-follow-section__title { font-family: var(--st-font-headline); font-size: 22px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; color: var(--st-navy); margin-bottom: 16px; }
.st-follow-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.st-follow-btn { display: flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 4px; font-family: var(--st-font-headline); font-size: 14px; font-weight: 700; letter-spacing: .06em; text-transform: capitalize; color: #fff; background: var(--st-dark); transition: transform .15s, box-shadow .15s; text-decoration: none; }
.st-follow-btn:hover { transform: translateY(-2px); box-shadow: var(--st-shadow); color: #fff; }
.st-follow-btn__icon { width: 32px; height: 32px; border-radius: 6px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.st-follow-btn--snapchat .st-follow-btn__label { color: var(--st-dark); }

/* ─── Mailbag ────────────────────────────────────────────────── */
.st-mailbag-section { padding: 32px 0; background: var(--st-gray); }
.st-mailbag-section__inner { display: flex; align-items: center; gap: 40px; }
.st-mailbag-section__img-wrap { flex-shrink: 0; width: 200px; overflow: hidden; border-radius: 4px; }
.st-mailbag-section__img { width: 100%; object-fit: cover; }
.st-mailbag-section__body { flex: 1; }
.st-mailbag-section__title { font-family: var(--st-font-headline); font-size: 42px; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; color: var(--st-navy); margin-bottom: 10px; }
.st-mailbag-section__desc { font-size: 15px; color: var(--st-text-muted); margin-bottom: 18px; line-height: 1.5; }
.st-mailbag-section__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── Off the Field ──────────────────────────────────────────── */
.st-off-field-section { padding: 24px 0; background: var(--st-white); }
.st-off-field-section__title { font-family: var(--st-font-headline); font-size: 22px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; color: var(--st-navy); border-bottom: 2px solid var(--st-navy); padding-bottom: 8px; margin-bottom: 16px; }
.st-off-field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.st-off-field-card { background: var(--st-navy); padding: 28px 24px; display: block; transition: background .15s; }
.st-off-field-card:hover { background: var(--st-navy-mid); }
.st-off-field-card__title { font-family: var(--st-font-headline); font-size: 24px; font-weight: 900; text-transform: uppercase; color: #fff; letter-spacing: .04em; margin-bottom: 4px; }
.st-off-field-card__sub { font-family: var(--st-font-headline); font-size: 14px; font-weight: 600; text-transform: uppercase; color: var(--st-silver); letter-spacing: .06em; }

/* ─── Game Day ───────────────────────────────────────────────── */
.st-game-day-section { padding: 24px 0; background: var(--st-gray); }
.st-game-day-section__title { font-family: var(--st-font-headline); font-size: 22px; font-weight: 900; text-transform: uppercase; letter-spacing: .06em; color: var(--st-navy); border-bottom: 2px solid var(--st-navy); padding-bottom: 8px; margin-bottom: 16px; }
.st-game-day-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.st-game-day-card { background: var(--st-white); border: 1px solid var(--st-border); padding: 20px 22px; display: block; transition: border-color .15s, box-shadow .15s; }
.st-game-day-card:hover { border-color: var(--st-navy); box-shadow: var(--st-shadow); }
.st-game-day-card__title { font-family: var(--st-font-headline); font-size: 18px; font-weight: 800; text-transform: uppercase; color: var(--st-navy); letter-spacing: .04em; margin-bottom: 6px; }
.st-game-day-card__sub { font-size: 13px; color: var(--st-text-muted); line-height: 1.4; }

/* ─── More Info ──────────────────────────────────────────────── */
.st-more-info-section { padding: 24px 0; background: var(--st-white); }
.st-more-info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.st-more-info-card { background: var(--st-navy); padding: 24px 20px; display: block; transition: background .15s; }
.st-more-info-card:hover { background: var(--st-navy-mid); }
.st-more-info-card__title { font-family: var(--st-font-headline); font-size: 20px; font-weight: 900; text-transform: uppercase; color: #fff; letter-spacing: .04em; margin-bottom: 6px; }
.st-more-info-card__desc { font-size: 13px; color: var(--st-silver); line-height: 1.5; }

/* ─── Ticket Strip ───────────────────────────────────────────── */
.st-ticket-strip { background: var(--st-dark); border-top: 3px solid var(--st-gold); padding: 16px 0; }
.st-ticket-strip__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.st-ticket-strip__links { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.st-ticket-strip__link {
  font-family: var(--st-font-headline);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.8);
  padding: 8px 24px;
  border-right: 1px solid rgba(255,255,255,.15);
  transition: color .15s;
}
.st-ticket-strip__link:hover { color: var(--st-gold); }
.st-ticket-strip__link--primary { background: var(--st-gold); color: var(--st-navy); border-right-color: rgba(255,255,255,.15); }
.st-ticket-strip__link--primary:hover { background: var(--st-gold-light); color: var(--st-navy); }
.st-ticket-strip__sep { display: none; }

/* ─── Footer Club Links ──────────────────────────────────────── */
.st-footer-links { background: #0d0d1a; padding: 32px 0; }
.st-footer-links__inner { display: grid; grid-template-columns: 2fr 3fr 1.5fr; gap: 40px; }

.st-footer-club__title,
.st-footer-nfl__title,
.st-footer-more__title { font-family: var(--st-font-headline); font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.55); margin-bottom: 14px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.08); }
.st-footer-club__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.st-footer-club__sub { font-family: var(--st-font-headline); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.45); margin-bottom: 8px; margin-top: 14px; }
.st-footer-club__sub:first-child { margin-top: 0; }
.st-footer-club__list { display: flex; flex-direction: column; gap: 5px; }
.st-footer-club__list a { font-size: 13px; color: rgba(255,255,255,.65); transition: color .15s; }
.st-footer-club__list a:hover { color: #fff; text-decoration: underline; }

.st-footer-nfl__divisions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.st-footer-nfl__div-title { font-family: var(--st-font-headline); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.45); margin-bottom: 8px; }
.st-footer-nfl__list { display: flex; flex-direction: column; gap: 5px; }
.st-footer-nfl__list a { font-size: 12px; color: rgba(255,255,255,.65); transition: color .15s; }
.st-footer-nfl__list a:hover { color: #fff; }

.st-footer-more__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.st-footer-apps { margin-top: 20px; }
.st-footer-apps__title { font-family: var(--st-font-headline); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.45); margin-bottom: 10px; }
.st-footer-apps__links { display: flex; gap: 8px; flex-wrap: wrap; }
.st-footer-apps__btn { display: block; opacity: .85; transition: opacity .15s; }
.st-footer-apps__btn:hover { opacity: 1; }

/* ─── Footer Bottom ──────────────────────────────────────────── */
.st-footer-bottom { background: #050510; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.06); }
.st-footer-bottom__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.st-footer-bottom__copy { font-family: var(--st-font-headline); font-size: 12px; color: rgba(255,255,255,.4); letter-spacing: .04em; }
.st-footer-bottom__legal { display: flex; gap: 16px; flex-wrap: wrap; }
.st-footer-bottom__legal a { font-size: 12px; color: rgba(255,255,255,.45); transition: color .15s; }
.st-footer-bottom__legal a:hover { color: #fff; text-decoration: underline; }

/* ─── Mobile Menu ────────────────────────────────────────────── */
.st-mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.7); z-index: 500; opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; }
.st-mobile-overlay.is-open { opacity: 1; visibility: visible; }
.st-mobile-menu { position: fixed; top: 0; left: 0; width: 290px; height: 100%; background: var(--st-navy); z-index: 600; transform: translateX(-100%); transition: transform .28s ease; overflow-y: auto; display: flex; flex-direction: column; }
.st-mobile-menu.is-open { transform: none; }
.st-mobile-menu__header { display: flex; justify-content: space-between; align-items: center; padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,.1); }
.st-mobile-menu__close { color: rgba(255,255,255,.8); width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; transition: color .15s; }
.st-mobile-menu__close:hover { color: #fff; }
.st-mobile-menu__search { padding: 10px 12px; border-bottom: 1px solid rgba(255,255,255,.1); }
.st-mobile-menu__search .st-search-form { border-bottom-color: rgba(255,255,255,.3); }
.st-mobile-menu__search .st-search-form__input { color: #fff; }
.st-mobile-menu__search .st-search-form__input::placeholder { color: rgba(255,255,255,.4); }
.st-mobile-menu__search .st-search-form__btn { color: rgba(255,255,255,.7); }
.st-mobile-nav { flex: 1; }
.st-mobile-nav__item { border-bottom: 1px solid rgba(255,255,255,.07); }
.st-mobile-nav__link { display: block; padding: 13px 18px; font-family: var(--st-font-headline); font-size: 16px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.85); transition: color .12s, background .12s; }
.st-mobile-nav__link:hover { color: #fff; background: rgba(255,255,255,.08); }
.st-mobile-menu__ctas { padding: 14px 16px; display: flex; flex-direction: column; gap: 8px; border-top: 1px solid rgba(255,255,255,.1); }
.st-mobile-cta { display: block; text-align: center; padding: 11px; font-family: var(--st-font-headline); font-size: 14px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.85); border: 2px solid rgba(255,255,255,.25); border-radius: 2px; transition: background .12s; }
.st-mobile-cta--gold { background: var(--st-gold); color: var(--st-navy); border-color: var(--st-gold); }
.st-mobile-cta--gold:hover { background: var(--st-gold-light); color: var(--st-navy); }

/* ─── Single Page ────────────────────────────────────────────── */
.st-single-wrap { padding: 20px 0 48px; }
.st-single-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 40px; align-items: start; }
.st-single__main { min-width: 0; }
.st-single__sidebar { position: sticky; top: 12px; }
.st-single__labels { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.st-single__title { font-family: var(--st-font-headline); font-size: 40px; font-weight: 900; text-transform: uppercase; line-height: 1.1; letter-spacing: .02em; color: var(--st-text); margin-bottom: 14px; }
.st-single__byline-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-bottom: 14px; border-bottom: 1px solid var(--st-border); margin-bottom: 16px; }
.st-single__avatar { border-radius: 50%; flex-shrink: 0; }
.st-single__meta { font-size: 12px; color: var(--st-text-light); display: flex; align-items: center; gap: 8px; }
.st-single__readtime { font-family: var(--st-font-headline); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.st-single__video-wrap { margin-bottom: 20px; }
.st-single__video-embed { position: relative; padding-top: 56.25%; background: #000; }
.st-single__video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.st-single__hero { margin-bottom: 20px; }
.st-single__hero-img { width: 100%; }
.st-single__hero-cap { font-size: 12px; color: var(--st-text-light); margin-top: 5px; }
.st-article-body { font-size: 17px; line-height: 1.8; color: var(--st-text); }
.st-article-body p { margin-bottom: 20px; }
.st-article-body h2 { font-family: var(--st-font-headline); font-size: 24px; font-weight: 800; text-transform: uppercase; margin: 28px 0 12px; }
.st-article-body h3 { font-family: var(--st-font-headline); font-size: 20px; font-weight: 700; text-transform: uppercase; margin: 24px 0 10px; }
.st-article-body a { color: var(--st-navy-light); text-decoration: underline; }
.st-article-body blockquote { margin: 24px 0; padding: 16px 20px; border-left: 4px solid var(--st-gold); background: var(--st-gray); font-family: var(--st-font-headline); font-size: 22px; font-weight: 700; text-transform: uppercase; line-height: 1.4; }
.st-article-body ul, .st-article-body ol { padding-left: 20px; margin-bottom: 20px; }
.st-article-body ul li { list-style: disc; margin-bottom: 6px; }
.st-article-body ol li { list-style: decimal; margin-bottom: 6px; }
.st-single__footer { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 14px 0; border-top: 1px solid var(--st-border); border-bottom: 1px solid var(--st-border); margin: 24px 0; }

/* Author box */
.st-author-box { display: flex; gap: 14px; align-items: flex-start; padding: 18px; background: var(--st-gray); border-left: 4px solid var(--st-navy); margin: 24px 0; }
.st-author-box__avatar { border-radius: 50%; flex-shrink: 0; }
.st-author-box__name { display: block; font-family: var(--st-font-headline); font-size: 18px; font-weight: 800; text-transform: uppercase; color: var(--st-navy); letter-spacing: .04em; margin-bottom: 4px; }
.st-author-box__name:hover { color: var(--st-navy-light); }
.st-author-box__bio { font-size: 13px; color: var(--st-text-muted); line-height: 1.5; }

/* Related */
.st-related { margin-top: 28px; padding-top: 16px; border-top: 2px solid var(--st-navy); }
.st-related__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 14px; }

/* Share */
.st-share { display: flex; align-items: center; gap: 6px; }
.st-share__btn { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; background: var(--st-navy); transition: background .15s; }
.st-share__btn:hover { background: var(--st-navy-light); }
.st-share__btn--copy { background: var(--st-gray); color: var(--st-text-muted); border: 1px solid var(--st-border); }
.st-share__btn--copy:hover { background: var(--st-navy); color: #fff; }
.st-share__btn--copy.is-copied { background: #059669 !important; color: #fff !important; }

/* Tags */
.st-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.st-tag { display: inline-block; padding: 5px 12px; font-family: var(--st-font-headline); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--st-navy); border: 2px solid var(--st-navy); border-radius: 2px; transition: background .12s, color .12s; }
.st-tag:hover { background: var(--st-navy); color: #fff; }

/* ─── Breadcrumb ─────────────────────────────────────────────── */
.st-breadcrumb { margin-bottom: 12px; }
.st-breadcrumb__list { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; }
.st-breadcrumb__list li { display: flex; align-items: center; gap: 4px; font-family: var(--st-font-headline); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--st-text-muted); }
.st-breadcrumb__list li:not(:last-child)::after { content: '/'; color: var(--st-border); margin-left: 4px; }
.st-breadcrumb__list a { color: var(--st-navy-light); }
.st-breadcrumb__list a:hover { text-decoration: underline; }

/* ─── Archive ────────────────────────────────────────────────── */
.st-archive-header { background: var(--st-navy); padding: 24px 0; border-bottom: 3px solid var(--st-gold); }
.st-archive-header__title { font-family: var(--st-font-headline); font-size: 36px; font-weight: 900; text-transform: uppercase; letter-spacing: .04em; color: #fff; }
.st-archive-header__count { font-family: var(--st-font-headline); font-size: 13px; color: rgba(255,255,255,.6); margin-top: 4px; letter-spacing: .06em; }
.st-archive-header .st-search-form { max-width: 480px; margin-top: 12px; border-bottom-color: rgba(255,255,255,.4); }
.st-archive-header .st-search-form__input { color: #fff; }
.st-archive-header .st-search-form__input::placeholder { color: rgba(255,255,255,.5); }
.st-archive-header .st-search-form__btn { color: rgba(255,255,255,.7); }
.st-archive__body { padding: 20px 0 48px; }
.st-archive__main-sidebar { display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: 32px; align-items: start; }
.st-archive__main {}
.st-archive__sidebar { position: sticky; top: 12px; }
.st-archive-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

/* Load More */
.st-load-more-wrap { text-align: center; padding: 20px 0; }
.st-load-more-btn { display: inline-flex; align-items: center; gap: 6px; padding: 11px 32px; background: var(--st-navy); color: #fff; font-family: var(--st-font-headline); font-size: 15px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; border-radius: 2px; cursor: pointer; transition: background .15s; }
.st-load-more-btn:hover { background: var(--st-navy-mid); }
.st-load-more-btn:disabled { opacity: .5; cursor: not-allowed; }

/* ─── Buttons ────────────────────────────────────────────────── */
.st-btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 24px; font-family: var(--st-font-headline); font-size: 15px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; border-radius: 2px; transition: background .15s, color .15s, border-color .15s; text-decoration: none; }
.st-btn--primary { background: var(--st-navy); color: #fff; }
.st-btn--primary:hover { background: var(--st-navy-mid); color: #fff; }
.st-btn--ghost { background: transparent; color: var(--st-navy); border: 2px solid var(--st-navy); }
.st-btn--ghost:hover { background: var(--st-navy); color: #fff; }

/* ─── Error / No Results ─────────────────────────────────────── */
.st-error-page { padding: 60px 0; }
.st-error-page__title { font-family: var(--st-font-headline); font-size: 36px; font-weight: 900; text-transform: uppercase; color: var(--st-navy); margin-bottom: 12px; }
.st-error-page__text { font-size: 16px; color: var(--st-text-muted); margin-bottom: 24px; }
.st-error-page .st-search-form { max-width: 480px; margin-bottom: 24px; border-bottom-color: var(--st-navy); }
.st-error-page__links { display: flex; flex-wrap: wrap; gap: 8px; }
.st-no-results { padding: 60px 20px; text-align: center; }
.st-no-results__title { font-family: var(--st-font-headline); font-size: 28px; font-weight: 900; text-transform: uppercase; color: var(--st-navy); margin-bottom: 10px; }
.st-no-results__text { font-size: 15px; color: var(--st-text-muted); margin-bottom: 20px; }
.st-no-results .st-search-form { max-width: 480px; margin: 0 auto 20px; border-bottom-color: var(--st-navy); }
.st-no-results__links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; }

/* ─── Misc ───────────────────────────────────────────────────── */
.st-page-wrap { padding: 24px 0 48px; }
.st-page-layout { display: grid; grid-template-columns: minmax(0,1fr) 280px; gap: 32px; }
.st-page-sidebar { position: sticky; top: 12px; }
.st-page-article__title { font-family: var(--st-font-headline); font-size: 30px; font-weight: 900; text-transform: uppercase; color: var(--st-navy); margin-bottom: 20px; }
.st-page-article__hero-img { width: 100%; margin-bottom: 20px; }
.st-widget { margin-bottom: 20px; }
.st-widget__title { font-family: var(--st-font-headline); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--st-navy); margin-bottom: 10px; border-bottom: 2px solid var(--st-navy); padding-bottom: 6px; }
.st-comments { padding: 28px 0; border-top: 2px solid var(--st-navy); margin-top: 24px; }
.st-comments__title { font-family: var(--st-font-headline); font-size: 22px; font-weight: 900; text-transform: uppercase; color: var(--st-navy); margin-bottom: 16px; }
.st-byline { font-family: var(--st-font-headline); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--st-text-muted); }
.st-byline:hover { color: var(--st-navy-light); text-decoration: underline; }
.st-time { font-family: var(--st-font-headline); font-size: 11px; color: var(--st-text-light); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }

/* Back to top */
.st-back-top { position: fixed; bottom: 24px; right: 20px; width: 40px; height: 40px; background: var(--st-navy); color: #fff; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity .2s, visibility .2s, background .15s; z-index: 300; border-radius: 2px; box-shadow: var(--st-shadow); }
.st-back-top.is-visible { opacity: 1; visibility: visible; }
.st-back-top:hover { background: var(--st-gold); color: var(--st-navy); }
.st-read-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--st-gold); z-index: 9999; transition: width .1s linear; pointer-events: none; }
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .3s ease, transform .3s ease; }
.reveal.is-revealed { opacity: 1; transform: none; }

/* ─── Responsive ─────────────────────────────────────────────── */
@media ( max-width: 1100px ) {
  .st-season-grid { grid-template-columns: repeat(2, 1fr); }
  .st-galleries-grid { grid-template-columns: repeat(2, 1fr); }
  .st-events-grid { grid-template-columns: repeat(2, 1fr); }
  .st-footer-links__inner { grid-template-columns: 1fr; }
  .st-footer-nfl__divisions { grid-template-columns: repeat(4, 1fr); }
}
@media ( max-width: 900px ) {
  .st-tabs-body { grid-template-columns: 1fr; }
  .st-trending-sidebar { display: none; }
  .st-featured-video__grid { grid-template-columns: 1fr; }
  .st-single-layout, .st-archive__main-sidebar, .st-page-layout { grid-template-columns: 1fr; }
  .st-single__sidebar, .st-archive__sidebar, .st-page-sidebar { position: static; }
  .st-archive-grid { grid-template-columns: repeat(2, 1fr); }
  .st-podcast-video-grid { grid-template-columns: repeat(2, 1fr); }
  .st-related__grid { grid-template-columns: repeat(2, 1fr); }
  .st-footer-nfl__divisions { grid-template-columns: repeat(3, 1fr); }
  .st-footer-club__cols { grid-template-columns: 1fr; }
}
@media ( max-width: 700px ) {
  :root { --st-pad: 14px; }
  .st-header-logo-row__search-label { display: none; }
  .st-hamburger__label { display: none; }
  .st-primary-nav > .st-container { padding: 0; }
  .st-primary-nav__link { padding: 0 12px; font-size: 13px; }
  .st-action-nav { display: none; }
  .st-hero__title { font-size: 30px; }
  .st-hero__slide.is-active { min-height: 350px; }
  .st-hero__slide-body { padding: 24px 16px; }
  .st-season-grid { grid-template-columns: 1fr; }
  .st-events-grid { grid-template-columns: 1fr; }
  .st-galleries-grid { grid-template-columns: repeat(2, 1fr); }
  .st-archive-grid { grid-template-columns: 1fr; }
  .st-podcast-video-grid { grid-template-columns: 1fr; }
  .st-footer-nfl__divisions { grid-template-columns: repeat(2, 1fr); }
  .st-cheer-banner__inner { flex-direction: column; }
  .st-cheer-banner__img-wrap { width: 100%; max-height: 200px; }
  .st-mailbag-section__inner { flex-direction: column; align-items: flex-start; }
  .st-ticket-strip__inner { flex-direction: column; }
  .st-single__title { font-size: 28px; }
  .st-follow-grid { gap: 8px; }
  .st-off-field-grid { grid-template-columns: 1fr; }
  .st-game-day-grid { grid-template-columns: 1fr; }
  .st-more-info-grid { grid-template-columns: 1fr; }
  .st-footer-bottom__inner { flex-direction: column; align-items: flex-start; }
}
@media ( max-width: 480px ) {
  .st-hero__title { font-size: 24px; }
  .st-galleries-grid { grid-template-columns: 1fr; }
  .st-footer-nfl__divisions { grid-template-columns: 1fr 1fr; }
  .st-related__grid { grid-template-columns: 1fr; }
}
