/* FILE: assets/css/main.css
   Main frontend stylesheet — responsive theme, navy/red/white */

/* ============================================================
   PhilBoxing.com — Main Stylesheet
   Responsive, mobile-first
   ============================================================ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --navy:        #003087;
  --navy-dark:   #00205c;
  --navy-light:  #0a3d91;
  --red:         #cc0000;
  --red-dark:    #a00000;
  --blue:        #0057b8;
  --blue-light:  #e8f0fb;
  --white:       #ffffff;
  --gray-50:     #f8f9fa;
  --gray-100:    #f1f3f5;
  --gray-200:    #e9ecef;
  --gray-400:    #ced4da;
  --gray-600:    #6c757d;
  --gray-800:    #343a40;
  --text:        #1a1a2e;
  --text-muted:  #5a6270;
  --border:      #dde2e8;
  --radius:      4px;
  --radius-md:   8px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 12px rgba(0,0,0,.10);
  --font-head:   'Oswald', sans-serif;
  --font-body:   'Inter', sans-serif;
  --font-serif:  'Source Serif 4', Georgia, serif;
  --max-width:   1200px;
  --sidebar-w:   280px;
  --gap:         24px;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--gray-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--red); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) { .container { padding: 0 24px; } }

/* ── Top bar ────────────────────────────────────────────────── */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,.7);
  font-size: .75rem;
  padding: 5px 0;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar__links { display: flex; gap: 16px; }
.topbar__links a { color: rgba(255,255,255,.7); }
.topbar__links a:hover { color: #fff; }

/* ── Site header ────────────────────────────────────────────── */
/* .site-header and .primary-nav each render the same ribbon image
   independently (nav must stay outside the header for position:sticky
   to work across the full page). Both use background-size:cover on the
   same full-viewport-width element, which scales the image identically
   in both — so background-position-y can line them up like two windows
   onto one continuous strip. -72px starts the header's window 25px
   further into the ribbon artwork than its natural top edge; nav is
   offset a further -103px (the header's own rendered height) so its
   window picks up right where the header's left off. */
.site-header {
  background-color: #011145;
  background-image: url('/assets/images/logo/philboxing-header-bg.png');
  background-repeat: no-repeat;
  background-position: center -72px;
  background-size: cover;
  padding: 20px 0;
  border-bottom: 1.5px solid #fff;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-logo__img {
  height: 60px;
  width: auto;
  display: block;
}

/* Text-based logo lockup — still used in the footer */
.site-logo__main {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.site-logo__dot { color: var(--red); }

/* Search */
.site-header__search form {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius);
  overflow: hidden;
}
.site-header__search input {
  background: none;
  border: none;
  outline: none;
  color: #fff;
  padding: 8px 12px;
  font-size: .875rem;
  width: 200px;
}
.site-header__search input::placeholder { color: rgba(255,255,255,.5); }
.site-header__search button {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.8);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  transition: color .2s;
}
.site-header__search button:hover { color: #fff; }

/* ── Primary nav ────────────────────────────────────────────── */
.primary-nav {
  background-color: #011145;
  background-image: url('/assets/images/logo/philboxing-header-bg.png');
  background-repeat: no-repeat;
  background-position: center -175px;
  background-size: cover;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 6px solid var(--blue);
  box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.primary-nav__inner {
  display: flex;
  align-items: center;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
}
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block;
  color: rgba(255,255,255,.9);
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 400;
  letter-spacing: .5px;
  padding: 13px 18px;
  transition: background .15s, color .15s;
  text-transform: uppercase;
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
  background: var(--red);
  color: #fff;
}

/* Dropdown */
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--navy-dark);
  min-width: 200px;
  box-shadow: var(--shadow-md);
  z-index: 200;
  border-top: 2px solid var(--red);
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  color: rgba(255,255,255,.85);
  padding: 10px 16px;
  font-size: .875rem;
  font-family: var(--font-head);
  letter-spacing: .5px;
  text-transform: uppercase;
  transition: background .15s;
}
.dropdown li a:hover,
.dropdown li a.active { background: rgba(255,255,255,.1); color: #fff; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 12px 16px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform .3s, opacity .3s;
}

@media (max-width: 767px) {
  .nav-toggle { display: flex; }
  .nav-list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding-bottom: 8px;
  }
  .nav-list.is-open { display: flex; }
  .nav-list > li > a { padding: 12px 20px; }
  .dropdown { position: static; display: none; box-shadow: none; border-top: none; }
  .has-dropdown.is-open .dropdown { display: block; }
  .primary-nav__inner { flex-wrap: wrap; }
}

/* ── Layout: content + sidebar ──────────────────────────────── */
.site-main { padding: var(--gap) 0 48px; }
.layout__content { min-width: 0; }
.layout {
  display: grid;
  grid-template-columns: 1fr var(--sidebar-w);
  gap: var(--gap);
  align-items: stretch;
}
@media (max-width: 900px) {
  .layout { grid-template-columns: 1fr; }
  .layout__sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
    border-left: none;
    padding-left: 0;
  }
}
.layout--full { grid-template-columns: 1fr; }
@media (max-width: 600px) {
  .layout__sidebar { grid-template-columns: 1fr; }
}

/* ── Featured story ─────────────────────────────────────────── */
.featured-story {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--gap);
}
.featured-story__img {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  background: var(--gray-100);
}
.featured-story__img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform .3s ease;
}
.featured-story__img:hover img { transform: scale(1.02); }
.featured-story__body {
  padding: 24px 28px;
  border-left: 4px solid var(--navy);
}
.featured-story.is-linked .featured-story__body { border-left-color: var(--red); }
.featured-story__title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 8px 0 12px;
  color: var(--text);
}
.featured-story__title a { color: inherit; }
.featured-story__title a:hover { color: var(--navy); }
.featured-story__teaser {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.65;
}

/* ── Article card thumbnail ──────────────────────────────────── */
.article-card.has-thumb {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: stretch;
}
@media (max-width: 500px) {
  .article-card.has-thumb { grid-template-columns: 1fr; }
  .article-card__thumb { height: 180px; }
}
.article-card__thumb {
  overflow: hidden;
  background: var(--gray-200);
  flex-shrink: 0;
  border-radius: 12px;
  margin: 12px;
}
.article-card__thumb img {
  width: 100%;
  height: 100%;
  min-height: 110px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  transition: transform .3s ease;
}
.article-card.has-thumb:hover .article-card__thumb img { transform: scale(1.05); }

/* ── Article list ───────────────────────────────────────────── */
.article-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

/* ── Article card ───────────────────────────────────────────── */
.article-card {
  background: var(--white);
  display: grid;
  grid-template-columns: 1fr;
  transition: background .15s;
}
.article-card:hover { background: var(--blue-light); }
.article-card.is-linked { border-left: 3px solid var(--red); }

.article-card__img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.article-card__body { padding: 16px 20px; }
.article-card--compact .article-card__body { padding: 12px 16px; }

.article-card__title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
  margin: 6px 0 8px;
  color: var(--text);
}
.article-card__title a { color: inherit; }
.article-card__title a:hover { color: var(--navy); }
.article-card--compact .article-card__title { font-size: .95rem; margin: 4px 0 6px; }

.article-card__teaser {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 8px;
}

/* ── Article meta ───────────────────────────────────────────── */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  font-size: .78rem;
  color: var(--gray-600);
}
.article-meta--large { font-size: .875rem; margin: 12px 0 0; }
.meta-author { font-weight: 600; color: var(--navy); }
.meta-source { color: var(--text-muted); }
.meta-date { color: var(--gray-600); }
.meta-dateline { color: var(--gray-600); font-style: italic; }
.meta-comments { color: var(--gray-600); text-decoration: none; }
.meta-comments:hover { color: var(--navy); text-decoration: underline; }

/* ── Article stats (views + comments) ───────────────────────── */
.article-card__stats {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: flex-end;
  font-size: .78rem;
  color: var(--gray-600);
  margin-top: 6px;
}
.stat-views, .stat-comments { display: inline-flex; align-items: center; gap: 4px; }
a.stat-comments { color: var(--gray-600); text-decoration: none; }
a.stat-comments:hover { color: var(--navy); text-decoration: underline; }

/* ── Badge ──────────────────────────────────────────────────── */
.badge {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-head);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
}
.badge:hover { background: var(--navy-dark); color: #fff; }
.badge--sm { font-size: .6rem; padding: 1px 6px; }
.badge--linked   { background: var(--red); }
.badge--column   { background: var(--blue); }
.badge--featured { background: #b8860b; }

.article-card__badges { display: flex; gap: 4px; margin-bottom: 4px; flex-wrap: wrap; }
.single-article__badges { display: flex; gap: 6px; margin-bottom: 10px; flex-wrap: wrap; }

/* ── External link icon ─────────────────────────────────────── */
.ext-icon {
  display: inline-block;
  width: 12px;
  height: 12px;
  vertical-align: middle;
  margin-left: 4px;
  opacity: .6;
}

/* ── Sidebar widgets ────────────────────────────────────────── */
.layout__sidebar {
  position: sticky;
  top: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  border-left: 1px solid var(--blue);
  padding-left: 20px;
}
.widget {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--gap);
}
.widget__title {
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  background: var(--navy);
  padding: 10px 16px;
  border-bottom: 2px solid var(--red);
}

.writer-list { padding: 8px 0; }
.writer-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 16px;
  font-size: .85rem;
  color: var(--text);
  transition: background .12s, color .12s;
  border-left: 3px solid transparent;
  gap: 8px;
}
.writer-list li a:hover {
  background: var(--blue-light);
  color: var(--navy);
  border-left-color: var(--navy);
}
.writer-list--compact li a {
  padding: 4px 16px;
  font-size: .8rem;
}
.writer-name { flex: 1; }
.writer-list--pinned { padding-bottom: 0; }
.writer-list__pinned { margin-bottom: 12px; }
.writer-list__pinned:last-child { margin-bottom: 4px; }
.writer-list__pinned > a { padding-bottom: 2px; }
.writer-role {
  display: block;
  padding: 0 16px;
  margin-top: 0;
  border-left: 3px solid transparent;
  font-size: .72rem;
  color: var(--text-muted);
  box-sizing: border-box;
}
.writer-list__subheading {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 16px 4px;
  border-top: 1px solid var(--border);
}
.writer-tag {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 1px 5px;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}

.cat-list { padding: 8px 0; }
.cat-list li a {
  display: block;
  padding: 6px 16px;
  font-size: .85rem;
  color: var(--text);
  transition: background .12s, color .12s;
}
.cat-list li a:hover { background: var(--blue-light); color: var(--navy); }

/* ── Single article ─────────────────────────────────────────── */
.single-article {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--gap);
}
.single-article__header { margin-bottom: 24px; }
.single-article__title {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin: 10px 0;
}
@media (max-width: 600px) { .single-article__title { font-size: 1.5rem; } }

.single-article__img {
  margin: 0 -32px 28px;
}
.single-article__img img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

/* Prose body */
.prose {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}
.prose p { margin-bottom: 1.2em; }
.prose h2, .prose h3 {
  font-family: var(--font-head);
  color: var(--navy);
  margin: 1.5em 0 .5em;
}
.prose a { color: var(--blue); border-bottom: 1px solid; }
.prose a:hover { color: var(--red); }
.prose strong { font-weight: 600; }
.prose em { font-style: italic; }
.prose ul, .prose ol { margin-bottom: 1.2em; padding-left: 1.4em; }
.prose ul li, .prose ol li { margin-bottom: .6em; }
.prose ol { list-style: decimal; }
.prose blockquote {
  border-left: 4px solid var(--navy);
  padding: 12px 20px;
  margin: 1.5em 0;
  background: var(--blue-light);
  border-radius: 0 var(--radius) var(--radius) 0;
}
/* Responsive images embedded in article content */
.prose img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1.2em auto;
  border-radius: var(--radius);
}
/* First image gets full-width hero treatment — contain (not cover) so the
   full photo always shows, never cropped, regardless of its aspect ratio */
.prose img:first-child {
  width: 100%;
  max-height: 600px;
  object-fit: contain;
  background: var(--gray-100);
  margin: 0 0 1.5em 0;
  border-radius: 0;
}

/* Share bar */
.share-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 24px;
  margin-top: 32px;
  border-top: 1px solid var(--border);
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-600);
}
.share-btn {
  padding: 6px 14px;
  border-radius: var(--radius);
  font-size: .8rem;
  font-weight: 600;
}
.share-btn--twitter { background: #000; color: #fff; }
.share-btn--twitter:hover { background: #333; color: #fff; }
.share-btn--facebook { background: #1877f2; color: #fff; }
.share-btn--facebook:hover { background: #1460cc; color: #fff; }

/* ── Related articles ───────────────────────────────────────── */
.related-articles { margin-bottom: var(--gap); }
.section-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 3px solid var(--navy);
  padding-bottom: 8px;
  margin-bottom: 16px;
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb__current { color: var(--gray-600); }

/* ── Search page ────────────────────────────────────────────── */
.search-page__title {
  font-family: var(--font-head);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.search-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.search-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  flex: 1 1 200px;
  min-width: 180px;
}
.search-field label {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.search-field input[type="text"] {
  padding: .6rem .8rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .9rem;
  font-family: var(--font-body);
}
.search-field input:focus { outline: none; border-color: var(--navy); }
.search-field--submit { flex: 0 0 auto; flex-direction: row; align-items: flex-end; gap: 12px; }
.search-submit {
  padding: .62rem 1.4rem;
  border: none;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  font-weight: 600;
  font-family: var(--font-body);
  font-size: .9rem;
  cursor: pointer;
  white-space: nowrap;
}
.search-submit:hover { background: var(--red); }
.search-reset { font-size: .85rem; color: var(--text-muted); align-self: center; }
.search-reset:hover { color: var(--red); }

.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  max-height: 240px;
  overflow-y: auto;
  z-index: 20;
}
.search-dd-item { padding: 8px 12px; cursor: pointer; font-size: .85rem; border-bottom: 1px solid var(--border); }
.search-dd-item:last-child { border-bottom: none; }
.search-dd-item:hover { background: var(--blue-light); }
.search-dd-count { font-size: .72rem; color: var(--text-muted); }
.search-dd-empty { padding: 10px 12px; font-size: .82rem; color: var(--text-muted); }

.search-page__count { color: var(--text-muted); font-size: .9rem; margin-bottom: 16px; }
.search-page__empty {
  color: var(--text-muted);
  padding: 24px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
}

/* ── Pagination ─────────────────────────────────────────────── */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 0;
}
.pagination__btn {
  background: var(--navy);
  color: #fff;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: .9rem;
  letter-spacing: .5px;
  transition: background .15s;
}
.pagination__btn:hover { background: var(--red); color: #fff; }
.pagination__info { color: var(--text-muted); font-size: .875rem; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: .95rem;
  letter-spacing: .5px;
  transition: background .15s, color .15s;
  cursor: pointer;
}
.btn--primary {
  background: var(--navy);
  color: #fff;
  margin-top: 16px;
}
.btn--primary:hover { background: var(--red); color: #fff; }
.btn--sm { padding: 6px 16px; font-size: .82rem; margin-top: 8px; }

/* ── Error page ─────────────────────────────────────────────── */
.error-page {
  text-align: center;
  padding: 80px 20px;
}
.error-page h1 {
  font-family: var(--font-head);
  font-size: 6rem;
  color: var(--red);
  line-height: 1;
}
.error-page p { font-size: 1.1rem; color: var(--text-muted); margin: 16px 0 24px; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background: #dddddd;
  color: var(--text);
  padding: 20px 0 0;
  margin-top: 32px;
  border-top: 6px solid var(--blue);
}
.site-footer__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .site-footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .site-footer__inner { grid-template-columns: 1fr; }
}

.footer-brand p {
  font-size: .85rem;
  line-height: 1.3;
  color: var(--text-muted);
}
.footer-brand__name {
  font-weight: 700;
  font-size: 1.05em;
  color: var(--text);
}
.footer-links h4 {
  font-family: var(--font-head);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.footer-links ul li {
  font-size: .85rem;
  line-height: 1.3;
}
.footer-links ul li + li { margin-top: 4px; }
.footer-links a {
  color: var(--text);
  transition: color .15s;
}
.footer-links a:hover { color: var(--red); }

.footer-bottom {
  background: #dddddd;
  padding: 4px 0;
  border-top: 1px solid #000;
}
.footer-bottom p {
  font-size: .78rem;
  line-height: 1;
  color: #000;
  text-align: center;
}

/* ── Responsive tweaks ──────────────────────────────────────── */
@media (max-width: 600px) {
  .single-article { padding: 20px 16px; }
  .single-article__img { margin: 0 -16px 20px; }
  .topbar__links { display: none; }
  .site-header__search input { width: 140px; }
}

/* ── Multiple headlines grid ─────────────────────────────────── */
.headlines-grid {
  display: grid;
  gap: var(--gap);
  margin-bottom: var(--gap);
}
.headlines-grid--2 {
  grid-template-columns: 1fr 1fr;
}
.headlines-grid--3 {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
}
.headlines-grid--3 .headline-card--primary {
  grid-column: 1 / -1;
}
@media (max-width: 700px) {
  .headlines-grid--2,
  .headlines-grid--3 { grid-template-columns: 1fr; }
  .headlines-grid--3 .headline-card--primary { grid-column: 1; }
}

.headline-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--navy);
  transition: box-shadow .2s;
}
.headline-card.is-linked { border-top-color: var(--red); }
.headline-card:hover { box-shadow: var(--shadow-md); }

.headline-card__img { overflow: hidden; padding: 12px; background: var(--gray-100); }
.headline-card__img img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  transition: transform .3s;
}
.headline-card--primary .headline-card__img img {
  height: 340px;
}
.headline-card:hover .headline-card__img img { transform: scale(1.03); }

.headline-card__body { padding: 16px 20px; flex: 1; }
.headline-card__meta-top { margin-bottom: 6px; }
.headline-card__title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 6px 0 10px;
  color: var(--text);
}
.headline-card--primary .headline-card__title { font-size: 1.4rem; }
.headline-card__title a { color: inherit; }
.headline-card__title a:hover { color: var(--navy); }
.headline-card__teaser {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 10px;
}

/* ── Column masthead ─────────────────────────────────────────── */
.column-masthead { margin-bottom: 24px; }

.column-masthead__nameplate {
  margin-bottom: 14px;
}
.column-masthead__col-title {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #000;
}
.column-masthead__byline-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.column-masthead__photo {
  width: 97px;
  height: 97px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--navy);
  flex-shrink: 0;
}
.column-masthead__writer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.column-masthead__by {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}
.column-masthead__by a { color: var(--navy); }
.column-masthead__by a:hover { color: var(--red); }
.column-masthead__email {
  font-size: .85rem;
  color: var(--blue);
  display: block;
}
.column-masthead__email:hover { color: var(--red); }
.column-masthead__headline {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 10px;
}
@media (max-width: 600px) {
  .column-masthead__col-title { font-size: 1.5rem; }
  .column-masthead__headline  { font-size: 1.5rem; }
}

/* ── More by author bar ──────────────────────────────────────── */
.more-by-author {
  margin: 24px 0 0;
  padding: 12px 16px;
  background: var(--blue-light);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.more-by-author__link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: .9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color .15s;
}
.more-by-author__link:hover { color: var(--red); }
.more-by-author__link svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  stroke: currentColor;
}
.more-by-author__link strong { color: var(--navy); }
.more-by-author__arrow {
  margin-left: auto;
  font-size: 1rem;
  opacity: .6;
}

/* ── Share bar updated ───────────────────────────────────────── */
.share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 0 0;
  margin-top: 24px;
  border-top: 1px solid var(--border);
  font-size: .875rem;
  font-weight: 600;
  color: var(--gray-600);
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 600;
  transition: opacity .15s;
  text-decoration: none;
}
.share-btn:hover { opacity: .85; }
.share-btn--x        { background: #000; color: #fff; }
.share-btn--facebook { background: #1877f2; color: #fff; }

/* ── Author profile page ─────────────────────────────────────── */
.author-profile { margin-bottom: var(--gap); }
.author-header {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--gap);
  border-top: 4px solid var(--navy);
}
@media (max-width: 600px) { .author-header { flex-direction: column; align-items: center; text-align: center; } }
.author-photo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--border);
  flex-shrink: 0;
}
.author-name {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.author-column-title {
  font-family: var(--font-head);
  font-size: 3.24rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 4px;
  line-height: 1.15;
}
.author-byline {
  font-size: .85rem;
  font-weight: 800;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.author-bio {
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 10px;
  max-width: 600px;
}
.author-count {
  font-size: .85rem;
  color: var(--text-muted);
}
.author-count strong { color: var(--navy); font-size: 1rem; }
.author-articles-title { margin-bottom: 16px; }

/* ── More stories section ────────────────────────────────────── */
.more-stories { margin-top: var(--gap); }
.more-stories .section-title { margin-bottom: 12px; }

/* ── More stories clean list ─────────────────────────────────── */
.more-stories .article-list { display: none; }
.more-story-item {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.more-story-item:last-child { border-bottom: none; }
.more-story-item__title {
  display: block;
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 4px;
  text-decoration: none;
  transition: color .15s;
}
.more-story-item__title:hover { color: var(--navy); }
.more-story-item.is-linked .more-story-item__title { color: var(--text); }
.more-story-item__meta {
  display: flex;
  gap: 12px;
  font-size: .78rem;
  color: var(--gray-600);
  flex-wrap: wrap;
}

/* ── More stories compact list ───────────────────────────────── */
.more-stories {
  margin-top: var(--gap);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-sm);
}
.more-stories .section-title { margin-bottom: 14px; }

.more-story-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 7px 0;
  border-bottom: 1px solid var(--gray-200);
}
.more-story-item:last-child { border-bottom: none; }

.more-story-item::before {
  content: '•';
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
  line-height: 1.4;
}
.more-story-item.is-linked::before { color: var(--gray-400); }

.more-story-item__content { flex: 1; min-width: 0; }

.more-story-item__title {
  display: inline;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  text-decoration: none;
}
.more-story-item__title:hover { color: var(--navy); text-decoration: underline; }

.more-story-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  font-size: .75rem;
  color: var(--gray-600);
  margin-top: 2px;
}
.more-story-item__meta .meta-author a { color: var(--blue); }
.more-story-item__meta .meta-author a:hover { color: var(--red); }

/* ── Boxer / Fighter profile page ───────────────────────────── */
.boxer-hero {
  position: relative;
  min-height: 320px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: #0a0a0a;
  display: flex;
  align-items: flex-end;
}
.boxer-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  filter: brightness(.80) saturate(.8);
  transition: filter 6s ease;
}
.boxer-hero:hover .boxer-hero__bg { filter: brightness(.45) saturate(.9); }
.boxer-hero__shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,.08) 0%, transparent 40%, rgba(212,175,55,.04) 100%);
  pointer-events: none;
}
.boxer-hero__gradient {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.7) 35%, rgba(0,0,0,.2) 65%, transparent 100%);
  pointer-events: none;
}
.boxer-hero--no-bg {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
  min-height: 280px;
}
.boxer-hero--no-bg::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(212,175,55,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(255,255,255,.03) 0%, transparent 60%);
}
.boxer-hero__content {
  position: relative; z-index: 2; width: 100%;
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex; align-items: flex-end; gap: 1.25rem;
}
.boxer-hero__photo-wrap { flex-shrink: 0; align-self: flex-start; }
.boxer-hero__photo-wrap img,
.boxer-hero__initials {
  width: 90px; height: 90px;
  border-radius: 50%; object-fit: cover; display: block;
  border: 3px solid rgba(212,175,55,.7);
  box-shadow: 0 0 0 1px rgba(212,175,55,.2), 0 4px 20px rgba(0,0,0,.6);
}
.boxer-hero__initials {
  background: rgba(212,175,55,.15);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem; font-weight: 700;
  color: rgba(212,175,55,.8); letter-spacing: .05em;
}
.boxer-hero__info { flex: 1; min-width: 0; }
.boxer-hero__meta {
  display: flex; align-items: center; gap: .5rem;
  flex-wrap: wrap; margin-top: .3rem; margin-bottom: .4rem;
}
.boxer-hero__flag { font-size: .95rem; }
.boxer-hero__cat {
  font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(212,175,55,.85);
}
.boxer-hero__champion-badge {
  font-size: .62rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #d4af37, #f5d76e, #b8860b);
  color: #000; padding: 2px 8px; border-radius: 99px;
}

/* ── Interim World Champion variant (silver, vs gold for full champs) ── */
.boxer-hero--interim .boxer-hero__champion-badge {
  background: linear-gradient(135deg, #94a3b8, #cbd5e1, #64748b);
  color: #1e293b;
}
.boxer-hero--interim .boxer-hero__photo-wrap img,
.boxer-hero--interim .boxer-hero__initials {
  border-color: rgba(148,163,184,.7);
  box-shadow: 0 0 0 1px rgba(148,163,184,.2), 0 4px 20px rgba(0,0,0,.6);
}
.boxer-hero--interim .boxer-hero__initials {
  background: rgba(148,163,184,.15);
  color: rgba(148,163,184,.85);
}
.boxer-hero--interim .boxer-hero__shimmer {
  background: linear-gradient(135deg, rgba(148,163,184,.08) 0%, transparent 40%, rgba(148,163,184,.04) 100%);
}
.boxer-hero--interim.boxer-hero--no-bg::before {
  background:
    radial-gradient(ellipse 60% 50% at 80% 50%, rgba(148,163,184,.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(255,255,255,.03) 0%, transparent 60%);
}
.boxer-hero--interim .boxer-hero__cat { color: rgba(148,163,184,.85); }
.boxer-hero--interim .boxer-hero__rank-badge--champ {
  background: rgba(148,163,184,.2); color: #94a3b8; border-color: rgba(148,163,184,.5);
}
.boxer-hero--interim .boxer-hero__boxrec:hover {
  color: #94a3b8; border-color: rgba(148,163,184,.5); background: rgba(148,163,184,.08);
}
.boxer-hero__name {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700; color: #fff; line-height: 1.05;
  margin: 0 0 .3rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.8); letter-spacing: .02em;
}
.boxer-hero__title-held {
  font-size: .8rem; color: rgba(212,175,55,.9);
  font-weight: 600; margin-bottom: .35rem;
  display: flex; align-items: center; gap: .3rem;
}
.boxer-hero__moniker {
  font-size: .95rem; font-weight: 700; color: rgba(255,255,255,.85);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.4rem;
}
.boxer-hero__birthplace {
  font-size: .8rem; color: #fff;
  margin-bottom: 1rem;
}
.boxer-hero__lifespan {
  font-size: .8rem; color: rgba(255,255,255,.9);
  letter-spacing: .02em; margin-bottom: .5rem; font-style: italic;
}
.boxer-hero__lifespan-rule {
  width: 48px; height: 1px; background: rgba(255,255,255,.25);
  margin-bottom: .7rem;
}
.boxer-hero__career-range {
  font-size: .85rem; color: #fff; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase;
  margin-bottom: .5rem;
}
.boxer-hero__record {
  display: flex; align-items: center; gap: .5rem;
  flex-wrap: wrap; margin-top: 0; margin-bottom: .7rem;
}
.boxer-hero__stat { text-align: center; min-width: 42px; }
.boxer-hero__stat-num {
  display: block; font-family: 'Oswald', sans-serif;
  font-size: 1.6rem; font-weight: 700; line-height: 1; color: #fff;
}
.boxer-hero__stat-num--win  { color: #4ade80; }
.boxer-hero__stat-num--loss { color: #f87171; }
.boxer-hero__stat-num--ko   { color: #fbbf24; }
.boxer-hero__stat-label {
  display: block; font-size: .58rem; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.45); margin-top: 1px;
}
.boxer-hero__stat-sep {
  color: rgba(255,255,255,.2); font-size: 1.2rem; font-weight: 300;
  align-self: flex-start; margin-top: 4px;
}
.boxer-hero__rankings { display: flex; flex-wrap: wrap; align-items: center; gap: .3rem; margin-bottom: 1.5rem; }
.boxer-hero__rankings-label {
  font-size: .95rem; font-weight: 600; color: #fff; margin-right: .15rem;
}
.boxer-hero__rank-badge {
  font-size: .65rem; font-weight: 700;
  padding: 2px 7px; border-radius: 3px; letter-spacing: .04em; border: 1px solid;
}
.boxer-hero__rank-badge--ring  { background:rgba(252,228,236,.15); color:#fce4ec; border-color:rgba(252,228,236,.3); }
.boxer-hero__rank-badge--wbc   { background:rgba(74,222,128,.12);  color:#4ade80; border-color:rgba(74,222,128,.3); }
.boxer-hero__rank-badge--wba   { background:rgba(251,191,36,.12);  color:#fbbf24; border-color:rgba(251,191,36,.3); }
.boxer-hero__rank-badge--ibf   { background:rgba(248,113,113,.12); color:#f87171; border-color:rgba(248,113,113,.3); }
.boxer-hero__rank-badge--wbo   { background:rgba(129,140,248,.12); color:#818cf8; border-color:rgba(129,140,248,.3); }
.boxer-hero__rank-badge--ibo   { background:rgba(196,181,253,.12); color:#c4b5fd; border-color:rgba(196,181,253,.3); }
.boxer-hero__rank-badge--champ { background:rgba(212,175,55,.2);   color:#d4af37; border-color:rgba(212,175,55,.5); }
.boxer-hero__boxrec {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .72rem; font-weight: 600;
  color: rgba(255,255,255,.6); text-decoration: none;
  border: 1px solid rgba(255,255,255,.15); border-radius: 4px; padding: 4px 10px;
  transition: color .2s, border-color .2s, background .2s;
}
.boxer-hero__boxrec:hover { color:#d4af37; border-color:rgba(212,175,55,.5); background:rgba(212,175,55,.08); }
.boxer-hero__divider {
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, transparent, rgba(212,175,55,.6) 20%, rgba(212,175,55,.9) 50%, rgba(212,175,55,.6) 80%, transparent);
}
.boxrec-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #0f172a; color: #e2e8f0;
  border: 1px solid #334155; border-radius: 5px; padding: .45rem 1rem;
  font-size: .82rem; font-weight: 600; text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}
.boxrec-btn:hover { background: #1e293b; color: #fff; border-color: #475569; }
@media (max-width: 520px) {
  .boxer-hero__content { flex-direction: column; align-items: flex-start; padding: 1rem; }
  .boxer-hero__name { font-size: 1.6rem; }
  .boxer-hero { min-height: 260px; }
}

/* ── Upcoming fight banner ───────────────────────────────────── */
.boxer-upcoming-fight {
  background: #5C0000;
  color: #fff;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  margin-bottom: var(--gap);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.boxer-upcoming-fight__label {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: .65;
}
.boxer-upcoming-fight__matchup {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
}
.uf-vs { opacity: .6; font-size: .85rem; }
.upcoming-fighter-link { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.4); }
.upcoming-fighter-link:hover { border-bottom-color: #fff; }
.boxer-upcoming-fight__stake {
  font-size: .82rem;
  opacity: .9;
  font-weight: 500;
}
.boxer-upcoming-fight__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 16px;
  font-size: .8rem;
  opacity: .75;
}

/* ── Big Weekend Fights sidebar widget ───────────────────────── */
.widget--fights { border-top: 3px solid var(--red); }

/* Slider wrapper */
.fights-slider { overflow: hidden; }
.fights-slider__track {
  display: flex;
  flex-direction: column;
  transition: transform .7s ease;
  will-change: transform;
}
.fights-slider__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px 4px;
}
.fights-slider__btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--text-muted);
  padding: 2px 6px;
  border-radius: 4px;
  transition: color .15s, background .15s;
}
.fights-slider__btn:hover { color: var(--navy); background: var(--gray-50); }
.fights-slider__dots { display: flex; gap: 5px; align-items: center; }
.fights-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.fights-dot--active { background: var(--red); transform: scale(1.3); }

.fight-widget-item {
  flex-shrink: 0;
  padding: 10px 12px;
  background: var(--gray-50);
  border-radius: var(--radius);
  border-left: 3px solid var(--border);
  box-sizing: border-box;
}
.fight-widget-item--big        { border-left-color: var(--navy); background: #f0f4ff; }
.fight-widget-item--superfight { border-left-color: var(--red);  background: #fff0f0; }

.fight-widget-item__date {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 5px;
}
.fight-widget-item__matchup {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 5px;
  margin-bottom: 4px;
}
.fight-widget-item__fighter {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  line-height: 1.3;
}
a.fight-widget-item__fighter:hover { color: var(--navy); }
.fight-widget-item__vs {
  font-size: .72rem;
  color: var(--text-muted);
  font-weight: 400;
}
.fight-widget-item__stake,
.fight-widget-item__rounds,
.fight-widget-item__venue {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 2px;
  line-height: 1.4;
}
.ranking-badge--wbo { background: #fce4ec; color: #880e4f; border-color: #f48fb1; }
.ranking-badge--ibo { background: #f3e5f5; color: #4a148c; border-color: #ce93d8; }
.ranking-badge--champion { background: #fff8e1; color: #856404; border-color: #ffc107; font-weight: 700; }

/* ── Championship Belts ───────────────────────────────────────── */
.boxer-belts { margin:.75rem 0 0; }
.boxer-belts__header {
  font-size:.7rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.08em; color:#64748b; margin-bottom:.4rem;
}
.boxer-belts__subheader {
  font-size:.62rem; font-weight:700; text-transform:uppercase;
  letter-spacing:.08em; color:#94a3b8;
  margin:.6rem 0 .25rem; padding-left:1rem;
  border-left:2px solid #e2e8f0;
}
.boxer-belt {
  display:flex; align-items:flex-start;
  padding:.2rem 0 .2rem 1rem;
  font-size:.72rem; position:relative;
}
.boxer-belt::before {
  content:'•'; position:absolute; left:0;
  color:#94a3b8; font-size:.85rem; line-height:1.4;
}
.boxer-belt--world::before {
  content:'🌍'; font-size:.78rem; color:inherit; line-height:1.5; margin-right:4px;
}
.boxer-belt--reigning { color:#1e293b; }
.boxer-belt--former   { color:#475569; }
.boxer-belt__body { display:flex; flex-wrap:wrap; align-items:center; gap:3px 6px; }
.boxer-belt__org {
  background:#30246F; color:#fff;
  font-size:.65rem; font-weight:700; letter-spacing:.05em;
  padding:1px 5px; border-radius:3px;
}
.boxer-belt__world { font-size:.7rem; }
.boxer-belt__title { font-weight:600; color:#1e293b; }
.boxer-belt__weight { color:#64748b; }
.boxer-belt__dates  { color:#64748b; width:100%; margin-top:1px; }

/* ── World Title Challenges ─────────────────────────────────── */
.bxc-section { margin-top:.9rem; }
.bxc-row {
  display:flex; flex-wrap:wrap; align-items:center; gap:3px 6px;
  padding:.2rem 0 .2rem 1rem; font-size:.72rem; position:relative;
}
.bxc-row::before {
  content:'•'; position:absolute; left:0;
  color:#94a3b8; font-size:.85rem; line-height:1.4;
}
.bxc-result { font-size:.72rem; color:#475569; }
.bxc-date   { color:#64748b; }
.bxc-titles { font-weight:700; color:#1e293b; }
.bxc-opp    { color:#64748b; }

/* ── Boxer bio section ───────────────────────────────────────── */
.boxer-bio {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--gap);
  border-left: 4px solid #30246F;
}
.boxer-bio__title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  color: #30246F;
  margin-bottom: 12px;
}
.boxer-bio__text {
  font-size: .925rem;
  line-height: 1.8;
  color: var(--text);
}
.boxer-bio__wiki {
  display: inline-block;
  margin-top: 12px;
  font-size: .82rem;
  color: #AB2807;
  text-decoration: none;
  font-weight: 500;
}
.boxer-bio__wiki:hover { text-decoration: underline; }
.boxer-bio__updated {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: 8px;
}

/* Inline alias in world-champion h1 */
.boxer-hero__alias-inline {
  font-weight: 400;
  color: rgba(212,175,55,.85);
  letter-spacing: .02em;
}

/* Plain listing card for non-world-champion fighters */
.bxp-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  max-width: 780px;
  margin: 2rem auto 1.5rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}
.bxp-card__photo {
  flex-shrink: 0;
  width: 90px; height: 90px;
  border-radius: 50%;
  overflow: hidden;
  background: #e2e8f0;
}
.bxp-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.bxp-card__initials {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700;
  color: #94a3b8; background: #e2e8f0;
}
.bxp-card__info { flex: 1; min-width: 0; }
.bxp-card__name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.55rem; font-weight: 600;
  color: #30246F; margin: 0 0 .2rem;
  line-height: 1.2;
}
.bxp-card__alias {
  font-style: normal;
  color: #64748b;
  font-weight: 400;
}
.bxp-card__category {
  font-size: .78rem; color: #64748b;
  text-transform: uppercase; letter-spacing: .07em;
  margin-bottom: .6rem;
}
.bxp-card__category-value {
  font-weight: 700; color: #30246F;
}
.bxp-card__record {
  display: flex; align-items: center; gap: .4rem;
  font-size: .95rem; font-weight: 600;
  margin-bottom: .4rem;
}
.bxp-card__stat--win  { color: #15803d; }
.bxp-card__stat--loss { color: #AB2807; }
.bxp-card__stat--ko   { color: #b45309; }
.bxp-card__sep { color: #94a3b8; font-weight: 400; }
.bxp-card__career { font-size: .8rem; color: #64748b; }

.bxp-card__rankings { display: flex; flex-wrap: wrap; align-items: center; gap: .3rem; margin-bottom: 1.4rem; }
.bxp-card__rankings-label {
  font-size: .95rem; font-weight: 600;
  color: var(--text-primary, #111); margin-right: .15rem;
}
.bxp-card__rank-badge {
  font-size: .68rem; font-weight: 700;
  padding: 2px 8px; border-radius: 3px; letter-spacing: .03em; border: 1px solid;
}
.bxp-card__rank-badge--ring { background: #fce4ec; color: #ad1457; border-color: #f8bbd0; }
.bxp-card__rank-badge--wbc  { background: #dcfce7; color: #15803d; border-color: #bbf7d0; }
.bxp-card__rank-badge--wba  { background: #fef3c7; color: #b45309; border-color: #fde68a; }
.bxp-card__rank-badge--ibf  { background: #fee2e2; color: #b91c1c; border-color: #fecaca; }
.bxp-card__rank-badge--wbo  { background: #e0e7ff; color: #4338ca; border-color: #c7d2fe; }
.bxp-card__rank-badge--ibo  { background: #ede9fe; color: #6d28d9; border-color: #ddd6fe; }

/* ── Feed sections + Load More/Hide + Comments — shared by Big Fight, articles, boxer pages ── */
.fwm-feed-title { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 700; text-transform: uppercase; color: var(--navy); border-bottom: 3px solid var(--navy); padding-bottom: 6px; margin-bottom: 14px; }
.fwm-load-more-row { display: flex; justify-content: center; gap: 10px; margin-top: 14px; }
.fwm-load-more {
  font-size: .82rem; font-weight: 600;
  padding: .45rem 1.2rem;
  border: 1px solid var(--red);
  border-radius: 3px; background: transparent;
  color: var(--red); cursor: pointer;
  transition: background .15s, color .15s;
}
.fwm-load-more:hover { background: var(--red); color: #fff; }
.fwm-hide-more { border-color: var(--gray-400); color: var(--gray-600); }
.fwm-hide-more:hover { background: var(--gray-600); border-color: var(--gray-600); }
.fwm-comment-notice { padding: 10px 14px; border-radius: 4px; font-size: .88rem; margin-bottom: 14px; }
.fwm-comment-notice--ok { background: #dcfce7; color: #15803d; }
.fwm-comment-notice--error { background: #fee2e2; color: var(--red); }
.comment-prompt { font-weight: 700; font-style: italic; color: #006262; }
.comment-list-toggle {
  float: right;
  font-size: .72rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: normal;
  padding: .2rem .7rem;
  border: 1px solid var(--navy);
  border-radius: 3px;
  background: transparent;
  color: var(--navy);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.comment-list-toggle:hover { background: var(--navy); color: #fff; }
.comment-list { display: flex; flex-direction: column; }
.comment-item { padding: 12px 0; border-bottom: 1px solid #ccc; }
.comment-item:last-child { border-bottom: none; }
.comment-item__head { display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px; }
.comment-item__name { font-weight: 700; color: var(--navy); font-size: .9rem; }
.comment-item__date { font-size: .74rem; color: var(--gray-600); }
.comment-item__body { font-size: .88rem; color: #333; line-height: 1.5; margin: 0 0 8px; }
.comment-item.is-pinned { background: #fff9e6; border: 1px solid #f5e0a3; border-radius: 6px; padding: 12px; margin-bottom: 8px; }
.comment-item.is-pinned:last-child { margin-bottom: 8px; }
.comment-item__pinned-badge { font-size: .72rem; font-weight: 700; color: #92400e; text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.comment-item__layout { display: flex; gap: 12px; align-items: flex-start; }
.comment-item__identity { display: flex; flex-direction: column; align-items: stretch; gap: 4px; flex-shrink: 0; width: 64px; }
.comment-item__content { flex: 1; min-width: 0; }
.comment-item__avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 1px solid var(--gray-200); background: var(--gray-100);
  margin: 0 auto; flex-shrink: 0;
}
.comment-item__avatar--initials {
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem; font-weight: 700; color: #fff; background: var(--navy);
}
.comment-item--reply .comment-item__avatar,
.comment-item--reply .comment-item__avatar--initials { width: 32px; height: 32px; font-size: .68rem; }
.comment-item--reply .comment-item__identity { width: 52px; }
.comment-item__rank {
  display: block; box-sizing: border-box; width: 100%;
  font-size: .64rem; font-weight: 700; letter-spacing: 0;
  color: #800000; background: #f8f0e8; border: 1px solid #e8d5c0;
  border-radius: 3px; padding: 2px 4px; text-align: center;
  line-height: 1.25; word-break: break-word; overflow-wrap: break-word; hyphens: auto;
}
.comment-item__actions { display: flex; align-items: center; gap: 6px; margin-top: 2px; }
.comment-reply-toggle, .comment-report {
  font-size: .78rem; font-weight: 600; color: var(--gray-600);
  background: none; border: none; cursor: pointer;
  /* Padding expands the tap target to ~44px tall for mobile; the matching
     negative margin keeps the visual spacing the same as an unpadded link. */
  padding: 12px 8px; margin: -12px -8px;
  display: inline-flex; align-items: center;
}
.comment-reply-toggle:hover, .comment-report:hover { color: var(--navy); text-decoration: underline; }
.comment-report.is-reported { color: var(--red); cursor: default; }
.comment-report.is-reported:hover { text-decoration: none; }
.comment-reply-form { margin: 10px 0 0; padding: 10px; background: var(--gray-50); }
.comment-replies { margin: 10px 0 0 22px; padding-left: 14px; border-left: 2px solid var(--gray-200); }
.comment-item--reply { padding: 10px 0; }
.comment-sort-toggle { font-size: .8rem; color: var(--gray-600); margin-bottom: 10px; }
.comment-sort-toggle a {
  color: var(--gray-600); text-decoration: none; display: inline-block;
  padding: 10px 5px; margin: -10px -2px;
}
.comment-sort-toggle a.is-active { color: var(--navy); font-weight: 700; text-decoration: underline; }
.comment-upvote {
  display: inline-flex; align-items: center; gap: 5px;
  border: 1px solid var(--gray-200); background: #fff; border-radius: 20px;
  padding: 9px 12px; font-size: .78rem; font-weight: 600; color: var(--gray-600);
  cursor: pointer; transition: background .15s, border-color .15s, color .15s;
  min-height: 22px;
}
.comment-upvote svg { width: 13px; height: 13px; }
.comment-upvote:hover:not(:disabled) { border-color: var(--navy); color: var(--navy); }
.comment-upvote.is-voted { background: var(--navy); border-color: var(--navy); color: #fff; cursor: default; }
.comment-upvote:disabled:not(.is-voted) { cursor: default; opacity: .6; }
.comment-form { margin-top: 20px; padding: 16px; background: #ddd; border: 1px solid #000; border-radius: 6px; }
.comment-form__hp { position: absolute; left: -9999px; top: -9999px; }
.comment-form__row { display: flex; gap: 10px; margin-bottom: 10px; flex-wrap: wrap; }
.comment-form__row input {
  flex: 1; min-width: 180px; padding: 8px 12px;
  border: 1px solid var(--gray-200); border-radius: 4px; font-size: .88rem;
}
.comment-form textarea {
  width: 100%; padding: 8px 12px; border: 1px solid var(--gray-200);
  border-radius: 4px; font-size: .88rem; font-family: inherit; resize: vertical;
  box-sizing: border-box; margin-bottom: 10px;
}
.comment-form__avatar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; font-size: .82rem; color: var(--gray-600); }
.comment-form__avatar-row input[type="file"] { font-size: .8rem; }
.comment-form__rules-link {
  display: block; margin-top: 8px; font-size: .72rem; color: var(--gray-600); text-decoration: none;
}
.comment-form__rules-link:hover { color: var(--navy); text-decoration: underline; }
