/* ============================================================
   CYCLEHOLIX — Main Stylesheet
   Dark MTB Magazine Theme v1.0
   ============================================================ */

/* --- Variables --- */
:root {
  --bg:          #0f0f0f;
  --bg2:         #1a1a1a;
  --bg3:         #242424;
  --border:      #2e2e2e;
  --text:        #e8e8e8;
  --text-muted:  #888;
  --text-dim:    #555;
  --accent:      #e8401c;
  --accent-h:    #ff5530;
  --accent-dim:  rgba(232,64,28,0.15);
  --white:       #ffffff;
  --font-body:   'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-head:   'Inter', 'Helvetica Neue', Arial, sans-serif;
  --radius:      6px;
  --radius-lg:   12px;
  --max-w:       1200px;
  --content-w:   780px;
  --trans:       0.18s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--trans); }
a:hover { color: var(--accent-h); }
ul, ol { padding-left: 1.5rem; }

/* --- Layout --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15,15,15,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.site-logo {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--white);
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.site-logo span { color: var(--accent); }
.site-logo:hover { color: var(--white); }
.site-logo__img {
  height: 36px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity var(--trans);
}
.site-logo:hover .site-logo__img { opacity: 0.85; }

/* Nav */
.site-nav ul {
  display: flex;
  gap: 4px;
  list-style: none;
  padding: 0;
}
.site-nav a {
  display: block;
  padding: 6px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: color var(--trans), background var(--trans);
}
.site-nav a:hover,
.site-nav .current-menu-item a {
  color: var(--white);
  background: var(--bg3);
}
.site-nav .nav-accent a {
  color: var(--accent);
}
.site-nav .nav-accent a:hover {
  background: var(--accent-dim);
  color: var(--accent-h);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 4px 0;
  transition: transform var(--trans), opacity var(--trans);
}

/* ============================================================
   HERO — Hub pages + Homepage
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg2);
}
.hero--full {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
}
.hero--medium {
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
  transition: transform 8s ease;
}
.hero:hover .hero__bg { transform: scale(1.02); }
.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,15,15,0.95) 0%,
    rgba(15,15,15,0.4) 50%,
    transparent 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 48px 0;
  width: 100%;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
}
.hero__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
  max-width: 800px;
}
.hero__desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  line-height: 1.65;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.section-head h2 {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.section-head .view-all {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.section-head .view-all:hover { color: var(--accent); }

/* ============================================================
   POST CARDS
   ============================================================ */
.card-grid {
  display: grid;
  gap: 24px;
}
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
  display: flex;
  flex-direction: column;
  position: relative;
}
.card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(232,64,28,0.14);
}

/* Thumb */
.card__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--bg3);
  flex-shrink: 0;
}
.card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.card:hover .card__thumb img { transform: scale(1.06); }

/* No-image fallback */
.card__thumb--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg3) 0%, #1e1e1e 100%);
}
.card__thumb--empty::after {
  content: '🚵';
  font-size: 2.5rem;
  opacity: 0.25;
}

/* Type badge — top-left on thumb */
.card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  z-index: 2;
  pointer-events: none;
}
.card__badge--dauertest  { background: #2a7fff; }
.card__badge--vergleich  { background: #9c27b0; }
.card__badge--how-to     { background: #2e7d32; }
.card__badge--kurztest   { background: #e65100; }
.card__badge--erstkontakt{ background: #00838f; }

/* Body */
.card__body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Category + date row */
.card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-dim);
  flex-wrap: wrap;
}
.card__cat {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.7rem;
}
.card__cat:hover { color: var(--accent-h); }
.card__meta-dot {
  width: 3px;
  height: 3px;
  background: var(--text-dim);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Title */
.card__title {
  font-size: 0.975rem;
  font-weight: 700;
  line-height: 1.38;
  color: var(--text);
  flex: 1;
  margin: 0;
}
.card__title a {
  color: inherit;
  text-decoration: none;
  background-image: linear-gradient(var(--accent), var(--accent));
  background-size: 0% 1px;
  background-repeat: no-repeat;
  background-position: 0 100%;
  transition: background-size 0.25s ease, color 0.18s ease;
}
.card__title a:hover {
  color: var(--white);
  background-size: 100% 1px;
}

/* Excerpt */
.card__excerpt {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

/* Read more link */
.card__read-more {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
  transition: gap var(--trans), color var(--trans);
}
.card__read-more:hover { gap: 8px; color: var(--accent-h); }

/* Card variants */
.card--large .card__thumb { aspect-ratio: 21/9; }
.card--large .card__title { font-size: 1.3rem; line-height: 1.25; }
.card--large .card__excerpt { -webkit-line-clamp: 3; }

/* Horizontal card */
.card--horizontal {
  flex-direction: row;
  align-items: stretch;
}
.card--horizontal .card__thumb {
  width: 140px;
  flex-shrink: 0;
  aspect-ratio: unset;
  min-height: 110px;
}
.card--horizontal .card__body {
  padding: 14px 16px;
  gap: 6px;
}
.card--horizontal .card__title { font-size: 0.875rem; }
.card--horizontal .card__excerpt { display: none; }

/* ============================================================
   HUB PAGE — Subcategory grid
   ============================================================ */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.hub-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg2);
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  transition: border-color var(--trans), transform var(--trans), box-shadow var(--trans);
}
.hub-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(232,64,28,0.15);
}
.hub-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  transition: transform 0.5s ease, filter 0.3s ease;
}
.hub-card:hover .hub-card__bg {
  transform: scale(1.06);
  filter: brightness(0.5);
}
.hub-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,15,0.92) 0%, transparent 60%);
}
.hub-card__body {
  position: relative;
  z-index: 2;
  padding: 20px;
  width: 100%;
}
.hub-card__title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
}
.hub-card__desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.hub-card__count {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-btn {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--trans);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* ============================================================
   SINGLE POST
   ============================================================ */
.post-hero {
  position: relative;
  overflow: hidden;
  background: var(--bg2);
}
.post-hero__img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  filter: brightness(0.75);
}
.post-header {
  padding: 48px 0 32px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.post-header .breadcrumb {
  font-size: 0.78rem;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.post-header .breadcrumb a { color: var(--text-muted); }
.post-header .breadcrumb a:hover { color: var(--accent); }
.post-header .breadcrumb span { color: var(--text-dim); margin: 0 6px; }
.post-title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 16px;
}
.post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}
.post-meta .cat-pill {
  background: var(--accent-dim);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 3px;
}
.post-meta .dot { color: var(--border); }

/* Post content */
.post-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #d8d8d8;
}
.post-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin: 2.5rem 0 1rem;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}
.post-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin: 2rem 0 0.75rem;
}
.post-content p { margin-bottom: 1.4rem; }
.post-content ul, .post-content ol { margin-bottom: 1.4rem; }
.post-content li { margin-bottom: 0.4rem; }
.post-content a { color: var(--accent); border-bottom: 1px solid var(--accent-dim); }
.post-content a:hover { border-bottom-color: var(--accent); }
.post-content strong { color: var(--white); font-weight: 700; }
.post-content blockquote {
  border-left: 3px solid var(--accent);
  margin: 2rem 0;
  padding: 1rem 1.5rem;
  background: var(--bg2);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text);
}
.post-content img {
  border-radius: var(--radius);
  margin: 1.5rem 0;
}
.post-content figure { margin: 1.5rem 0; }
.post-content figcaption {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
  margin-top: 8px;
}

/* Specs table */
.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
.specs-table th, .specs-table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
.specs-table th {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--bg2);
  width: 35%;
}
.specs-table td { color: var(--text); }
.specs-table tr:last-child td, .specs-table tr:last-child th { border-bottom: none; }

/* Verdict box */
.verdict-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin: 2.5rem 0;
}
.verdict-box__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.verdict-box__text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.65;
}
.verdict-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 16px;
}
.pros h4 { color: #4caf50; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.cons h4 { color: var(--accent); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.pros li, .cons li { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 4px; list-style: none; padding-left: 0; }
.pros li::before { content: '+ '; color: #4caf50; font-weight: 700; }
.cons li::before { content: '– '; color: var(--accent); font-weight: 700; }

/* Rating */
.rating-bar { margin: 1.5rem 0; }
.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  font-size: 0.85rem;
}
.rating-label { width: 140px; color: var(--text-muted); flex-shrink: 0; }
.rating-track {
  flex: 1;
  height: 4px;
  background: var(--bg3);
  border-radius: 2px;
  overflow: hidden;
}
.rating-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.8s ease;
}
.rating-val { width: 28px; text-align: right; font-weight: 700; color: var(--white); font-size: 0.82rem; }

/* ============================================================
   NEWS SECTION
   ============================================================ */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.news-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.news-item:last-child { border-bottom: none; }
.news-item__thumb {
  width: 80px;
  height: 60px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg3);
}
.news-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
.news-item__title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 4px;
}
.news-item__title a { color: inherit; }
.news-item__title a:hover { color: var(--accent); }
.news-item__date { font-size: 0.75rem; color: var(--text-dim); }

/* ============================================================
   TOURNAMENT / RACE RESULTS
   ============================================================ */
.race-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.race-card__header {
  background: var(--bg3);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}
.race-card__series {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 2px 8px;
  border-radius: 3px;
}
.race-card__name { font-weight: 700; color: var(--white); font-size: 0.95rem; }
.race-card__date { font-size: 0.78rem; color: var(--text-muted); margin-left: auto; }
.race-card__body { padding: 16px 20px; }
.podium {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  justify-content: center;
  padding: 16px 0;
}
.podium__place {
  text-align: center;
  flex: 1;
  max-width: 120px;
}
.podium__bar {
  background: var(--bg3);
  border-radius: var(--radius) var(--radius) 0 0;
  margin-bottom: 8px;
}
.podium__place--1 .podium__bar { height: 70px; background: linear-gradient(to top, var(--accent), #ff7043); }
.podium__place--2 .podium__bar { height: 50px; background: var(--bg3); border: 1px solid var(--border); }
.podium__place--3 .podium__bar { height: 36px; background: var(--bg3); border: 1px solid var(--border); }
.podium__name { font-size: 0.82rem; font-weight: 700; color: var(--white); }
.podium__country { font-size: 0.72rem; color: var(--text-muted); }
.podium__pos { font-size: 0.68rem; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }

/* Event calendar strip */
.event-strip {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border) transparent;
  padding-bottom: 8px;
}
.event-strip-item {
  flex-shrink: 0;
  width: 200px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin-right: 12px;
  transition: border-color var(--trans);
}
.event-strip-item:hover { border-color: var(--accent); }
.event-strip-item__date {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.event-strip-item__name { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.event-strip-item__location { font-size: 0.78rem; color: var(--text-muted); }
.event-strip-item--past { opacity: 0.5; }
.event-strip-item--active { border-color: var(--accent); background: var(--accent-dim); }

/* ============================================================
   HOMEPAGE — Featured layout
   ============================================================ */
.home-featured {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.home-featured__main { grid-row: 1 / 3; }
.home-secondary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.home-sidebar-news {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin: 48px 0;
}
.pagination a, .pagination span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg2);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all var(--trans);
}
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .current { background: var(--accent); border-color: var(--accent); color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .site-logo { font-size: 1.2rem; margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; max-width: 280px; }
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 0.875rem; color: var(--text-muted); }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.footer-bottom a { color: var(--text-dim); }
.footer-bottom a:hover { color: var(--text-muted); }

/* ============================================================
   HOMEPAGE — FEATURED STRIP (Bikerumor style)
   ============================================================ */

/* Hero CTA button */
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  padding: 10px 22px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: var(--radius);
  transition: background var(--trans), transform var(--trans);
}
.hero__cta:hover {
  background: var(--accent-h);
  color: var(--white);
  transform: translateY(-1px);
}

/* Featured strip — 1 big + 2 stacked */
.featured-strip { padding: 40px 0 0; }

.featured-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 20px;
  align-items: start;
}

/* Lead card */
.card--lead {
  border: none;
  background: transparent;
  border-radius: 0;
}
.card--lead:hover { transform: none; box-shadow: none; border-color: transparent; }
.card--lead .card__thumb {
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.card--lead .card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card--lead .card__body { padding: 16px 0 0; }
.card__title--lead {
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

/* Side stack */
.featured-side {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.card--side {
  flex-direction: row;
  border: none;
  border-radius: 0;
  background: transparent;
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  gap: 14px;
  align-items: flex-start;
}
.card--side:first-child { padding-top: 0; }
.card--side:hover { transform: none; box-shadow: none; border-color: var(--border); border-bottom-color: var(--border); }
.card--side .card__thumb {
  width: 120px;
  height: 80px;
  flex-shrink: 0;
  aspect-ratio: unset;
  border-radius: var(--radius);
  overflow: hidden;
  flex-shrink: 0;
}
.card--side .card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card--side .card__body { padding: 0; gap: 4px; }
.card--side .card__title { font-size: 0.875rem; }

/* ============================================================
   CATEGORY SECTIONS — 1 featured + 3 list items
   ============================================================ */
.cat-section { padding: 40px 0; border-top: 1px solid var(--border); }
.cat-section:first-of-type { border-top: none; }

.cat-section__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}
.cat-section__label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.cat-section__icon { font-size: 1.6rem; line-height: 1; margin-top: 3px; flex-shrink: 0; }
.cat-section__title {
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}
.cat-section__title a { color: var(--white); }
.cat-section__title a:hover { color: var(--accent); }
.cat-section__desc { font-size: 0.8rem; color: var(--text-muted); max-width: 400px; }
.cat-section__more {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 4px;
  transition: color var(--trans);
}
.cat-section__more:hover { color: var(--accent); }

/* Category section grid: 1 big featured + 3-item list */
.cat-section__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: start;
}

.card--cat-lead {
  border: none;
  background: transparent;
  border-radius: 0;
}
.card--cat-lead:hover { transform: none; box-shadow: none; border-color: transparent; }
.card--cat-lead .card__thumb {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 0;
  position: relative;
}
.card--cat-lead .card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card--cat-lead .card__body { padding: 14px 0 0; }
.card__title--lg { font-size: 1.15rem; font-weight: 800; line-height: 1.3; }

/* List items */
.cat-section__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: 4px;
}

.card--list {
  flex-direction: row;
  border: none;
  background: transparent;
  border-radius: 0;
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  gap: 12px;
  align-items: flex-start;
}
.card--list:first-child { padding-top: 0; border-top: 1px solid var(--border); }
.card--list:hover { transform: none; box-shadow: none; border-color: var(--border); border-bottom-color: var(--border); }
.card--list .card__thumb {
  width: 90px;
  height: 68px;
  flex-shrink: 0;
  aspect-ratio: unset;
  border-radius: var(--radius);
  overflow: hidden;
}
.card--list .card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card--list .card__body { padding: 0; gap: 4px; }
.card--list .card__title { font-size: 0.84rem; font-weight: 700; line-height: 1.35; }
.card--list .card__title a:hover { color: var(--accent); }

/* Responsive */
@media (max-width: 900px) {
  .featured-grid { grid-template-columns: 1fr; }
  .featured-side { flex-direction: row; flex-wrap: wrap; gap: 16px; }
  .card--side { width: calc(50% - 8px); flex-direction: column; }
  .card--side .card__thumb { width: 100%; height: auto; aspect-ratio: 16/9; }
  .cat-section__grid { grid-template-columns: 1fr; }
  .cat-section__list { flex-direction: row; flex-wrap: wrap; }
  .card--list { width: calc(50% - 8px); flex-direction: column; }
  .card--list .card__thumb { width: 100%; height: auto; aspect-ratio: 16/9; }
}
@media (max-width: 600px) {
  .featured-side { flex-direction: column; }
  .card--side { width: 100%; }
  .cat-section__list { flex-direction: column; }
  .card--list { width: 100%; }
  .cat-section__head { flex-direction: column; gap: 8px; }
}

/* ============================================================
   HUB SECTIONS — rich layout with 3 posts + description
   ============================================================ */
.hub-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}
.hub-section:last-child { border-bottom: none; }

.hub-section__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
.hub-section__left {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.hub-section__icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.hub-section__title {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.hub-section__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.55;
}
.hub-section__more {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  margin-top: 4px;
  transition: color var(--trans);
}
.hub-section__more:hover { color: var(--accent); }

.filter-count {
  font-size: 0.7em;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .hub-section__head { flex-direction: column; gap: 12px; }
  .hub-section__more { align-self: flex-start; }
}

/* ============================================================
   UTILS
   ============================================================ */
.section { padding: 60px 0; }
.section + .section { padding-top: 0; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.text-muted { color: var(--text-muted); }
.text-accent { color: var(--accent); }
.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
}
.badge--accent { background: var(--accent-dim); color: var(--accent); }
.badge--green { background: rgba(76,175,80,0.15); color: #4caf50; }
.badge--grey { background: var(--bg3); color: var(--text-muted); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .home-featured { grid-template-columns: 1fr; }
  .home-featured__main { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .verdict-pros-cons { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-nav { display: none; }
  .site-nav.open { display: block; position: absolute; top: 64px; left: 0; right: 0; background: var(--bg2); border-bottom: 1px solid var(--border); padding: 16px 24px; }
  .site-nav.open ul { flex-direction: column; }
  .nav-toggle { display: block; }
  .card-grid--3, .card-grid--2, .card-grid--4 { grid-template-columns: 1fr; }
  .card--horizontal { flex-direction: column; }
  .card--horizontal .card__thumb { width: 100%; aspect-ratio: 16/9; }
  .home-secondary { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero--full { min-height: 380px; }
  .podium { gap: 8px; }
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .event-strip-item { width: 160px; }
}

@media (max-width: 480px) {
  .hub-grid { grid-template-columns: 1fr; }
  .container, .container--narrow { padding: 0 16px; }
  .hero__title { font-size: 1.8rem; }
}
