/* ---- CATEGORY PAGES ---- */

.nav-active { color: var(--gold) !important; }

/* Gambling warning bar */
.gambling-warning-bar {
  background: #7a5800;
  color: #fff;
  padding: 10px 0;
  font-size: 13px;
  line-height: 1.5;
}

.gambling-warning-bar p { margin: 0; }
.gambling-warning-bar a { color: #ffd166; }

/* Category hero */
.cat-hero {
  background: var(--hero-bg);
  color: #fff;
  padding: 60px 0 48px;
  transition: background 0.3s;
}

.cat-hero--risk { border-bottom: 3px solid #e85d4a; }

.cat-hero-inner { max-width: 700px; }

.cat-label {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.cat-title {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: #fff;
}

.cat-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  font-weight: 300;
  max-width: 580px;
}

.risk-disclaimer {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(232,93,74,0.15);
  border: 1px solid rgba(232,93,74,0.3);
  border-radius: var(--radius);
}

.risk-disclaimer p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
}

/* Featured articles section */
.cat-featured { padding: 56px 0 0; }

.cat-featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 0;
}

.cat-featured-grid--single { grid-template-columns: 1fr; max-width: 600px; }

.cat-hero-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cat-hero-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

.cat-hero-card-img {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-hero-card-icon { font-size: 48px; }

.cat-hero-card-body { padding: 24px; }

.cat-hero-card-body h2 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  margin: 10px 0 10px;
}

.cat-hero-card-body p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 12px;
}

/* All articles catalogue */
.cat-catalogue { padding: 48px 0 72px; }
