:root {
  --maroon: #6B303C;
  --maroon-light: #9B4A56;
  --maroon-deep: #3D1820;
  --maroon-glow: rgba(107, 48, 60, 0.55);
  --gold: #e8b923;
  --gold-soft: #ffd95a;
  --ink: #070505;
  --panel: rgba(16, 8, 10, 0.92);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f4f0ee;
  --muted: #b0a8a6;
  --white: #ffffff;
  --radius: 4px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  --font-display: "Bebas Neue", sans-serif;
  --font-body: "IBM Plex Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  color: var(--text);
  font-family: var(--font-body);
  background: var(--ink);
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 20% -10%, var(--maroon-glow), transparent),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(107, 48, 60, 0.12), transparent),
    var(--ink);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(7, 5, 5, 0.85);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
}

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

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
}

.brand-tagline {
  color: var(--maroon-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 14px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
}

.site-nav .nav-admin {
  color: var(--maroon-light);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: transparent;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.15s, filter 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.btn-primary {
  background: var(--maroon);
  color: var(--white);
}

.btn-gold {
  background: var(--gold);
  color: #1a0a0a;
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}

.text-link {
  color: var(--maroon-light);
  font-weight: 700;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}

.eyebrow.gold { color: var(--gold-soft); }

/* Hero */
.hero-full {
  position: relative;
  min-height: clamp(520px, 82vh, 760px);
  display: flex;
  align-items: flex-end;
  margin-top: -72px;
  padding: calc(72px + 48px) 0 64px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 5, 5, 0.94) 0%, rgba(7, 5, 5, 0.72) 42%, rgba(7, 5, 5, 0.35) 100%),
    linear-gradient(0deg, rgba(7, 5, 5, 0.95) 0%, transparent 45%),
    linear-gradient(180deg, rgba(7, 5, 5, 0.55) 0%, transparent 28%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero-content h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(5.5rem, 16vw, 10rem);
  line-height: 0.82;
  letter-spacing: 0.04em;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
}

.hero-content h1 span {
  color: var(--maroon-light);
  display: block;
}

.hero-subtitle {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-lead {
  max-width: 32rem;
  color: rgba(244, 240, 238, 0.82);
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 22px 0 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .site-header {
  background: rgba(7, 5, 5, 0.45);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.page-home .site-bg {
  display: none;
}

/* Gallery */
.gallery-strip {
  padding: 56px 0;
}

.gallery-head h2 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  letter-spacing: 0.04em;
}

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

.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  aspect-ratio: 1;
  background: #0a0a0a;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.35s ease;
}

.gallery-item img.gallery-portrait {
  object-position: center 38%;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* Sponsor */
.sponsor-strip {
  padding: 16px 0;
}

.sponsor-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: 32px;
  background: var(--panel);
  border: 1px solid rgba(232, 185, 35, 0.2);
  border-left: 4px solid var(--gold);
}

.sponsor-card h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: 0.03em;
  line-height: 1.05;
}

.sponsor-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 20px;
}

.sponsor-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: min(100%, 480px);
  aspect-ratio: 2 / 1;
  padding: 14px 18px;
  background: #fff;
  border-radius: 2px;
  justify-self: center;
}

.sponsor-logo-wrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Watch */
.watch-section {
  padding: 56px 0;
}

.watch-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.watch-copy h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: 0.03em;
  line-height: 0.95;
}

.watch-copy p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 22px;
}

.watch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.watch-logo {
  max-width: 180px;
  opacity: 0.9;
}

.video-shell {
  padding: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
}

.video-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 700;
}

.video-frame {
  position: relative;
  padding-top: 56.25%;
  background: #000;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

/* Broadcaster */
.broadcaster-section {
  padding: 56px 0;
  background: linear-gradient(180deg, transparent, rgba(107, 48, 60, 0.14), transparent);
}

.broadcaster-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.broadcaster-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: var(--shadow);
}

.broadcaster-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  display: block;
}

.broadcaster-tag {
  position: absolute;
  padding: 8px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
}

.broadcaster-tag-partner {
  left: 8%;
  bottom: 18%;
  background: rgba(0, 0, 0, 0.65);
  color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(6px);
}

.broadcaster-tag-rob {
  right: 6%;
  bottom: 10%;
  background: var(--maroon);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  padding: 12px 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.broadcaster-role {
  margin: -8px 0 16px !important;
  color: var(--maroon-light) !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
}

.broadcaster-copy h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
}

.broadcaster-copy p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

/* Sports hub */
.sports-hub,
.news-section {
  padding: 56px 0;
}

.section-head {
  margin-bottom: 24px;
}

.section-head.row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: 0.04em;
}

.sport-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.sport-card {
  position: relative;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  border-radius: 2px;
  display: flex;
  align-items: flex-end;
}

.sport-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.2) 55%, rgba(107,48,60,0.25) 100%);
  transition: background 0.3s;
}

.sport-card:hover .sport-card-overlay {
  background: linear-gradient(0deg, rgba(107,48,60,0.95) 0%, rgba(0,0,0,0.4) 100%);
}

.sport-card.football.sport-bg-football { background-image: url('/static/images/hero-team.webp'); }
.sport-card.basketball.sport-bg-basketball { background-image: url('/static/images/gallery-basketball.webp'); }
.sport-card.baseball.sport-bg-baseball { background-image: url('/static/images/gallery-baseball-field.webp'); }

.sport-card-content {
  position: relative;
  z-index: 1;
  padding: 24px;
}

.sport-card h3 {
  margin: 0 0 4px;
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.06em;
}

.sport-card p {
  margin: 0;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}

/* Articles */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.article-grid.compact {
  grid-template-columns: repeat(2, 1fr);
}

.article-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  transition: transform 0.2s;
}

.article-card:hover {
  transform: translateY(-3px);
}

.article-card-link { display: block; height: 100%; }

.article-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.article-card-media img,
.article-card-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card-fallback {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.13), transparent 28%),
    repeating-linear-gradient(-45deg, transparent 0 18px, rgba(255, 255, 255, 0.025) 18px 20px),
    linear-gradient(135deg, var(--maroon), var(--maroon-deep));
  box-shadow: inset 0 0 70px rgba(0, 0, 0, 0.32);
}

.article-card-fallback::before {
  content: "";
  width: min(42%, 180px);
  aspect-ratio: 1;
  background: url("/static/images/bulldogs-logo.webp") center / contain no-repeat;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.4));
}

.article-card-fallback::after {
  content: "GO BULLDOGS";
  position: absolute;
  right: 14px;
  bottom: 10px;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.4vw, 1.6rem);
  letter-spacing: 0.12em;
}

.article-hero-fallback {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.article-hero-fallback::before {
  width: min(30%, 220px);
}

.article-pill {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 5px 10px;
  background: var(--maroon);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-card-body {
  padding: 16px;
}

.article-card-body h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.article-card-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.88rem;
}

.empty-state {
  padding: 48px;
  text-align: center;
  border: 1px dashed var(--line);
}

.empty-state h3 { margin: 0 0 8px; }
.empty-state p { margin: 0; color: var(--muted); }

/* Page hero */
.page-hero {
  padding: 48px 0 24px;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  letter-spacing: 0.04em;
  max-width: 16ch;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.filter-pills a {
  padding: 8px 14px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.filter-pills a.active,
.filter-pills a:hover {
  color: var(--text);
  border-color: var(--maroon-light);
  background: rgba(107, 48, 60, 0.2);
}

/* Article page */
.article-page {
  padding: 40px 0 64px;
}

.article-shell {
  max-width: 720px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.article-meta time {
  color: var(--muted);
  font-size: 0.88rem;
}

.article-shell h1 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: 0.03em;
  line-height: 0.95;
}

.article-hero-image {
  margin: 0 0 28px;
  overflow: hidden;
}

.article-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #d4ccc8;
}

.related-section {
  padding-top: 0;
}

.footer-shn-logo {
  max-width: 140px;
  margin-bottom: 12px;
}

/* Footer */
.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,0.5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  padding: 40px 0 24px;
}

.footer-grid p,
.footer-grid a {
  display: block;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.92rem;
}

.footer-grid h4 {
  margin: 0 0 10px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px 0 24px;
  color: var(--muted);
  font-size: 0.82rem;
  border-top: 1px solid var(--line);
}

.footer-bottom a {
  color: var(--maroon-light);
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-credit {
  margin-left: auto;
}

/* Flash */
.flash-stack { padding-top: 12px; }
.flash {
  padding: 12px 16px;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}
.flash-success { background: rgba(34, 197, 94, 0.15); color: #86efac; }
.flash-error { background: rgba(239, 68, 68, 0.15); color: #fca5a5; }

@media (max-width: 960px) {
  .broadcaster-tag-partner {
    left: 4%;
    bottom: 14%;
    font-size: 0.65rem;
    padding: 6px 10px;
  }

  .broadcaster-tag-rob {
    right: 4%;
    bottom: 6%;
    font-size: 0.95rem;
    padding: 10px 14px;
  }

  .hero-full {
    min-height: clamp(480px, 75vh, 620px);
    align-items: center;
    padding-bottom: 48px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(7, 5, 5, 0.92) 0%, rgba(7, 5, 5, 0.55) 50%, rgba(7, 5, 5, 0.75) 100%);
  }

  .hero-content h1 {
    font-size: clamp(4.5rem, 18vw, 7rem);
  }

  .sponsor-card,
  .watch-grid,
  .broadcaster-layout,
  .sport-cards,
  .article-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .nav-toggle { display: block; }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    background: rgba(7, 5, 5, 0.98);
    border-bottom: 1px solid var(--line);
    display: none;
  }

  .site-nav.open { display: flex; }

  .site-header { position: relative; }
}

/* Alt homepage (/page2) — tighter, scannable layout */
.page-alt .hero-compact {
  min-height: clamp(420px, 70vh, 620px);
}

.page-alt .hero-compact .hero-lead {
  margin: 18px 0 24px;
  font-size: 1.15rem;
  max-width: 28rem;
}

.page-alt .hero-subtitle {
  display: none;
}

.btn-sm {
  padding: 10px 18px;
  font-size: 0.78rem;
}

.alt-sponsor {
  padding: 20px 0;
}

.alt-sponsor-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 24px;
  background: var(--panel);
  border: 1px solid rgba(232, 185, 35, 0.2);
  border-left: 4px solid var(--gold);
}

.alt-sponsor-copy {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.alt-sponsor-copy .eyebrow {
  margin: 0;
}

.alt-watch {
  padding: 40px 0;
}

.alt-watch-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
}

.alt-watch-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.alt-broadcaster {
  padding: 40px 0;
}

.alt-broadcaster-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: center;
}

.alt-broadcaster-copy h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
}

.alt-broadcaster-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 36ch;
}

.page-alt .alt-sports {
  padding-top: 0;
}

.page-alt .alt-sports .sport-card {
  min-height: 200px;
}

.page-alt .alt-sports .sport-card p {
  display: none;
}

.page-alt .alt-news {
  padding-top: 40px;
}

.page-alt .alt-news .section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.04em;
}

.page-alt .alt-article-grid {
  grid-template-columns: repeat(3, 1fr);
}

.page-alt .alt-gallery {
  padding-top: 40px;
}

.page-alt .alt-gallery .gallery-head {
  display: none;
}

@media (max-width: 960px) {
  .alt-watch-grid,
  .alt-broadcaster-inner {
    grid-template-columns: 1fr;
  }

  .alt-watch-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .page-alt .alt-article-grid {
    grid-template-columns: 1fr;
  }
}

/* Page 2 concept: modern sports editorial */
.page2-redesign {
  --p2-maroon: #6b303c;
  --p2-maroon-dark: #3d1820;
  --p2-gold: #e8b923;
  --p2-cream: #f3eee9;
  background: #090708;
}

.page2-redesign main {
  overflow: hidden;
}

.page2-redesign .site-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 7, 8, 0.7);
}

.p2-overline {
  display: block;
  margin-bottom: 12px;
  color: var(--p2-gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.p2-hero {
  position: relative;
  min-height: min(860px, 94vh);
  margin-top: -72px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.p2-hero-image,
.p2-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.p2-hero-image {
  top: -6%;
  height: 112%;
  object-fit: cover;
  object-position: 62% 30%;
  filter: saturate(0.8) contrast(1.06);
  transform: translate3d(0, var(--p2-parallax-y, 0), 0) scale(1.04);
  will-change: transform;
}

.p2-hero-shade {
  background:
    linear-gradient(90deg, rgba(9, 7, 8, 0.98) 0%, rgba(9, 7, 8, 0.83) 35%, rgba(9, 7, 8, 0.15) 76%),
    linear-gradient(0deg, rgba(9, 7, 8, 0.9) 0%, transparent 42%),
    linear-gradient(180deg, rgba(9, 7, 8, 0.5), transparent 30%);
}

.p2-hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 118px;
}

.p2-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.p2-kicker span {
  width: 34px;
  height: 3px;
  background: var(--p2-maroon);
}

.p2-hero h1 {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 0 0.08em 0.12em 0;
  color: var(--p2-cream);
  font-family: var(--font-display);
  font-size: clamp(6.2rem, 13vw, 11.5rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.82;
  text-transform: uppercase;
  overflow: visible;
}

.p2-hero h1::after {
  content: "";
  display: block;
  width: 120px;
  height: 5px;
  margin-top: 12px;
  background: var(--p2-maroon);
  transform: scaleX(0);
  transform-origin: left;
  animation: p2-title-strike 0.55s cubic-bezier(0.22, 1, 0.36, 1) 1s forwards;
}

.p2-hero-go {
  display: block;
  color: var(--p2-maroon);
  font-size: 0.44em;
  letter-spacing: 0.12em;
  line-height: 1;
  transform-origin: left bottom;
  animation: p2-go-impact 0.62s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}

.p2-hero-bulldogs {
  display: block;
  color: var(--p2-cream);
  transform-origin: left center;
  animation: p2-bulldogs-impact 0.82s cubic-bezier(0.16, 1, 0.3, 1) 0.24s both;
}

@keyframes p2-go-impact {
  0% {
    opacity: 0;
    transform: translate3d(-34px, 8px, 0) scale(0.72) rotate(-4deg);
  }
  72% {
    opacity: 1;
    transform: translate3d(3px, 0, 0) scale(1.06) rotate(0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotate(0);
  }
}

@keyframes p2-bulldogs-impact {
  0% {
    opacity: 0;
    transform: translate3d(80px, 0, 0) skewX(7deg) scaleX(1.06);
    text-shadow: none;
  }
  58% {
    opacity: 1;
    transform: translate3d(-8px, 0, 0) skewX(-1deg) scaleX(1);
    text-shadow:
      10px 0 0 rgba(107, 48, 60, 0.75),
      20px 0 0 rgba(232, 185, 35, 0.3);
  }
  76% {
    transform: translate3d(3px, 0, 0) skewX(0);
    text-shadow: 4px 0 0 rgba(107, 48, 60, 0.35);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) skewX(0) scaleX(1);
    letter-spacing: 0.01em;
    text-shadow: 0 8px 34px rgba(0, 0, 0, 0.55);
  }
}

@keyframes p2-title-strike {
  to {
    transform: scaleX(1);
  }
}

.p2-hero-inner > p {
  margin: 34px 0 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.55;
}

.p2-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.p2-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.p2-button:hover {
  transform: translateY(-2px);
}

.p2-button-main {
  background: var(--p2-maroon);
  color: #fff;
}

.p2-button-main:hover {
  background: #81404d;
}

.p2-button-line {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.p2-button-line:hover {
  border-color: var(--p2-gold);
}

.p2-hero-scorebar {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 7, 8, 0.9);
  backdrop-filter: blur(12px);
}

.p2-hero-scorebar .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 58px);
}

.p2-hero-scorebar strong {
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.p2-hero-scorebar .p2-score-sport {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.p2-hero-scorebar .p2-score-sport:hover {
  color: var(--p2-gold);
}

.p2-hero-scorebar .p2-score-live {
  margin-left: auto;
  color: var(--p2-gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.p2-hero-scorebar b,
.p2-sponsor-link span,
.p2-feature-card a span,
.p2-voice-copy > a span,
.p2-news .p2-title-row > a span {
  margin-left: 6px;
}

.p2-presented {
  padding: 34px 0;
  background: var(--p2-maroon-dark);
  border-bottom: none;
}

.p2-presented-inner {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 470px) 1fr;
  align-items: center;
  gap: 34px;
}

.p2-presented-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p2-presented-label span,
.p2-presented-label strong {
  display: block;
  text-transform: uppercase;
}

.p2-presented-label span {
  margin-bottom: 5px;
  color: var(--p2-gold);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.p2-presented-label strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.p2-sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 2 / 1;
  padding: 10px 16px;
  background: #fff;
}

.p2-sponsor-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p2-sponsor-link {
  justify-self: end;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.p2-presented + .p2-feature {
  margin-top: 0;
  padding-top: 100px;
  background:
    linear-gradient(180deg, var(--p2-maroon-dark) 0%, #120c0e 120px, #090708 220px),
    #090708;
}

.p2-sponsors {
  padding: 96px 0 110px;
  background: var(--p2-cream);
  color: var(--p2-ink);
}

.p2-feature + .p2-sponsors {
  margin-top: 0;
  padding-top: 96px;
  background:
    linear-gradient(180deg, #090708 0%, #120c0e 80px, var(--p2-cream) 180px);
}

.p2-sponsors .p2-title-row h2 {
  color: var(--p2-maroon-dark);
}

.p2-sponsors .p2-title-number {
  color: rgba(107, 48, 60, 0.18);
}

.p2-sponsor-carousel {
  margin-bottom: 54px;
}

.p2-sponsor-carousel-stage {
  position: relative;
  min-height: 400px;
  border-radius: 0;
  overflow: hidden;
  background: rgba(107, 48, 60, 0.06);
}

.p2-sponsor-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  border: none;
  background: rgba(107, 48, 60, 0.06);
  box-shadow: none;
  z-index: 1;
  opacity: 0;
  transform: none;
  transition: opacity 0.9s ease;
  pointer-events: none;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.p2-sponsor-slide.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
}

.p2-sponsor-carousel .p2-sponsor-slide.p2-reveal,
.p2-sponsor-carousel .p2-sponsor-slide.p2-reveal.is-visible {
  opacity: 0;
  transform: none;
  transition: opacity 0.9s ease;
}

.p2-sponsor-carousel .p2-sponsor-slide.p2-reveal.is-visible.is-active {
  opacity: 1;
  transform: none;
}

.p2-sponsor-slide-link {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  grid-column: 1 / -1;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.p2-sponsor-slide-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding: 20px 28px;
  border: none;
  background: #fff;
  overflow: hidden;
}

.p2-sponsor-slide-logo img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 360px;
  max-width: 100%;
  object-fit: contain;
  object-position: center center;
}

.p2-sponsor-slide-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px 38px;
  background: rgba(107, 48, 60, 0.08);
}

.p2-sponsor-slide-fallback {
  color: var(--p2-maroon-dark);
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-align: center;
  text-transform: uppercase;
  padding: 34px;
}

.p2-sponsors .p2-overline {
  color: var(--p2-maroon);
}

.p2-sponsor-slide-exclusive {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 4px;
  background: var(--p2-maroon-dark);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.p2-sponsor-slide-copy h3 {
  margin: 0;
  color: var(--p2-maroon-dark);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
}

.p2-sponsor-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 22px;
}

.p2-sponsor-nav {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(107, 48, 60, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--p2-maroon-dark);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.p2-sponsor-nav:hover {
  border-color: var(--p2-maroon);
  background: var(--p2-maroon-dark);
  color: #fff;
}

.p2-sponsor-dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  max-width: 520px;
}

.p2-sponsor-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(107, 48, 60, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.p2-sponsor-dot.is-active {
  background: var(--p2-maroon-dark);
  transform: scale(1.15);
}

.p2-sponsor-directory {
  padding-top: 34px;
  border-top: 1px solid rgba(107, 48, 60, 0.12);
}

.p2-sponsor-directory-head {
  max-width: 640px;
  margin-bottom: 28px;
}

.p2-sponsor-directory-head p {
  margin: 10px 0 0;
  color: rgba(36, 16, 22, 0.72);
  font-size: 1.02rem;
  line-height: 1.6;
}

.p2-sponsor-directory-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border: none;
  background: rgba(107, 48, 60, 0.05);
}

.p2-sponsor-directory-list li {
  border-bottom: 1px solid rgba(107, 48, 60, 0.1);
}

.p2-sponsor-directory-list li:nth-child(odd) {
  border-right: 1px solid rgba(107, 48, 60, 0.1);
}

.p2-sponsor-directory-list li:nth-last-child(-n+2) {
  border-bottom: 0;
}

.p2-sponsor-directory-list a,
.p2-sponsor-directory-list div {
  display: grid;
  gap: 6px;
  padding: 18px 22px;
  transition: background 0.2s ease;
}

.p2-sponsor-directory-list a:hover {
  background: rgba(107, 48, 60, 0.05);
}

.p2-sponsor-directory-list strong {
  color: var(--p2-maroon-dark);
  font-size: 0.98rem;
  font-weight: 700;
}

.p2-sponsor-directory-list span {
  color: rgba(36, 16, 22, 0.62);
  font-size: 0.82rem;
  line-height: 1.45;
}

.p2-feature {
  padding: 100px 0;
  background:
    linear-gradient(135deg, rgba(107, 48, 60, 0.11), transparent 36%),
    #090708;
}

.p2-section-heading,
.p2-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}

.p2-section-heading h2,
.p2-title-row h2,
.p2-voice-copy h2 {
  margin: 0;
  color: var(--p2-cream);
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 0.88;
  text-transform: uppercase;
}

.p2-section-heading h2 {
  font-size: clamp(4rem, 8vw, 7rem);
}

.p2-section-heading > img {
  width: 130px;
  margin-bottom: 6px;
}

.p2-broadcast-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.p2-broadcast-tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}

.p2-broadcast-tabs button:last-child {
  border-right: 0;
}

.p2-broadcast-tabs button span {
  color: var(--p2-gold);
  font-size: 0.62rem;
}

.p2-broadcast-tabs button:hover,
.p2-broadcast-tabs button.active {
  background: var(--p2-maroon);
  color: #fff;
}

.p2-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
}

.p2-video {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.p2-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.p2-video-empty {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
  background: #110d0e;
}

.p2-video-empty[hidden] {
  display: none;
}

.p2-video-empty strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.p2-video-empty span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.82rem;
}

.p2-feature-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  background: var(--p2-maroon);
}

.p2-live-dot {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.p2-live-dot::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--p2-gold);
  box-shadow: 0 0 0 4px rgba(232, 185, 35, 0.16);
}

.p2-feature-card h3 {
  margin: auto 0 8px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 0.9;
  text-transform: uppercase;
}

.p2-feature-card p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}

.p2-feature-card a {
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.p2-sports {
  padding: 100px 0;
  background: var(--p2-cream);
}

.p2-sports .p2-overline,
.p2-news .p2-overline {
  color: var(--p2-maroon);
}

.p2-sports .p2-title-row h2,
.p2-news .p2-title-row h2 {
  color: #171112;
  font-size: clamp(3.5rem, 7vw, 6rem);
}

.p2-title-number {
  color: rgba(23, 17, 18, 0.12);
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.8;
}

.p2-sport-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.p2-sport-card {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  background: #1a1516;
}

.p2-sport-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(9, 7, 8, 0.95), transparent 62%),
    linear-gradient(180deg, rgba(9, 7, 8, 0.35), transparent 35%);
  transition: background 0.3s;
}

.p2-sport-card:hover::after {
  background:
    linear-gradient(0deg, rgba(61, 24, 32, 0.98), rgba(107, 48, 60, 0.15) 72%),
    linear-gradient(180deg, rgba(9, 7, 8, 0.35), transparent 35%);
}

.p2-sport-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.p2-sport-card:hover > img {
  transform: scale(1.04);
}

.p2-sport-index {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 20px;
  color: var(--p2-gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.p2-sport-card > div {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  left: 24px;
}

.p2-sport-card strong,
.p2-sport-card div span {
  display: block;
}

.p2-sport-card strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.p2-sport-card div span {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.p2-voice {
  background: var(--p2-maroon-dark);
}

.p2-voice-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 620px;
}

.p2-voice-photo {
  position: relative;
  min-height: 620px;
  overflow: hidden;
}

.p2-voice-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 70%, var(--p2-maroon-dark));
}

.p2-voice-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}

.p2-voice-photo > span {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 24px;
  padding: 8px 12px;
  background: var(--p2-gold);
  color: #1a1113;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.p2-voice-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 70px;
}

.p2-voice-copy h2 {
  font-size: clamp(5rem, 10vw, 9rem);
}

.p2-voice-copy p {
  max-width: 32ch;
  margin: 26px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  line-height: 1.7;
}

.p2-voice-copy > a {
  color: var(--p2-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.p2-credentials {
  display: flex;
  gap: 10px;
  margin: 0 0 28px;
}

.p2-credentials a {
  width: 90px;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.p2-credentials a:hover {
  border-color: var(--p2-gold);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.p2-credentials img {
  width: 70px;
  height: 52px;
  object-fit: contain;
}

.p2-credentials span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.p2-news {
  padding: 100px 0;
  background: #fff;
}

.p2-news .p2-title-row > a {
  padding-bottom: 8px;
  color: var(--p2-maroon);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.p2-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.p2-news-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--p2-maroon-dark);
}

.p2-news-image > img,
.p2-news-image > div {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.p2-news article:hover .p2-news-image > img {
  transform: scale(1.03);
}

.p2-news-image > span {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 7px 11px;
  background: var(--p2-gold);
  color: #171112;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.p2-news h3 {
  margin: 16px 0 0;
  color: #171112;
  font-size: 1.05rem;
  line-height: 1.35;
}

.p2-moments {
  padding: 100px 0;
  background: #090708;
}

.p2-moments .p2-title-row h2 {
  font-size: clamp(3.5rem, 7vw, 6rem);
}

.p2-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 10px;
}

.p2-photo {
  margin: 0;
  overflow: hidden;
  background: #181314;
}

.p2-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.p2-photo:hover img {
  transform: scale(1.025);
}

.p2-photo-a {
  grid-row: 1 / 3;
}

.p2-photo-a img {
  object-position: center 40%;
}

.p2-photo-b {
  grid-column: 2 / 4;
}

.p2-photo-c img {
  object-position: center 38%;
}

.p2-photo-d img {
  object-position: center 36%;
}

.p2-photo-e {
  display: none;
}

.p2-reveal-ready .p2-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 0.6s ease var(--p2-reveal-delay, 0ms),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) var(--p2-reveal-delay, 0ms);
}

.p2-reveal-ready .p2-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 960px) {
  .p2-hero {
    min-height: 760px;
    margin-top: 0;
  }

  .p2-hero-image {
    top: 0;
    height: 100%;
    object-position: 66% center;
    transform: none;
    will-change: auto;
  }

  .p2-hero-shade {
    background:
      linear-gradient(90deg, rgba(9, 7, 8, 0.94), rgba(9, 7, 8, 0.3)),
      linear-gradient(0deg, rgba(9, 7, 8, 0.98) 0%, transparent 70%);
  }

  .p2-presented-inner {
    grid-template-columns: 1fr minmax(260px, 400px);
  }

  .p2-sponsor-link {
    display: none;
  }

  .p2-feature-grid {
    grid-template-columns: 1fr;
  }

  .p2-feature-card {
    min-height: 250px;
  }

  .p2-sport-grid {
    grid-template-columns: 1fr;
  }

  .p2-sport-card {
    min-height: 320px;
  }

  .p2-voice-grid {
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
  }

  .p2-voice-photo {
    min-height: 520px;
  }

  .p2-voice-copy {
    padding: 44px;
  }

  .p2-news-grid {
    grid-template-columns: 1fr;
  }

  .p2-sponsor-slide {
    grid-template-columns: 1fr;
  }

  .p2-sponsor-slide-link {
    grid-template-columns: 1fr;
  }

  .p2-sponsor-carousel-stage {
    min-height: 400px;
  }

  .p2-sponsor-slide-logo {
    min-height: 240px;
    padding: 16px 24px;
  }

  .p2-sponsor-slide-logo img {
    min-height: 0;
    max-height: 240px;
  }

  .p2-sponsor-directory-list {
    grid-template-columns: 1fr;
  }

  .p2-sponsor-directory-list li:nth-child(odd) {
    border-right: 0;
  }

  .p2-sponsor-directory-list li:not(:last-child) {
    border-bottom: 1px solid rgba(107, 48, 60, 0.1);
  }

  .p2-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 320px 240px;
  }

  .p2-photo-a {
    grid-row: auto;
  }

  .p2-photo-b {
    grid-column: auto;
  }
}

@media (max-width: 620px) {
  .p2-hero {
    min-height: 700px;
  }

  .p2-hero-inner {
    padding-top: 70px;
    padding-bottom: 110px;
  }

  .p2-hero h1 {
    font-size: clamp(5rem, 27vw, 7rem);
  }

  .p2-hero-inner > p br {
    display: none;
  }

  .p2-hero-scorebar .container {
    min-height: 64px;
  }

  .p2-hero-scorebar strong {
    display: none;
  }

  .p2-hero-scorebar .container {
    justify-content: center;
    gap: 20px;
  }

  .p2-hero-scorebar .p2-score-sport {
    font-size: 0.62rem;
  }

  .p2-hero-scorebar .p2-score-live {
    display: none;
  }

  .p2-presented {
    padding: 20px 0;
  }

  .p2-presented-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .p2-presented-label {
    text-align: center;
  }

  .p2-sponsor-logo {
    justify-self: center;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .p2-presented + .p2-feature {
    padding-top: 70px;
    background:
      linear-gradient(180deg, var(--p2-maroon-dark) 0%, #120c0e 90px, #090708 160px),
      #090708;
  }

  .p2-sponsors {
    padding: 72px 0 84px;
  }

  .p2-feature + .p2-sponsors {
    padding-top: 72px;
    background:
      linear-gradient(180deg, #090708 0%, #120c0e 60px, var(--p2-cream) 140px);
  }

  .p2-sponsor-carousel-stage {
    min-height: 440px;
  }

  .p2-sponsor-slide {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .p2-sponsor-slide-link {
    grid-template-columns: 1fr;
  }

  .p2-sponsor-slide-logo {
    min-height: 220px;
    padding: 16px 20px;
  }

  .p2-sponsor-slide-logo img {
    min-height: 0;
    max-height: 220px;
  }

  .p2-sponsor-slide-copy {
    padding: 24px 20px;
    text-align: center;
  }

  .p2-sponsor-slide-copy h3 {
    font-size: clamp(1.35rem, 6.5vw, 2rem);
    line-height: 1;
  }

  .p2-sponsor-logo {
    width: 100%;
  }

  .p2-feature,
  .p2-sports,
  .p2-news,
  .p2-moments {
    padding: 70px 0;
  }

  .p2-section-heading {
    align-items: flex-start;
  }

  .p2-section-heading > img {
    width: 92px;
  }

  .p2-section-heading h2 {
    font-size: 3.7rem;
  }

  .p2-feature-card {
    padding: 28px;
  }

  .p2-broadcast-tabs button {
    min-height: 50px;
    gap: 6px;
    font-size: 0.64rem;
    letter-spacing: 0.06em;
  }

  .p2-broadcast-tabs button span {
    display: none;
  }

  .p2-title-number {
    display: none;
  }

  .p2-sports .p2-title-row h2,
  .p2-news .p2-title-row h2,
  .p2-moments .p2-title-row h2 {
    font-size: 3.4rem;
  }

  .p2-voice-grid {
    grid-template-columns: 1fr;
  }

  .p2-voice-photo {
    min-height: 520px;
  }

  .p2-voice-photo::after {
    background: linear-gradient(0deg, var(--p2-maroon-dark), transparent 34%);
  }

  .p2-voice-copy {
    padding: 50px 24px 70px;
  }

  .p2-voice-copy h2 {
    font-size: 6rem;
  }

  .p2-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 330px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .p2-hero-image,
  .p2-hero-go,
  .p2-hero-bulldogs,
  .p2-hero h1::after,
  .p2-reveal-ready .p2-reveal,
  .p2-reveal-ready .p2-reveal.is-visible {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }

  .p2-sponsor-slide {
    transition: opacity 0.5s ease;
  }
}
