:root {
  --bg: #0a0a0b;
  --surface: #141416;
  --card: #1a1a1e;
  --border: #2a2a30;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --red: #e10600;
  --red-dim: #8b0000;
  --gold: #d4a017;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 1.25rem; }

.ticker {
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.ticker a {
  margin-right: 2.5rem;
  color: #fff;
  text-decoration: none;
  display: inline-block;
}
.ticker a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

header {
  border-bottom: 1px solid var(--border);
  background: rgba(10,10,11,0.92);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.85rem;
  letter-spacing: 0.04em;
  line-height: 1;
}
.logo-mark {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  background: transparent;
}
.logo-text { display: inline-block; }
.logo em { font-style: normal; color: var(--red); }
footer .logo-mark { width: 40px; height: 40px; }
.tag {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}
nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
nav a:hover { color: var(--red); }
nav a.active { color: var(--red); }
.cta {
  background: var(--red);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.55rem 1rem;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  display: inline-block;
}
.cta:hover { background: #ff1a12; }
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.4rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 2px;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0 2rem;
}
.hero-main {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 380px;
  background-image:
    linear-gradient(160deg, rgba(225,6,0,0.28) 0%, transparent 40%),
    linear-gradient(to top, rgba(10,10,11,0.97) 0%, rgba(10,10,11,0.88) 42%, rgba(10,10,11,0.55) 70%, rgba(10,10,11,0.35) 100%),
    var(--hero-image, radial-gradient(ellipse at 30% 40%, #3a1010 0%, #121214 70%));
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.75rem;
  transition: border-color 0.15s;
}
.hero-main:hover { border-color: var(--red); }
.badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  margin-bottom: 0.85rem;
}
.hero-main h1 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  max-width: 16ch;
  margin-bottom: 0.75rem;
}
.hero-main p {
  color: #d4d4d8;
  font-size: 0.95rem;
  max-width: 42ch;
  margin-bottom: 1rem;
}
.meta {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.meta strong { color: var(--gold); font-weight: 600; }

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.side-card {
  flex: 1;
  background-color: var(--card);
  background-image: linear-gradient(to top, rgba(20,20,22,0.98), rgba(20,20,22,0.72)), var(--side-image, none);
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.1rem 1.15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.15s;
}
.side-card:hover { border-color: var(--red); }
.side-card .label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.side-card h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.55rem;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 0.4rem;
}
.side-card p {
  font-size: 0.8rem;
  color: var(--muted);
}

section { padding: 0.5rem 0 2.5rem; }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 2px solid var(--red);
  padding-bottom: 0.5rem;
  margin-bottom: 1.25rem;
  gap: 1rem;
}
.section-head h1,
.section-head h3 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.06em;
}
.section-head a {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.section-head a:hover { color: var(--red); }
.section-intro {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 60ch;
  margin: -0.5rem 0 1.5rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.15s, transform 0.15s;
  display: flex;
  flex-direction: column;
}
.card:hover {
  border-color: #444;
  transform: translateY(-2px);
}
.card-img {
  height: 150px;
  background: linear-gradient(135deg, #2a1212 0%, #1a1a1e 60%);
  position: relative;
}
.card-img.boxing {
  background: linear-gradient(135deg, #3a2808 0%, #1a1a1e 65%);
}
.card-img.local,
.card-img.interviews {
  background: linear-gradient(135deg, #0f2438 0%, #1a1a1e 65%);
}
.card-img.mma,
.card-img.ufc {
  background: linear-gradient(135deg, #2a1212 0%, #1a1a1e 60%);
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-img::after {
  content: attr(data-cat);
  position: absolute;
  bottom: 0.6rem;
  left: 0.6rem;
  background: rgba(0,0,0,0.75);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
}
.card-body { padding: 1rem 1.05rem 1.15rem; flex: 1; display: flex; flex-direction: column; }
.card-body h4 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.45rem;
}
.card-body p {
  font-size: 0.82rem;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.card-body .meta { margin-top: auto; }

.bands {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 0.5rem;
}
.band {
  padding: 1.5rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.band.boxing {
  background: linear-gradient(120deg, #1f1408 0%, var(--surface) 70%);
}
.band.ufc {
  background: linear-gradient(120deg, #1f0808 0%, var(--surface) 70%);
}
.band h3 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}
.band p { color: var(--muted); font-size: 0.9rem; margin-bottom: 1rem; }

footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 2.5rem;
  margin-top: 1rem;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
footer .logo { font-size: 1.4rem; }
footer p { color: var(--muted); font-size: 0.8rem; }
.footer-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-links a:hover { color: var(--red); }

/* Article page */
.article-header {
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.article-header .badge { margin-bottom: 1rem; }
.article-header h1 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
  max-width: 22ch;
}
.article-hero {
  width: 100%;
  margin: 0 0 2rem;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #08080a;
}
.article-hero img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
}
.prose {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #e4e4e7;
}
.prose p { margin-bottom: 1.15rem; }
.prose h2, .prose h3 {
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.04em;
  margin: 2rem 0 0.75rem;
  color: #fff;
}
.prose h2 { font-size: 1.85rem; }
.prose h3 { font-size: 1.45rem; }
.prose strong { color: #fff; }
.prose a { color: var(--red); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: #ff1a12; }
.prose blockquote {
  border-left: 3px solid var(--red);
  padding: 0.5rem 0 0.5rem 1.15rem;
  margin: 1.5rem 0;
  color: #d4d4d8;
  font-style: italic;
}
.prose hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}
.prose ul, .prose ol {
  margin: 0 0 1.15rem 1.35rem;
}
.prose li { margin-bottom: 0.4rem; }

.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}
.prose th,
.prose td {
  border: 1px solid var(--border);
  padding: 0.65rem 0.75rem;
  text-align: left;
  vertical-align: top;
}
.prose th {
  background: #141416;
  color: var(--gold, #d4af37);
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.06em;
  font-weight: 400;
  font-size: 1rem;
}
.prose tr:nth-child(even) td { background: rgba(255,255,255,0.03); }
.prose td strong { color: #fff; white-space: nowrap; }

.prose figure {
  margin: 1.5rem 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.prose figcaption {
  font-size: 0.8rem;
  color: var(--muted);
  padding: 0.65rem 0.85rem;
  background: var(--surface);
}
.prose iframe {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 240px;
  border: 0;
  border-radius: 4px;
}
.prose .wp-video,
.prose .jetpack-videopress-player,
.prose .jetpack-videopress-player__wrapper {
  margin: 1.5rem 0;
}
.article-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 3rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.article-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}
.article-nav a:hover { color: var(--red); }

/* About */
.about-hero {
  padding: 2.5rem 0 1rem;
}
.about-hero h1 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 1rem;
}
.about-hero .lead {
  font-size: 1.15rem;
  color: #d4d4d8;
  max-width: 48ch;
  margin-bottom: 1.5rem;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
  padding-bottom: 2rem;
}
.about-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.5rem;
}
.about-card h2 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  color: var(--red);
}
.about-card p { color: var(--muted); margin-bottom: 0.85rem; }
.about-card p:last-child { margin-bottom: 0; }

/* 404 */
.error-page {
  text-align: center;
  padding: 5rem 1rem 6rem;
}
.error-page .code {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 6rem;
  color: var(--red);
  line-height: 1;
  letter-spacing: 0.04em;
}
.error-page h1 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  margin: 0.5rem 0 1rem;
}
.error-page p { color: var(--muted); margin-bottom: 1.5rem; }

.list-meta {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
}

@media (max-width: 800px) {
  .hero { grid-template-columns: 1fr; }
  .grid { grid-template-columns: 1fr; }
  .bands { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .menu-toggle { display: inline-block; }
  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,10,11,0.98);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem 1.25rem 1.25rem;
    gap: 0.85rem;
  }
  nav.open { display: flex; }
  header { position: sticky; }
  .header-inner { position: relative; flex-wrap: wrap; }
}

.prose .tiled-gallery,
.prose .tiled-gallery__row,
.prose .tiled-gallery__col {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.prose .tiled-gallery__item,
.prose .tiled-gallery__item img {
  border-radius: 4px;
}
.prose .tiled-gallery__item {
  flex: 1 1 140px;
  border: 1px solid var(--border);
  overflow: hidden;
  margin: 0;
}

/* More stories — always below full article body */
.more-stories {
  margin: 3.5rem 0 2rem;
  padding-top: 0.5rem;
  clear: both;
}
.more-stories .section-head {
  margin-bottom: 1rem;
}
.more-stories .article-nav {
  margin-top: 0;
}
.article-nav .nav-label {
  display: block;
  font-size: 0.65rem;
  color: var(--red);
  letter-spacing: 0.1em;
  margin-bottom: 0.35rem;
}
.article-nav .nav-title {
  display: block;
  max-width: 28ch;
}
.article-nav a {
  display: block;
}


.ml-fav { color: var(--red); font-weight: 700; }
.ml-dog { color: #22c55e; font-weight: 700; }
.ml-board { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.ml-board li {
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  padding: 0.7rem 0.9rem;
  margin-bottom: 0.4rem;
  border-radius: 4px;
  font-size: 1.05rem;
}
.ml-note { color: var(--muted); font-size: 0.95rem; margin-bottom: 2rem; }


/* Article engagement: glove likes + comments */
.engagement {
  margin: 2.5rem 0 1rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--border);
}
.engagement-like {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.glove-like {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 999px;
  padding: 0.55rem 1.1rem 0.55rem 0.85rem;
  cursor: pointer;
  font-family: Inter, system-ui, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  transition: border-color 0.15s, background 0.15s, transform 0.1s;
}
.glove-like:hover {
  border-color: var(--red);
  transform: translateY(-1px);
}
.glove-like.is-liked {
  border-color: var(--red);
  background: rgba(225, 6, 0, 0.15);
  color: #fff;
}
.glove-like.is-liked .glove-icon { color: var(--red); }
.glove-like:disabled,
.glove-like.is-liked {
  cursor: default;
}
.glove-icon {
  width: 28px;
  height: 28px;
  display: block;
  color: var(--muted);
}
.glove-like-count {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  min-width: 1.5ch;
}
.engagement h3 {
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}
.engagement-note {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}
.giscus, .giscus-frame {
  width: 100%;
}
