/* BoxingInsider Wireframe Styles */
/* Dark Mode Default - Red/Black/White Palette */

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #1a1a1a;
  --bg-tertiary: #242424;
  --text-primary: #f0f0f0;
  --text-secondary: #a0a0a0;
  --accent: #cc0000;
  --accent-hover: #e60000;
  --border: #333;
  --white: #ffffff;
  --ticker-bg: #111;
  --breaking-bg: #cc0000;
  --sidebar-width: 350px;
  --content-max: 1280px;
  --header-height: auto;
  --radius: 6px;
}

/* Light Mode Overrides */
html.light-mode {
  --bg-primary: #f5f5f5;
  --bg-secondary: #ffffff;
  --bg-tertiary: #e8e8e8;
  --text-primary: #1a1a1a;
  --text-secondary: #666666;
  --border: #d0d0d0;
  --white: #ffffff;
  --ticker-bg: #e0e0e0;
}

html.light-mode .header { background: #ffffff; box-shadow: 0 1px 4px rgba(0,0,0,0.1); }
html.light-mode .hero__main h2,
html.light-mode .article-card__body h3 { color: var(--text-primary); }
html.light-mode .article-card__body h3:hover { color: var(--accent); }
html.light-mode .hero__main-bg { background: linear-gradient(transparent 30%, rgba(255,255,255,0.9)); }
html.light-mode .footer { background: #ffffff; }
html.light-mode .fight-ticker { background: #1a1a1a; }
html.light-mode .fight-ticker__label { background: #333; color: #ccc; }
html.light-mode .fight-ticker__fighters { color: #ffffff; }
html.light-mode .fight-ticker__details { color: #aaa; }
html.light-mode .footer__social a { background: #e8e8e8; border-color: #d0d0d0; color: #666; }

/* Search overlay in light mode */
html.light-mode .search-overlay {background: #ffffff;box-shadow: 0 8px 10px rgba(0,0,0,0.12);/* border-top: solid 1px #eee; */}
html.light-mode .search-overlay__input { background: #f0f0f0; border-color: #d0d0d0; color: #1a1a1a; }
html.light-mode .search-overlay__input::placeholder { color: #999; }

/* Tickets widget in light mode */
html.light-mode .widget--tickets { background: linear-gradient(135deg, #cc0000, #8b0000); border-color: #cc0000; }
html.light-mode .widget--tickets h3 { color: #ffffff; }
html.light-mode .widget--tickets__date { color: #ffffff; }
html.light-mode .widget--tickets__venue { color: rgba(255,255,255,0.75); }
html.light-mode .widget--tickets .widget__header { color: #ffffff; }
html.light-mode .widget--tickets .widget__header::before { background: #ffffff; }

/* Boxing trivia card */
.trivia-card {
  background: linear-gradient(135deg, #1a0000, var(--bg-tertiary));
  padding: 30px;
  border-radius: var(--radius);
  margin-bottom: 12px;
}

html.light-mode .trivia-card {
  background: linear-gradient(135deg, #fde8e8, #f0f0f0);
}
html.light-mode .trivia-card h4 { color: #1a1a1a; }

/* Newsletter CTA - always dark/branded regardless of mode */
html.light-mode .newsletter-cta { color: #ffffff; }
html.light-mode .newsletter-cta h2 { color: #ffffff; }
html.light-mode .newsletter-cta p { color: rgba(255,255,255,0.85); }

/* Hero slider text always white on dark overlay */
html.light-mode .hero__slide .hero__main-content h2 { color: #ffffff; }
html.light-mode .hero__slide .hero__main-content p { color: rgba(255,255,255,0.85); }
html.light-mode .hero__slide .hero__main-bg { background: linear-gradient(transparent 30%, rgba(0,0,0,0.85)); }
html.light-mode .btn--ghost { background: transparent; }

/* Smooth transition */
html { transition: background-color 0.3s ease, color 0.3s ease; }
body, .header, .widget, .footer, .fight-ticker, .article-card__body h3,
.hero__main, .hero__secondary, .video-card, .quiz-card, .schedule__event,
.trending-item, .leaderboard, .toc, .author-box, .contact-info__item {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }

img { max-width: 100%; height: auto; }

/* ========== WIREFRAME PLACEHOLDER ========== */
.placeholder {
  background: var(--bg-tertiary);
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius);
}

.placeholder--img {
  width: 100%;
  aspect-ratio: 3/2;
}

.placeholder--thumb {
  width: 150px;
  min-height: 100px;
  flex-shrink: 0;
}

.placeholder--avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.placeholder--ad {
  border-color: var(--accent);
  color: var(--accent);
  opacity: 0.5;
}

/* ========== HEADER ========== */
.header {
  background: var(--bg-secondary);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__inner {
  /* max-width: var(--content-max); */
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__nav-wrap {
  flex: 1;
  min-width: 0;
}

.header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header__logo img {
  height: 55px;
  width: auto;
  display: block;
}

.header__nav {
  display: flex;
  gap: 0;
  list-style: none;
  justify-content: center;
}

.header__nav li a {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 16px;
  transition: color 0.2s, background 0.2s;
}

.header__nav li a:hover,
.header__nav li a.active { color: var(--accent); }

/* Dropdown (level 2) */
.header__nav li {
  position: relative;
}

.header__nav .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 10px;
  min-width: 200px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  z-index: 100;
  list-style: none;
}

.header__nav li:hover > .sub-menu {
  display: block;
}

.header__nav .sub-menu li a {
  padding: 12px 16px;
  font-size: 13px;
  /* text-transform: none; */
  letter-spacing: 0;
  font-weight: 500;
  white-space: nowrap;
}

.header__nav .sub-menu li a:hover {
  background: var(--bg-tertiary);
  color: var(--accent);
}

/* Mobile dropdown */
.mobile-nav__links .sub-menu {
  list-style: none;
  padding-left: 16px;
}

.mobile-nav__links .sub-menu li a {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.8;
}

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

.header__search,
.header__toggle {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 8px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 13px;
}

.header__toggle { font-size: 16px; }

/* Search Button */
.header__search-icon { margin-right: 4px; }

/* Hamburger Menu Button */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  background: none;
  border: 1px solid var(--border);
  padding: 8px 8px;
  border-radius: var(--radius);
  cursor: pointer;
  width: 38px;
  height: 34px;
}

.header__hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Search Overlay */
.search-overlay {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-bottom: 2px solid var(--accent);
  padding: 16px 0;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.search-overlay__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-overlay__input {
  flex: 1;
  padding: 12px 16px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 16px;
  outline: none;
}

.search-overlay__input:focus { border-color: var(--accent); }

.search-overlay__close {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 20px;
  cursor: pointer;
  padding: 0 8px;
  line-height: 1;
}

.search-overlay__close:hover { color: var(--accent); }

/* Mobile Navigation Drawer */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 200;
}

.mobile-nav-overlay.active { display: block; }

.mobile-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: var(--bg-secondary);
  border-left: 2px solid var(--accent);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
  overflow-y: auto;
}

.mobile-nav.active { right: 0; }

.mobile-nav__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.mobile-nav__close {
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

.mobile-nav__links {
  list-style: none;
  padding: 0;
}

.mobile-nav__links li {
  border-bottom: 1px solid var(--border);
}

.mobile-nav__links a {
  display: block;
  padding: 14px 20px;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s, background 0.2s;
}

.mobile-nav__links a:hover,
.mobile-nav__links a.active {
  color: var(--accent);
  background: var(--bg-tertiary);
}

.mobile-nav__footer {
  margin-top: auto;
  padding: 20px;
  border-top: 1px solid var(--border);
}

.mobile-nav__theme-toggle {
  width: 100%;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

/* ========== FIGHT TICKER ========== */
.fight-ticker {
  background: var(--ticker-bg);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
  overflow: hidden;
  display: none;
}

.fight-ticker__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 12px;
}

.fight-ticker__label {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
}

.fight-ticker__scroll {
  overflow: hidden;
  white-space: nowrap;
  font-size: 13px;
  flex: 1;
}

.fight-ticker__content {
  display: inline-flex;
  gap: 32px;
  align-items: center;
  animation: marquee-fight 30s linear infinite;
}
.fight-ticker:hover .fight-ticker__content { animation-play-state: paused; }

.fight-ticker__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fight-ticker__fighters { font-weight: 700; color: var(--white); }
.fight-ticker__details { color: var(--text-secondary); font-size: 12px; }
.fight-ticker__sep { color: var(--accent); font-weight: 700; font-size: 16px; }

@keyframes marquee-fight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ========== BREAKING NEWS TICKER ========== */
.breaking-ticker {
  background: var(--breaking-bg);
  padding: 10px 0;
  overflow: hidden;
}

.breaking-ticker__inner {
  /* max-width: var(--content-max); */
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.breaking-ticker__label {
  background: rgba(0,0,0,0.3);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  flex-shrink: 0;
  z-index: 1;
}

.breaking-ticker__scroll {
  overflow: hidden;
  white-space: nowrap;
  font-size: 13px;
  color: var(--white);
  flex: 1;
}

.breaking-ticker__content {
  display: inline-flex;
  gap: 32px;
  align-items: center;
  animation: marquee-breaking 25s linear infinite;
}
.breaking-ticker:hover .breaking-ticker__content { animation-play-state: paused; }

.breaking-ticker__item {
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s;
}
.breaking-ticker__item:hover { color: var(--white); opacity: 0.8; }
.breaking-ticker__item strong { font-weight: 700; }
.breaking-ticker__sep { opacity: 0.6; }

@keyframes marquee-breaking {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ========== CONTAINER / LAYOUT ========== */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 20px;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--sidebar-width);
  gap: 30px;
  padding: 30px 0;
  padding-bottom: 0;
  align-items: start;
}

.layout > main,
.layout > :first-child {
  min-width: 0;
  overflow: hidden;
}

.layout--full { grid-template-columns: 1fr; }

/* ========== HERO SECTION ========== */
.hero {
  padding: 30px 0 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--sidebar-width);
  gap: 16px;
}

.hero__main {
  background: var(--bg-secondary);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 400px;
  border: 1px solid var(--border);
}

.hero__main-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.85));
  z-index: 1;
}

.hero__main-content {
  position: relative;
  z-index: 2;
}

.hero__main .tag { margin-bottom: 10px; }
.hero__main h2 { font-size: 28px; font-weight: 800; line-height: 1.2; margin-bottom: 8px; color: var(--white); }
.hero__main h2 a { color: inherit; text-decoration: none; }
.hero__main h2 a:hover { color: var(--accent); }
.hero__main p { color: rgba(255,255,255,0.75); font-size: 15px; }
.hero__main .meta { color: rgba(255,255,255,0.65); font-size: 12px; margin-top: 8px; }

.hero__sidebar-grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.hero__secondary {
  background: var(--bg-secondary);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: flex-end;
  border: 1px solid var(--border);
  position: relative;
}

.hero__secondary[style*="background-image"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}

.hero__secondary[style*="background-image"] > * {
  position: relative;
  z-index: 2;
}

.hero__secondary[style*="background-image"] h3 a,
.hero__secondary[style*="background-image"] .meta {
  color: #fff;
}

.hero__secondary h3 { font-size: 16px; font-weight: 700; line-height: 1.3; }
.hero__secondary h3 a { color: inherit; text-decoration: none; }
.hero__secondary h3 a:hover { color: var(--accent); }
.hero__secondary .meta { color: var(--text-secondary); font-size: 12px; margin-top: 4px; }

/* Hero Swiper Slider */
.hero-swiper {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
}

.hero__slide {
  position: relative;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background-size: cover;
  background-position: center;
}

/* Hero Slider Navigation Arrows */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, opacity 0.3s;
  opacity: 0;
}

.hero__main:hover .hero__arrow { opacity: 1; }
.hero__arrow:hover { background: var(--accent); }
.hero__arrow--left { left: 16px; }
.hero__arrow--right { right: 16px; }

/* Hero Swiper Pagination Dots */
.hero-swiper-pagination {
  position: absolute;
  bottom: 14px !important;
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 6px;
  width: auto !important;
}

.hero-swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.35);
  opacity: 1;
  border-radius: 50%;
  transition: background 0.2s;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--accent);
}

/* ========== TAGS ========== */
.tag {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 2px 10px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tag:hover{
  color: var(--white);  
}

.tag--outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.tag--gray {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
}

/* ========== SECTION HEADINGS ========== */
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}

.section-heading h2 {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-heading a {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

/* ========== ARTICLE CARDS ========== */
.article-card {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.article-card:first-child { padding-top: 0; }

.article-card__thumb {
  width: 160px;
  background: var(--bg-tertiary);
  border-radius: var(--radius);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 11px;
  overflow: hidden;
}
.article-card__thumb picture{
    width: 100%;
    display: block;
}

.article-card__thumb img{
  width: 100%;
  display: block;
}

.article-card__body { flex: 1; }

.article-card__body .tag { margin-bottom: 6px; }

.article-card__body h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
  color: var(--white);
}

.article-card__body h3 a { color: inherit; text-decoration: none; }
.article-card__body h3:hover { color: var(--accent); cursor: pointer; }

.article-card__excerpt {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-secondary);
}
.article-card__meta span + span::before {
  content: '·';
  margin-right: 8px;
}

/* Vertical card */
.article-card--vertical {
  flex-direction: column;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-secondary);
}

.article-card--vertical .article-card__thumb {
  width: 100%;
  height: 160px;
  border-radius: 0;
}

.article-card--vertical .article-card__body { padding: 16px; }

/* ========== CAROUSEL (Swiper) ========== */
.carousel {
  padding: 30px 0;
}

.picks-swiper {
  overflow: hidden;
}

.picks-swiper .swiper-slide {
  height: auto;
}

.picks-swiper .article-card--vertical {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Carousel Arrow Navigation */
.carousel__nav {
  display: flex;
  gap: 6px;
}

.carousel__arrow {
  width: 32px;
  height: 32px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-primary);
  font-size: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: background 0.2s, border-color 0.2s;
}

.carousel__arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.carousel__arrow.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}

.carousel__arrow.swiper-button-disabled:hover {
  background: var(--bg-tertiary);
  border-color: var(--border);
  color: var(--text-primary);
}

/* ========== TRENDING / POPULAR ========== */
.trending-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.trending-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--bg-secondary);
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.trending-item__rank {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  width: 36px;
}

.trending-item h4 { font-size: 14px; font-weight: 700; line-height: 1.3; }
.trending-item h4 a { color: var(--text-primary); transition: color 0.2s; }
.trending-item h4 a:hover { color: var(--accent); }
.trending-item .meta { font-size: 12px; color: var(--text-secondary); margin-top: 4px; }

/* ========== SIDEBAR ========== */
.sidebar { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 90px; }

.widget {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.widget__header {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.widget__header::before {
  content: '';
  width: 4px;
  height: 18px;
  background: var(--accent);
  border-radius: 2px;
}

.widget__body { padding: 16px; }

.widget--tickets {
  border-color: var(--accent);
  background: linear-gradient(135deg, #1a0000, var(--bg-secondary));
}

.widget--tickets .widget__body {
  text-align: center;
}

.widget--tickets h3 {font-size: 16px;margin-bottom: 0px;}
.widget--tickets__date {font-size: 14px;color: var(--white);font-weight: 700;margin-bottom: 10px;}
.widget--tickets__venue { font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin-bottom: 14px; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}

.btn--primary { background: var(--accent); color: var(--white); }
.btn--primary:hover { background: var(--accent-hover); color: var(--white); }
.btn--secondary { background: var(--bg-tertiary); color: var(--text-primary); border: 1px solid var(--border); }
.btn--ghost {background: #0000005e;color: var(--accent);border: 1px solid var(--accent);}
.btn--full { width: 100%; text-align: center; }
.btn--sm {padding: 10px 14px;font-size: 12px;}

/* ========== WIDGET LIST ITEMS ========== */
.widget-list { list-style: none; }

.widget-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
}

.widget-list li:last-child { border-bottom: none; }
.widget-list li .meta { font-size: 11px; color: var(--text-secondary); font-weight: 400; margin-top: 2px; }
.widget-list li a { color: var(--text-primary); }
.widget-list li a:hover { color: var(--accent); }

/* ========== NEWSLETTER CTA ========== */
.newsletter-cta {
  background: linear-gradient(135deg, var(--accent), #8b0000);
  padding: 50px 20px;
  text-align: center;
  margin: 40px 0;
  margin-top: 10px;
  border-radius: var(--radius);
}

.newsletter-cta h2 { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.newsletter-cta p { color: rgba(255,255,255,0.8); margin-bottom: 20px; font-size: 15px; }

.newsletter-cta__form {
  display: flex;
  gap: 10px;
  max-width: 450px;
  margin: 0 auto;
}

.newsletter-cta__form input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: var(--radius);
  font-size: 14px;
  background: rgba(0,0,0,0.4);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}

.newsletter-cta__form input::placeholder { color: rgba(255,255,255,0.5); }

.newsletter-cta__form button {
  padding: 12px 24px;
  background: var(--white);
  color: var(--accent);
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  text-transform: uppercase;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-secondary);
  border-top: 2px solid var(--accent);
  padding: 50px 0 0;
  margin-top: 40px;
}

.footer__grid {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
}

.footer__col h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  color: var(--white);
}

.footer__col p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.footer__col ul { list-style: none; }
.footer__col ul li { margin-bottom: 8px; }
.footer__col ul a { color: var(--text-secondary); font-size: 14px; }
.footer__col ul a:hover { color: var(--accent); }

.footer__logo {
  display: inline-block;
  margin-bottom: 12px;
}

.footer__logo img {
  height: 60px;
  width: auto;
  display: block;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer__social a {
  width: 36px;
  height: 36px;
  background: var(--bg-tertiary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 12px;
  border: 1px solid var(--border);
}

.footer__bottom {
  max-width: var(--content-max);
  margin: 40px auto 0;
  padding: 20px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-secondary);
}

.footer__bottom a { color: var(--text-secondary); margin-left: 20px; }

/* ========== VIDEO CARDS ========== */
.video-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.video-card__thumb {
  aspect-ratio: 16/9;
  background: var(--bg-tertiary);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 11px;
  border-bottom: 1px dashed var(--border);
}

.video-card__play {
  position: absolute;
  width: 50px;
  height: 50px;
  background: rgba(204,0,0,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--white);
}

.video-card__duration {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.8);
  color: var(--white);
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
}

.video-card__body { padding: 14px; }
.video-card__body h4 { font-size: 14px; font-weight: 700; line-height: 1.3; margin-bottom: 6px; }
.video-card__body .meta { font-size: 12px; color: var(--text-secondary); }

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

/* Video Section Layout (Homepage) */
.video-section__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.video-section__secondary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ========== QUIZ CARDS ========== */
.quiz-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.quiz-card__thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1a0000, var(--bg-tertiary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 11px;
  border-bottom: 1px dashed var(--border);
}

.quiz-card__body { padding: 16px; }
.quiz-card__body .tag { margin-bottom: 8px; }
.quiz-card__body h4 { font-size: 15px; font-weight: 700; line-height: 1.3; margin-bottom: 6px; }
.quiz-card__body p { font-size: 13px; color: var(--text-secondary); margin-bottom: 10px; }
.quiz-card__body .meta { font-size: 12px; color: var(--text-secondary); }

/* ========== TEXT-BASED SCHEDULE ========== */
.layout > main.schedule-content { line-height: 1.6; overflow: visible; }

.schedule__month {
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 24px;
}

.schedule__month:not(:first-child) { margin-top: 48px; }

.schedule__date { margin-bottom: 24px; }

.schedule__date-heading {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: sticky;
  top: 77px;
  background: var(--bg-primary);
  padding: 10px 0;
  z-index: 10;
}

.schedule__date-heading i {
  color: var(--text-secondary);
  font-size: 13px;
}

/* Event card */
.schedule__event {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 12px;
  transition: border-color 0.2s;
}

.schedule__event:hover {
  border-color: var(--accent);
}

/* Event meta: network, venue, time */
.schedule__event-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.schedule__network {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 4px;
}

.schedule__network--accent {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.schedule__venue,
.schedule__time {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 5px;
}

.schedule__venue i,
.schedule__time i {
  font-size: 11px;
  color: var(--text-secondary);
  opacity: 0.7;
}

/* Bouts */
.schedule__bouts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.schedule__bouts li {
  padding: 8px 0;
  border-top: 1px solid var(--border);
}

.schedule__bouts li:first-child {
  border-top: none;
  padding-top: 0;
}

.schedule__bouts li:last-child {
  padding-bottom: 0;
}

.schedule__fighters {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.schedule__bout-info {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.schedule__bout-info em {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

.schedule__note {
  font-size: 13px;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

/* ========== PODCAST DIRECTORY ========== */
.layout > main.podcast-directory { overflow: visible; }

.directory__section-heading {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
  padding: 8px 0;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 24px;
  position: sticky;
  top: 77px;
  background: var(--bg-primary);
  z-index: 10;
}

.directory__section-heading:not(:first-child) { margin-top: 40px; }

.directory__entry {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.directory__entry:last-of-type { border-bottom: none; }

.directory__name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.directory__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 8px;
}

.directory__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.directory__links a {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  transition: opacity 0.15s, transform 0.15s;
}

.directory__links a:hover { opacity: 0.85; transform: translateY(-1px); }

.directory__links a i { font-size: 13px; }

/* Brand colors */
.directory__link--apple { background: #A855F7; }
.directory__link--spotify { background: #1DB954; }
.directory__link--youtube { background: #FF0000; }

.directory__cta {
  margin-top: 40px;
  padding: 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
}

.directory__cta h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.directory__cta p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

/* ========== FORMS ========== */
.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 14px;
}

.form-group textarea { min-height: 150px; resize: vertical; }

/* ========== PAGE HEADER ========== */
.page-header {
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
  /* margin-bottom: 30px; */
}

.page-header h1 {
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.page-header p { color: var(--text-secondary); font-size: 15px; margin-top: 6px; }

.page-header .meta { color: var(--text-secondary); font-size: 13px; margin-top: 8px; }

/* ========== FILTERS ========== */
.filters {
  display: flex;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.filters .btn { font-size: 12px; padding: 6px 14px; }
.filters .btn.active { background: var(--accent); color: var(--white); border-color: var(--accent); }

/* ========== POST CONTENT ========== */
.post-content {
  font-size: 17px;
  line-height: 1.75;
}

.post-content .video-card {
  margin-bottom: 24px;
}

.post-content h2 {
  font-size: 24px;
  font-weight: 800;
  margin: 32px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.post-content p { margin-bottom: 20px; color: var(--text-primary); }

.post-content blockquote {
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  margin: 24px 0;
  background: var(--bg-secondary);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-secondary);
}
.post-content hr { margin: 24px 0; border: none; border-top: 1px solid var(--border); }
.post-content iframe,
.post-content .wp-block-embed__wrapper iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: var(--radius);
}
.post-content .wp-block-embed { margin: 24px 0; }
.post-content .wp-block-embed__wrapper { position: relative; }
.post-content figure { margin: 24px 0; max-width: none; width: 100%; }
.post-content figure img { width: 100%; height: auto; display: block; }
.post-content figcaption {
  width: 100%;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 8px;
  font-style: italic;
  text-align: center;
}

/* ========== TOC ========== */
.toc {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 30px;
}

.toc h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.toc ol {
  padding-left: 20px;
}

.toc li {
  padding: 4px 0;
  font-size: 14px;
  color: var(--accent);
}

/* ========== POST NAV (Prev / Next) ========== */
.post-nav {
  display: flex;
  gap: 16px;
  margin: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.post-nav__link {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 12px;
  border-radius: var(--radius);
  background: var(--bg-secondary);
  text-decoration: none;
  transition: background 0.2s;
}

.post-nav__link:hover { background: var(--bg-tertiary); }

.post-nav__link--next { text-align: right; }

.post-nav__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}

.post-nav__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}

.post-nav__link:hover .post-nav__title { color: var(--accent); }

/* ========== AUTHOR BOX ========== */
.author-box {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 30px 0;
}

.author-box__body h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.author-box__body p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }

/* ========== SHARE BAR ========== */
.share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

.share-bar__label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.share-btn {
  width: 36px;
  height: 36px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.share-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.share-btn--copy { position: relative; }
.share-btn__tooltip {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.share-btn--copy.copied .share-btn__tooltip {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
.share-btn--copy.copied {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* ========== READING PROGRESS BAR ========== */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent);
  z-index: 10000;
  transition: width 0.1s linear;
}

/* ========== RELATED POSTS ========== */
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* ========== LOAD MORE ========== */
.load-more {
  text-align: center;
  padding: 30px 0;
}

/* ========== INSTAGRAM GRID ========== */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.insta-grid__item {
  aspect-ratio: 1;
  background: var(--bg-tertiary);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--text-secondary);
}

/* ========== CONTACT INFO ========== */
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.contact-info__item {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.contact-info__item h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.contact-info__item p { font-size: 13px; color: var(--text-secondary); }

/* ========== LEADERBOARD ========== */
.leaderboard {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.leaderboard__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.leaderboard__row:last-child { border-bottom: none; }

.leaderboard__rank { font-weight: 900; color: var(--accent); width: 30px; font-size: 16px; }
.leaderboard__name { flex: 1; font-weight: 600; font-size: 14px; }
.leaderboard__score { font-weight: 700; color: var(--accent); font-size: 14px; }

/* ========== NAV INDEX ========== */
.wireframe-index {
  max-width: 600px;
  margin: 80px auto;
  padding: 0 20px;
}

.wireframe-index h1 { font-size: 28px; margin-bottom: 30px; }

.wireframe-index ul { list-style: none; }

.wireframe-index li {
  margin-bottom: 12px;
}

.wireframe-index a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-weight: 600;
  font-size: 15px;
  transition: border-color 0.2s;
}

.wireframe-index a:hover { border-color: var(--accent); color: var(--accent); }

.wireframe-index a span {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 400;
}

/* ========== PAGINATION ========== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 30px 0;
}

.pagination__item {
  padding: 8px 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--text-secondary);
}

.pagination__item:hover { border-color: var(--accent); color: var(--accent); }

.pagination__item--active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  font-weight: 700;
}

.pagination__ellipsis { color: var(--text-secondary); }

/* ========== POST HEADER ========== */
.post-header {margin-bottom: 20px;}

.post-header__title {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.15;
  margin: 12px 0;
}

.post-header__author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.post-header__author-name { font-weight: 600; font-size: 14px; }
.post-header__author-date { font-size: 13px; color: var(--text-secondary); }

/* ========== POST CONTENT EXTRAS ========== */
.post-featured-img { margin-bottom: 8px; }
.post-featured-img img { width: 100%; height: auto; display: block; border-radius: var(--radius); }
.post-photo-credit { font-size: 12px; color: var(--text-secondary); margin-bottom: 30px; }
.post-ad { width: 100%; margin: 30px 0; }
.post-ad--leaderboard { height: 90px; }

/* ========== TALE OF THE TAPE ========== */
.tale-of-tape {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin: 20px 0;
}

.tale-of-tape__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  text-align: center;
}

.tale-of-tape__name { font-weight: 900; font-size: 18px; color: var(--accent); }
.tale-of-tape__record { font-size: 13px; color: var(--text-secondary); }
.tale-of-tape__vs { font-weight: 900; color: var(--accent); font-size: 20px; align-self: center; }

/* ========== POST TAGS ========== */
.post-tags {
  margin: 30px 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ========== SHARE BAR VARIANT ========== */
.share-bar--bottom {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

/* ========== AUTHOR BOX EXTRAS ========== */
.author-box__avatar { flex-shrink: 0; }
.author-box__actions { margin-top: 8px; }
.author-box__more { font-size: 12px; margin-left: 12px; }

/* ========== BUTTON VARIANT ========== */
.btn--xs { padding: 4px 10px; font-size: 11px; }

/* ========== SECTION PADDING ========== */
.section { padding: 30px 0; }

/* ========== TWEET CARDS ========== */
.tweet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tweet-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.tweet-card__meta { font-size: 12px; color: var(--text-secondary); margin-bottom: 8px; }
.tweet-card__text { font-size: 14px; line-height: 1.5; }

/* ========== QUIZ CTA ========== */
.quiz-cta {
  background: linear-gradient(135deg, #1a0000, var(--bg-secondary));
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  padding: 30px;
  margin: 20px 0;
  text-align: center;
}

.quiz-cta__icon { font-size: 28px; margin-bottom: 8px; color: var(--white); }
.quiz-cta__title { font-size: 20px; margin-bottom: 6px; color: var(--white); }
.quiz-cta__desc { font-size: 14px; color: rgba(255,255,255,0.75); margin-bottom: 16px; }

html.light-mode .quiz-cta { background: linear-gradient(135deg, #cc0000, #8b0000); border-color: #cc0000; }
html.light-mode .quiz-cta__icon { color: #ffffff; }
html.light-mode .quiz-cta__title { color: #ffffff; }
html.light-mode .quiz-cta__desc { color: rgba(255,255,255,0.75); }

/* ========== COMMENTS ========== */
.comment-form {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}

.comment-form__label { font-size: 14px; font-weight: 600; margin-bottom: 12px; }

.comment-form__logins {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.comment-form__textarea {
  width: 100%;
  padding: 12px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 14px;
  min-height: 80px;
  resize: vertical;
}

.comment {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.comment__layout {
  display: flex;
  gap: 12px;
}

.comment__avatar {
  width: 40px;
  height: 40px;
  font-size: 10px;
}

.comment__avatar--sm {
  width: 32px;
  height: 32px;
  font-size: 9px;
}

.comment__body { flex: 1; }

.comment__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.comment__author { font-weight: 700; font-size: 14px; }
.comment__author--sm { font-weight: 700; font-size: 13px; }

.comment__badge {
  font-size: 11px;
  color: var(--text-secondary);
  background: var(--bg-tertiary);
  padding: 1px 6px;
  border-radius: 3px;
}

.comment__time { font-size: 12px; color: var(--text-secondary); }
.comment__text { font-size: 14px; line-height: 1.5; color: var(--text-secondary); }
.comment__text--sm { font-size: 13px; }

.comment__actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-secondary);
}

.comment__actions--sm { margin-top: 6px; }
.comment__action { cursor: pointer; }
.comment__action:hover { color: var(--accent); }

.comment__thread {
  margin-top: 16px;
  padding-left: 20px;
  border-left: 2px solid var(--border);
}

.comment__thread .comment__header { margin-bottom: 4px; }

/* ========== UTILITIES ========== */
.text-center { text-align: center; }
.hidden { display: none; }
.nowrap { white-space: nowrap; }
.mt-xs { margin-top: 8px; }
.mt-sm { margin-top: 12px; }
.mt-md { margin-top: 16px; }
.mt-lg { margin-top: 20px; }
.mb-sm { margin-bottom: 12px; }

/* ========== ICON COLORS ========== */
.icon--sun { color: #f5a623; }
.icon--accent { color: var(--accent); }
.icon--muted { color: var(--text-secondary); }

/* ========== WIDGET VARIANTS ========== */
.widget__body--centered { text-align: center; padding: 24px 20px; }

.widget__icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
}

.widget__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.widget__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 12px;
}

.widget__divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 16px 0;
}

.widget__notify-text {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

/* Widget Badge */
.widget__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
}

.widget__badge--muted {
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

/* ========== QUICK LINKS ========== */
.widget__body--flush { padding: 0; }

.quick-link {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.15s;
}

.quick-link:last-child { border-bottom: none; }

.quick-link:hover { background: var(--bg-tertiary); }

.quick-link--disabled {
  cursor: default;
  opacity: 0.55;
}

.quick-link--disabled:hover { background: transparent; }

.quick-link__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(204, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.quick-link__body { flex: 1; min-width: 0; }

.quick-link__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
}

.quick-link__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-top: 3px;
}

.quick-link__badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 2px 8px;
  border-radius: 10px;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  margin-top: 6px;
}

.quick-link__cta {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  margin-top: 8px;
  transition: gap 0.15s;
}

.quick-link__cta i {
  font-size: 10px;
  margin-left: 4px;
  transition: margin-left 0.15s;
}

.quick-link__cta:hover i { margin-left: 8px; }

.quick-link__desc--disabled {
  opacity: 0.5;
  font-style: italic;
}

/* ========== BOXING TIMER WIDGET ========== */
.boxing-timer__display {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 12px auto 20px;
}

.boxing-timer__ring {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.boxing-timer__ring-bg {
  fill: none;
  stroke: var(--border);
  stroke-width: 6;
}

.boxing-timer__ring-progress {
  fill: none;
  stroke: var(--accent);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 439.82;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.3s linear, stroke 0.3s;
}

.boxing-timer__ring-progress--rest {
  stroke: #f5a623;
}

.boxing-timer__text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.boxing-timer__round {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.boxing-timer__time {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.boxing-timer__status {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  margin-top: 4px;
}

.boxing-timer__status--active { color: var(--accent); }
.boxing-timer__status--rest { color: #f5a623; }

.boxing-timer__controls {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.boxing-timer__controls .btn { flex: 1; }

.boxing-timer__settings {
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
}

.boxing-timer__settings select {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  padding: 4px 8px;
  font-size: 13px;
  margin-left: 4px;
}

.boxing-timer__fullpage {
  display: block;
  text-align: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.boxing-timer__fullpage i { margin-right: 4px; }
.boxing-timer__fullpage:hover { color: var(--accent); }

/* ========== INPUT COMPONENTS ========== */
.input-row {
  display: flex;
  gap: 6px;
}

.input--widget {
  width: 100%;
  padding: 10px 12px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 14px;
  margin-bottom: 8px;
}

.input--sm {
  flex: 1;
  padding: 8px 12px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-primary);
  font-size: 13px;
}

/* ========== MEDIA ITEMS (Podcast, Promo list items) ========== */
.media-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.media-item + .media-item { margin-top: 12px; }

.media-item__icon {
  width: 48px;
  height: 48px;
  background: var(--bg-tertiary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.media-item__thumb {
  width: 60px;
  height: 45px;
  background: var(--bg-tertiary);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--text-secondary);
}

.media-item__title {
  font-size: 13px;
  margin-bottom: 2px;
  color: var(--text-primary);
}

.media-item__title a { color: var(--text-primary); }
.media-item__title a:hover { color: var(--accent); }

.media-item__subtitle {
  font-size: 12px;
  color: var(--text-secondary);
}

.media-item .meta {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* ========== VIDEO CARD VARIANTS (Sidebar) ========== */
.video-card--borderless { border: none; }
.video-card--borderless + .video-card--borderless { margin-top: 8px; }

.video-card__play--sm {
  width: 36px;
  height: 36px;
  font-size: 14px;
}

.video-card__body--compact { padding: 10px 0 0; }

/* ========== TRIVIA CARD ELEMENTS ========== */
.trivia-card__icon { font-size: 24px; }
.trivia-card__title { margin: 8px 0 4px; }
.trivia-card__meta { font-size: 12px; color: var(--text-secondary); }

/* ========== HERO SECONDARY TAG ========== */
.hero__secondary .tag { margin-bottom: 8px; }

/* ========== AD PLACEHOLDERS ========== */
.placeholder--ad-banner { width: 100%; height: 250px; }
.placeholder--ad-skyscraper { width: 100%; height: 600px; }

/* ========== FOOTER EXTRAS ========== */
.footer__email { margin-top: 16px; font-size: 13px; }
.footer__credit { color: var(--text-muted); font-size: 12px; }
.footer__credit a { color: var(--accent); text-decoration: none; font-weight: 700;margin:0; }
.footer__credit a:hover { color: #ff1a1a; }
.footer__back-to-top { margin-left: 20px; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  margin-bottom: 24px;
}
.contact-card h2 { font-size: 20px; font-weight: 800; margin-bottom: 16px; }
.contact-card h2 i { color: var(--accent); margin-right: 8px; }
.contact-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 16px; }
.contact-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.contact-card__email { display: flex; align-items: center; gap: 10px; font-size: 15px; margin-bottom: 16px; }
.contact-card__email i { color: var(--accent); }
.contact-card__email a { color: var(--text-primary); font-weight: 700; text-decoration: none; }
.contact-card__email a:hover { color: var(--accent); }
.contact-card__person { font-size: 14px; color: var(--text-secondary); }
.contact-card__person strong { color: var(--text-primary); }

/* ================================================================
   PROMOTIONS PAGE
   ================================================================ */

/* ========== HERO ========== */
.promo-hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  overflow: hidden;
}

.promo-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85), rgba(204,0,0,0.3));
}

html.light-mode .promo-hero__overlay {
  background: linear-gradient(135deg, rgba(204,0,0,0.9), rgba(139,0,0,0.7));
}

.promo-hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
  text-align: center;
}

.promo-hero__badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.promo-hero__title {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

html.light-mode .promo-hero__title { color: #ffffff; }

.promo-hero__subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.promo-hero__origin {
  font-size: 14px;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.promo-hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.promo-hero__actions .btn--ghost {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}

.promo-hero__actions .btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.btn--lg {
  padding: 14px 32px;
  font-size: 15px;
}

/* ========== STATS BAR ========== */
.promo-stats {
  background: var(--accent);
}

.promo-stats__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.promo-stats__item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.promo-stats__item:last-child { border-right: none; }

.promo-stats__number {
  display: block;
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.promo-stats__label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

/* ========== EVENTS CAROUSEL ========== */
.promo-carousel {
  position: relative;
  padding-top: 5px !important;
}

.promo-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  margin-bottom: 25px;
}

.promo-carousel__btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  color: var(--text-primary);
  font-size: 14px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.promo-carousel__btn:hover {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
}

.promo-carousel .promo-carousel__dots.swiper-pagination {
  position: static;
  width: auto;
  margin: 0;
  bottom: auto;
  left: auto;
  transform: none;
}

.promo-carousel__dots .swiper-pagination-bullet {
  background: var(--text-secondary);
  opacity: 0.4;
}

.promo-carousel__dots .swiper-pagination-bullet-active {
  background: var(--accent);
  opacity: 1;
}

.promo-event-card {
  display: block;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.2s;
  height: 100%;
}

.promo-event-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.promo-event-card__thumb {
  aspect-ratio: 1;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-secondary);
  overflow: hidden;
}
.promo-event-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-event-card__body {
  padding: 14px;
}

.promo-event-card__body .tag {
  margin-bottom: 8px;
}

.promo-event-card__body h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 6px;
}

.promo-event-card:hover h3 { color: var(--accent); }

.promo-event-card__body .meta {
  font-size: 12px;
  color: var(--text-secondary);
}

/* ========== SECTIONS ========== */
.promo-section {
  padding: 60px 24px;
}

.promo-section--alt {
  background: var(--bg-secondary);
}

.promo-section__inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.promo-section__heading {
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 32px;
  text-align: center;
  color: var(--text-primary);
}

.promo-section__heading::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin: 12px auto 0;
  border-radius: 2px;
}

.promo-section__lead {
  font-size: 20px;
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

/* ========== VENUE BLOCKS ========== */
.promo-venue {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.promo-venue--reversed .promo-venue__media { order: 2; }
.promo-venue--reversed .promo-venue__content { order: 1; }

.promo-venue__img {
  border-radius: var(--radius);
}

.promo-venue__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
  margin-bottom: 8px;
}

.promo-venue__title {
  font-size: 26px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.promo-venue__content p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.promo-venue__highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

.promo-venue__highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-secondary);
}

.promo-venue__highlight i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

.promo-venue__highlight strong { color: var(--text-primary); }

.promo-venue__press {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.promo-venue__press-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  margin-right: 4px;
}

.promo-venue__cta {
  font-weight: 700;
  color: var(--text-primary) !important;
}

/* ========== COMMUNITY ========== */
.promo-community {
  background: linear-gradient(135deg, #1a0000, var(--bg-secondary));
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  padding: 60px 24px;
  text-align: center;
}

html.light-mode .promo-community {
  background: linear-gradient(135deg, #cc0000, #8b0000);
}

.promo-community__inner {
  max-width: 700px;
  margin: 0 auto;
}

.promo-community__icon {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 16px;
}

html.light-mode .promo-community__icon { color: var(--white); }

.promo-community__title {
  font-size: 26px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 16px;
}

html.light-mode .promo-community__title { color: #ffffff; }

.promo-community__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

html.light-mode .promo-community__text { color: rgba(255,255,255,0.85); }
html.light-mode .promo-community__text strong { color: #ffffff; }

.promo-community__award {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 24px;
  text-align: left;
}

html.light-mode .promo-community__award {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.2);
}

.promo-community__award i {
  font-size: 28px;
  color: #ffd700;
  flex-shrink: 0;
}

.promo-community__award strong {
  display: block;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 2px;
}

html.light-mode .promo-community__award strong { color: #ffffff; }

.promo-community__award span {
  font-size: 13px;
  color: var(--text-secondary);
}

html.light-mode .promo-community__award span { color: rgba(255,255,255,0.7); }

/* ========== BY THE NUMBERS GRID ========== */
.promo-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.promo-numbers__item {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}

.promo-numbers__item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.promo-numbers__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(204, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.promo-numbers__icon i {
  font-size: 20px;
  color: var(--accent);
}

html.light-mode .promo-numbers__icon {
  background: rgba(204, 0, 0, 0.1);
}

.promo-numbers__item strong {
  display: block;
  font-size: 36px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1;
}

.promo-numbers__item span {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ========== FIGHTER ROSTER ========== */
.promo-roster {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.promo-fighter {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  transition: border-color 0.2s;
}

.promo-fighter:hover { border-color: var(--accent); }

.promo-fighter__avatar {
  width: 48px;
  height: 48px;
  font-size: 14px;
  flex-shrink: 0;
}

.promo-fighter__name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 2px;
  line-height: 1.3;
}

.promo-fighter__record {
  font-weight: 600;
  font-size: 13px;
  color: var(--text-secondary);
}

.promo-fighter__title {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 4px;
  line-height: 1.4;
}

.promo-fighter__desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 4px;
}

.promo-fighter__link {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  text-decoration: none;
}

.promo-fighter__link:hover { color: var(--accent); }

/* ========== PRESS CAROUSEL ========== */
.promo-press-carousel {
  overflow: hidden;
  margin: 20px 0;
}

.promo-press-card {
  background: var(--bg-tertiary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 12px;
  text-align: center;
  transition: border-color 0.2s;
  display: block;
}

.promo-press-card:hover { border-color: var(--accent); }

.promo-press-card__logo {
  width: 100%;
  height: 75px;
  border-radius: var(--radius);
  background: var(--bg-secondary);
  border: 2px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  transition: border-color 0.2s;
}

.promo-press-card:hover .promo-press-card__logo {
  border-color: var(--accent);
}

.promo-press-card__name {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  line-height: 1.3;
}

.promo-press__more {
  text-align: center;
  font-size: 13px;
  color: var(--text-secondary);
}

/* ========== CTA GRID ========== */
.promo-cta {
  background: var(--bg-secondary);
}

.promo-cta__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.promo-cta__card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px 28px;
  background: var(--bg-tertiary);
  text-decoration: none;
  border-right: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transition: background 0.2s;
}

.promo-cta__card:last-child { border-right: none; }

.promo-cta__card:hover { background: var(--bg-secondary); }

.promo-cta__card i {
  font-size: 22px;
  color: var(--accent);
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(204, 0, 0, 0.1);
  border-radius: 50%;
}

.promo-cta__card h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.promo-cta__card p {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.page-template-page-promotions .footer { margin-top: 0; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1023px) {
  .layout { grid-template-columns: 1fr; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__sidebar-grid { grid-template-columns: 1fr 1fr; }
  .trending-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info { grid-template-columns: 1fr; }
  .video-section__layout { grid-template-columns: 1fr; }
  .video-section__secondary { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  /* Header */
  .header__nav-wrap { display: none; }
  .header__hamburger { display: flex; }
  .header__search-text { display: none; }

  /* Layout */
  .container { padding: 0 14px; }
  .layout {gap: 24px;padding: 0;}

  /* Hero - compact mobile */
  .hero { padding: 16px 0 0; }
  .hero__grid { grid-template-columns: 1fr; gap: 10px; }
  .hero__main { min-height: 220px; }
  .hero__slide { min-height: 220px; padding: 16px; }
  .hero__main h2 { font-size: 18px; }
  .hero__main p { font-size: 13px; display: none; }
  .hero__main .meta { font-size: 11px; }
  .hero__arrow { width: 30px; height: 30px; font-size: 12px; opacity: 1; }
  .hero__sidebar-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero__secondary { padding: 12px; }
  .hero__secondary h3 { font-size: 13px; }
  .hero__secondary .tag { font-size: 10px; padding: 1px 6px; }

  /* Section headings */
  .section-heading {margin-bottom: 5px;padding-bottom: 10px;padding-top: 10px;}
  .section-heading h2 { font-size: 16px; }
  .section-heading a { font-size: 12px; }

  /* Article cards */
  .article-card { gap: 12px; padding: 14px 0; }
  .article-card__thumb {width: 100px;/* height: 70px; */}
  .article-card__body h3 { font-size: 14px; line-height: 1.35; margin-bottom: 4px; }
  .article-card__excerpt {font-size: 12px;-webkit-line-clamp: 2;display: none;}
  .article-card__meta { font-size: 11px; gap: 6px; margin-top: 6px; }
  .article-card__body .tag { font-size: 10px; padding: 1px 7px; margin-bottom: 4px; }

  /* Grids */
  .trending-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .video-section__secondary { grid-template-columns: 1fr; }
  .newsletter-cta__form { flex-direction: column; }

  /* Page header (schedule, podcasts) */
  .page-header { padding: 20px 0; margin-bottom: 20px; }
  .page-header h1 { font-size: 22px; }
  .page-header p { font-size: 13px; }
  .page-header .meta { font-size: 12px; }

  /* Single post */
  .post-header { margin-bottom: 16px; }
  .post-header__title { font-size: 22px; margin: 8px 0; }
  .post-header__meta { font-size: 12px; }
  .post-featured-img { margin-bottom: 6px; }
  .post-photo-credit { margin-bottom: 20px; }
  .post-content { font-size: 15px; line-height: 1.7; }
  .post-content h2 { font-size: 18px; margin: 24px 0 12px; padding-top: 12px; }
  .post-content p { margin-bottom: 16px; }
  .post-content blockquote { padding: 12px 16px; margin: 18px 0; font-size: 14px; }
  .post-content ul, .post-content ol { padding-left: 20px; font-size: 14px; }
  .post-ad { margin: 20px 0; }
  .share-bar { gap: 8px; margin: 14px 0; }
  .share-bar__label { font-size: 12px; }
  .share-btn { width: 32px; height: 32px; font-size: 12px; }
  .post-tags { margin: 20px 0; gap: 6px; }
  .share-bar--bottom { padding-top: 16px; }
  .tweet-grid { grid-template-columns: 1fr; }
  .tweet-card { padding: 14px; }
  .tweet-card__text { font-size: 13px; }
  .quiz-cta { padding: 20px; }
  .quiz-cta__title { font-size: 17px; }
  .quiz-cta__desc { font-size: 13px; margin-bottom: 12px; }
  .comment-form { padding: 16px; }
  .comment-form__logins { flex-wrap: wrap; }
  .comment-form__logins .btn { font-size: 12px; padding: 6px 10px; }
  .comment__avatar { width: 32px; height: 32px; font-size: 9px; }
  .comment__author { font-size: 13px; }
  .comment__text { font-size: 13px; }
  .comment__thread { padding-left: 14px; }

  /* Schedule page */
  .schedule__month { font-size: 16px; margin-bottom: 16px; }
  .schedule__month:not(:first-child) { margin-top: 32px; }
  .schedule__date { margin-bottom: 16px; }
  .schedule__date-heading { font-size: 13px; margin-bottom: 8px; top: 77px; }
  .schedule__event { padding: 14px; margin-bottom: 10px; }
  .schedule__event-meta { gap: 8px; margin-bottom: 10px; }
  .schedule__network { font-size: 10px; padding: 2px 8px; }
  .schedule__venue, .schedule__time { font-size: 12px; }
  .schedule__fighters { font-size: 14px; }
  .schedule__bout-info { font-size: 12px; }
  .schedule__bouts li { padding: 6px 0; }
  .schedule__note { font-size: 12px; margin-top: 24px; }

  /* Podcasts directory */
  .directory__section-heading { font-size: 16px; margin-bottom: 18px; top: 77px; }
  .directory__section-heading:not(:first-child) { margin-top: 30px; }
  .directory__entry { padding: 14px 0; }
  .directory__name { font-size: 15px; }
  .directory__desc { font-size: 13px; margin-bottom: 6px; }
  .directory__links a { font-size: 10px; padding: 4px 10px; }
  .directory__cta { margin-top: 30px; padding: 18px; }
  .directory__cta h3 { font-size: 15px; }
  .directory__cta p { font-size: 13px; }

  /* Sidebar */
  .sidebar { gap: 18px; }
  .widget__header { padding: 12px 14px; font-size: 13px; }
  .widget__body { padding: 14px; }
  .widget__body--flush { padding: 0; }
  .quick-link { padding: 14px; gap: 12px; }
  .quick-link__icon { width: 36px; height: 36px; font-size: 16px; }
  .quick-link__title { font-size: 14px; }
  .quick-link__desc { font-size: 12px; }
  .quick-link__cta { font-size: 11px; }
  .widget--tickets h3 { font-size: 15px; }
  .widget--tickets__date { font-size: 13px; }
  .widget--tickets__venue { font-size: 12px; }
  .media-item__title { font-size: 13px; }
  .insta-grid { gap: 4px; }

  /* Quiz Hub */
  .quiz-featured { flex-direction: column !important; padding: 24px !important; gap: 20px !important; }
  .quiz-featured h2 { font-size: 20px !important; }
  .quiz-featured .placeholder { width: 100% !important; height: 160px !important; }
  .quiz-grid { grid-template-columns: 1fr !important; }
  .quiz-card__body h4 { font-size: 14px; }
  .quiz-card__thumb { height: 140px; }
  .leaderboard__row { font-size: 13px; }
  .leaderboard__score { font-size: 12px; }
  .leaderboard__name { font-size: 13px; }

  /* Contact page */
  .contact-info__item { padding: 20px; }
  .contact-info__item h4 { font-size: 15px; }
  .contact-info__item > div:first-child { font-size: 22px !important; }
  .contact-form-layout { grid-template-columns: 1fr !important; gap: 20px !important; }
  .contact-name-fields { grid-template-columns: 1fr !important; }
  .form-group label { font-size: 13px; }
  .form-group input, .form-group select, .form-group textarea { font-size: 14px; }

  /* Videos page */
  .page-header--flex { flex-direction: column !important; align-items: flex-start !important; gap: 12px; }
  .page-header--flex .btn { font-size: 13px; padding: 8px 16px; }
  .video-card--featured .video-card__thumb { min-height: 200px !important; }
  .video-card--featured .video-card__body h4 { font-size: 16px !important; }
  .video-card__body h4 { font-size: 13px; }
  .video-card__duration { font-size: 11px; padding: 2px 6px; }

  /* Promotions page */
  .promo-hero { min-height: auto; }
  .promo-hero__content { padding: 32px 16px; }
  .promo-hero__title { font-size: 22px; margin-bottom: 14px; }
  .promo-hero__badge { font-size: 10px; padding: 4px 10px; letter-spacing: 0.5px; margin-bottom: 14px; }
  .promo-hero__subtitle { font-size: 13px; line-height: 1.6; margin-bottom: 10px; }
  .promo-hero__origin { font-size: 11px; line-height: 1.5; margin-bottom: 20px; padding-top: 10px; }
  .promo-hero__actions { flex-direction: column; gap: 10px; }
  .promo-hero__actions .btn--lg { padding: 10px 20px; font-size: 13px; width: 100%; }
  .promo-stats__number { font-size: 24px; }
  .promo-stats__label { font-size: 11px; }
  .promo-stats__item { padding: 16px 12px; }
  .promo-section { padding: 36px 16px; }
  .promo-section__heading { font-size: 22px; margin-bottom: 24px; }
  .promo-section__lead { font-size: 16px; }
  .promo-venue__title { font-size: 20px; }
  .promo-venue__content p { font-size: 14px; }
  .promo-venue__highlight { font-size: 13px; }
  .promo-community { padding: 36px 16px; }
  .promo-community__title { font-size: 20px; }
  .promo-community__text { font-size: 14px; }
  .promo-community__icon { font-size: 28px; }
  .promo-fighter { padding: 12px; gap: 10px; }
  .promo-fighter__avatar { width: 40px; height: 40px; font-size: 12px; }
  .promo-fighter__name { font-size: 14px; }
  .promo-fighter__title { font-size: 12px; }
  .promo-fighter__desc { font-size: 12px; }
  .promo-numbers__item { padding: 20px 12px; }
  .promo-numbers__item strong { font-size: 28px; }
  .promo-numbers__item span { font-size: 12px; }
  .promo-numbers__icon { width: 40px; height: 40px; margin-bottom: 10px; }
  .promo-numbers__icon i { font-size: 16px; }
  .promo-cta__card {padding: 20px 16px;gap: 12px;justify-content: start;}
  .promo-cta__card i { width: 40px; height: 40px; font-size: 18px; }
  .promo-cta__card h3 { font-size: 13px; }
  .promo-cta__card p { font-size: 11px; }
  .promo-carousel__controls { margin-top: 20px; margin-bottom: 16px; }
  .promo-event-card__body h3 { font-size: 13px; }

  /* Footer */
  .footer { padding: 30px 20px 20px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .footer__col--brand { grid-column: 1 / -1; }
  .footer__col:last-child { grid-column: 1 / -1; border-top: 1px solid var(--border); padding-top: 20px; }
  .footer__col--brand { order: 99; border-top: 1px solid var(--border); padding-top: 24px; margin-top: 8px; text-align: center; }
  .footer__col--brand .footer__social { justify-content: center; }
  .footer__logo img { height: 48px; }
  .footer__bottom { flex-direction: column; gap: 10px; font-size: 12px; text-align: center; }
  .footer__bottom a { margin-left: 10px; }
}

/* ========== PROMOTIONS RESPONSIVE ========== */
@media (max-width: 900px) {
  .promo-hero__title { font-size: 30px; }
  .promo-venue { grid-template-columns: 1fr; }
  .promo-venue--reversed .promo-venue__media { order: 0; }
  .promo-venue--reversed .promo-venue__content { order: 0; }
  .promo-numbers { grid-template-columns: repeat(2, 1fr); }
  .promo-roster { grid-template-columns: 1fr; }
  .promo-cta__grid { grid-template-columns: repeat(2, 1fr); }
  .promo-cta__card:nth-child(2) { border-right: none; }
  .promo-cta__card:nth-child(1),
  .promo-cta__card:nth-child(2) { border-bottom: 1px solid var(--border); }
  .promo-stats__inner { flex-wrap: wrap; }
  .promo-stats__item { min-width: 33.33%; border-bottom: 1px solid rgba(255,255,255,0.15); }
}

@media (max-width: 600px) {
  .promo-hero__title { font-size: 24px; }
  .promo-hero__content { padding: 40px 16px; }
  .promo-stats__item { min-width: 50%; }
  .promo-numbers { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .promo-cta__grid { grid-template-columns: 1fr; }
  .promo-cta__card {border-right: none !important;border-bottom: 1px solid var(--border);}
  .promo-cta__card:last-child { border-bottom: none; }
  .promo-community__award { flex-direction: column; text-align: center; }
}

/* ==================== WORDPRESS SPECIFIC ==================== */

/* Admin bar offset */
body.admin-bar .header { top: 32px; }
body.admin-bar .breaking-ticker { top: 32px; }

@media (max-width: 782px) {
  body.admin-bar .header { top: 46px; }
  body.admin-bar .breaking-ticker { top: 46px; }
}

/* Search overlay hidden by default */
.search-overlay { display: none; }

/* WordPress image alignment */
.post-content .alignleft { float: left; margin: 0 20px 16px 0; }
.post-content .alignright { float: right; margin: 0 0 16px 20px; }
.post-content .aligncenter { display: block; margin: 20px auto; }
.post-content .wp-caption { max-width: 100%; }
.post-content .wp-caption-text { font-size: 13px; color: var(--text-secondary); margin-top: 6px; }

/* WordPress block editor */
.post-content .wp-block-image { margin: 20px 0; }
.post-content .wp-block-image img { max-width: 100%; height: auto; }

/* Screen reader text */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

/* Ad slots */
.ad-slot {/* margin: 20px 0; */text-align: center;overflow: hidden;border: 1px solid var(--border);background: var(--bg-secondary);border: 1px solid var(--border);border-radius: var(--radius);}
.ad-slot--300x250 {/* max-width: 300px; */}
.ad-slot img{
  display: block;
}
.ad-slot--300x600 { max-width: 300px; }
.ad-slot--728x90 { max-width: 728px; margin: 24px auto; }

/* WordPress menu active state mapping */
.header__nav .current-menu-item > a,
.header__nav .current-menu-ancestor > a,
.mobile-nav__links .current-menu-item > a {
  color: var(--accent);
}
