/* ============================================================
   NEON MAGAZINE — games.to News
   Production CSS for Magazine landing + Single article
   ============================================================ */

/* Scoped variables (don't conflict with theme tokens) */
.mag-main {
  /* Light mode — override theme tokens within magazine */
  --bg-body: #ffffff;
  --bg-surface: #f7f7f8;
  --bg-elevated: #eeeff1;
  --text-primary: #111118;
  --text-secondary: #4a4a5a;
  --text-muted: #8a8a9a;
  --text-on-dark: #111118;
  --border: rgba(0,0,0,0.09);
  --border-hover: rgba(0,0,0,0.18);
  --primary: #7c3aed;

  background: var(--bg-body);
  color: var(--text-primary);

  --cat-regulation: #2563EB;
  --cat-industry: #7c3aed;
  --cat-slots: #db2777;
  --cat-bonus: #d97706;
  --cat-crypto: #059669;
}

/* ═══════════════════════════════════════════════════════════════
   CATEGORY BAR
   ═══════════════════════════════════════════════════════════════ */
.category-bar {
  background: var(--bg-body);
  border-bottom: 1px solid var(--border);
}

.category-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  height: 48px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-bar-inner::-webkit-scrollbar { display: none; }

.cat-pill {
  flex-shrink: 0;
  padding: 0.375rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 100px;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  text-decoration: none;
}

.cat-pill:hover { color: var(--text-secondary); }

.cat-pill.active {
  color: var(--text-primary);
  background: rgba(255,255,255,0.04);
}

.cat-pill.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  border-radius: 1px;
}

.cat-pill.active[data-cat="all"]::after { background: var(--primary); }
.cat-pill.active[data-cat="regulation"]::after { background: var(--cat-regulation); }
.cat-pill.active[data-cat="industry"]::after { background: var(--cat-industry); }
.cat-pill.active[data-cat="slots"]::after { background: var(--cat-slots); }
.cat-pill.active[data-cat="bonus"]::after { background: var(--cat-bonus); }
.cat-pill.active[data-cat="crypto"]::after { background: var(--cat-crypto); }

/* ═══════════════════════════════════════════════════════════════
   MAGAZINE TITLE SECTION
   ═══════════════════════════════════════════════════════════════ */
/* Magazine title section — removed, now shown in logo bar */
.magazine-title-section { display: none; }

/* Logo "Magazine" — same style as GAMES */
.logo-magazine-tag {
  margin-left: 4px;
  font-size: inherit;
  font-weight: inherit;
  font-style: normal;
  letter-spacing: inherit;
  text-transform: uppercase;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  background-clip: unset !important;
  opacity: 0.85;
}

/* ═══════════════════════════════════════════════════════════════
   SHARED: CATEGORY BADGE
   ═══════════════════════════════════════════════════════════════ */
.cat-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 100px;
  white-space: nowrap;
}

.cat-badge--regulation {
  color: var(--cat-regulation);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
}
.cat-badge--industry {
  color: var(--cat-industry);
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.2);
}
.cat-badge--slots {
  color: var(--cat-slots);
  background: rgba(219, 39, 119, 0.08);
  border: 1px solid rgba(219, 39, 119, 0.2);
}
.cat-badge--bonus {
  color: var(--cat-bonus);
  background: rgba(217, 119, 6, 0.08);
  border: 1px solid rgba(217, 119, 6, 0.2);
}
.cat-badge--crypto {
  color: var(--cat-crypto);
  background: rgba(5, 150, 105, 0.08);
  border: 1px solid rgba(5, 150, 105, 0.2);
}

/* ═══════════════════════════════════════════════════════════════
   SHARED: AUTHOR CHIP
   ═══════════════════════════════════════════════════════════════ */
.author-chip {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.avatar-gradient-1 { background: linear-gradient(135deg, #8B5CF6, #EC4899); }
.avatar-gradient-2 { background: linear-gradient(135deg, #38BDF8, #8B5CF6); }
.avatar-gradient-3 { background: linear-gradient(135deg, #34D399, #38BDF8); }

.author-meta {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.author-meta .name {
  color: var(--text-secondary);
  font-weight: 500;
}

.author-meta .sep {
  margin: 0 0.35em;
  opacity: 0.4;
}

/* ═══════════════════════════════════════════════════════════════
   NEWSPAPER TWO-COLUMN LAYOUT
   ═══════════════════════════════════════════════════════════════ */
.newspaper-layout {
  padding-top: 1.5rem;
  padding-bottom: 2rem;
}

.newspaper-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}

/* ── Left Column: Main articles ── */
.newspaper-main {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Hero article (first/biggest) */
.np-hero {
  display: block;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1.25rem;
}

.np-hero__image {
  aspect-ratio: 16/8;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1rem;
}

.np-hero__image img,
.np-hero__image .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.np-hero:hover .np-hero__image img { transform: scale(1.02); }

.np-hero__body .cat-badge { margin-bottom: 0.5rem; }

.np-hero__headline {
  font-weight: 800;
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.np-hero__excerpt {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Secondary articles (smaller, horizontal layout) */
.np-secondary {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.np-secondary:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.np-secondary__image {
  aspect-ratio: 16/10;
  border-radius: 8px;
  overflow: hidden;
}

.np-secondary__image img,
.np-secondary__image .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.np-secondary:hover .np-secondary__image img { transform: scale(1.03); }

.np-secondary__body .cat-badge { margin-bottom: 0.375rem; }

.np-secondary__headline {
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.np-secondary:hover .np-secondary__headline { color: var(--primary); }

/* ── Right Column: Text-only sidebar ── */
.newspaper-sidebar {
  border-left: 1px solid var(--border);
  padding-left: 2rem;
}

.sidebar-title {
  font-size: clamp(1.25rem, 2.5vw, 1.625rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary);
}

.np-sidebar-item {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.np-sidebar-item:last-child { border-bottom: none; }

.np-sidebar-item:hover { background: var(--bg-surface); margin: 0 -0.5rem; padding-left: 0.5rem; padding-right: 0.5rem; border-radius: 6px; }

.np-sidebar-item .cat-badge { margin-bottom: 0.375rem; font-size: 0.625rem; padding: 0.15rem 0.5rem; }

.np-sidebar-item__headline {
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 1.35;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.np-sidebar-item:hover .np-sidebar-item__headline { color: var(--primary); }

.np-sidebar-item__date {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   IMAGE PLACEHOLDER (fallback when no featured image)
   ═══════════════════════════════════════════════════════════════ */
.img-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #e8e8ec 0%, #d8d8de 50%, #e8e8ec 100%);
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(139, 92, 246, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(56, 189, 248, 0.06) 0%, transparent 60%);
  z-index: 1;
}

.img-placeholder::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--bg-body) 0%, transparent 100%);
  z-index: 2;
}

.img-placeholder.surface-fade::after {
  background: linear-gradient(to top, var(--bg-surface) 0%, transparent 100%);
}

/* ═══════════════════════════════════════════════════════════════
   EDITORIAL PICKS — ASYMMETRIC GRID
   ═══════════════════════════════════════════════════════════════ */
.editorial-picks {
  padding: 0.5rem 0 1.5rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
}

/* Feature Card (left) */
.feature-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.feature-card .card-image {
  aspect-ratio: 16/8;
  overflow: hidden;
}

.feature-card .card-image img,
.feature-card .card-image .img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0;
  transition: transform var(--transition);
  object-fit: cover;
}

.feature-card:hover .card-image img,
.feature-card:hover .card-image .img-placeholder { transform: scale(1.05); }

.feature-card .card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.feature-card .card-body .cat-badge { align-self: flex-start; margin-bottom: 0.875rem; }

.feature-card .card-headline {
  font-weight: 700;
  font-size: clamp(1.1rem, 1.8vw, 1.375rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.feature-card .card-excerpt {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.feature-card .author-chip { margin-top: auto; }

/* Stacked Cards (right) */
.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.small-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  flex: 1;
  text-decoration: none;
  color: inherit;
}

.small-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.small-card .card-image {
  aspect-ratio: 16/7;
  overflow: hidden;
}

.small-card .card-image img,
.small-card .card-image .img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0;
  transition: transform var(--transition);
  object-fit: cover;
}

.small-card:hover .card-image img,
.small-card:hover .card-image .img-placeholder { transform: scale(1.05); }

.small-card .card-body {
  padding: 1.125rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.small-card .card-body .cat-badge { align-self: flex-start; margin-bottom: 0.625rem; }

.small-card .card-headline {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.small-card .author-chip { margin-top: auto; }

/* Section titles — match homepage oversized gradient style, light mode */
.mag-main .section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  background: none;
  -webkit-text-fill-color: unset;
}

/* ═══════════════════════════════════════════════════════════════
   LATEST NEWS — 3-COLUMN GRID (standard-card)
   ═══════════════════════════════════════════════════════════════ */
.latest-section {
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--border);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.standard-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}

.standard-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.standard-card .card-image {
  aspect-ratio: 16/8;
  overflow: hidden;
}

.standard-card .card-image img,
.standard-card .card-image .img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 0;
  transition: transform var(--transition);
  object-fit: cover;
}

.standard-card:hover .card-image img,
.standard-card:hover .card-image .img-placeholder { transform: scale(1.05); }

.standard-card .card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.standard-card .card-body .cat-badge {
  align-self: flex-start;
  margin-bottom: 0.75rem;
}

.standard-card .card-headline {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-weight: 700;
  font-size: 1.0625rem;
  line-height: 1.3;
  margin-bottom: 0.625rem;
}

.standard-card .card-excerpt {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 1rem;
}

.standard-card .author-chip { margin-top: auto; }

/* Load More */
.load-more-wrap { text-align: center; }

.btn-load-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  background: transparent;
  border: 1.5px solid rgba(139, 92, 246, 0.35);
  border-radius: 100px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-load-more:hover {
  background: rgba(139, 92, 246, 0.08);
  border-color: var(--primary);
  box-shadow: 0 0 24px rgba(139, 92, 246, 0.15);
}

/* ═══════════════════════════════════════════════════════════════
   TRENDING STRIP
   ═══════════════════════════════════════════════════════════════ */
.trending-section {
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid var(--border);
}

.trending-strip {
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.trending-strip::-webkit-scrollbar { display: none; }

.trending-title {
  font-weight: 900;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.03em;
}

.trending-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.trending-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: opacity var(--transition);
  text-decoration: none;
  color: inherit;
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-body);
}

.trending-item:hover {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.trending-number {
  font-weight: 900;
  font-size: 1.75rem;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.15;
}

.trending-item-content { flex: 1; min-width: 0; }

.trending-item-headline {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 0.375rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.trending-item .cat-badge { font-size: 0.625rem; padding: 0.15rem 0.5rem; }

/* ═══════════════════════════════════════════════════════════════
   CATEGORY SPOTLIGHT
   ═══════════════════════════════════════════════════════════════ */
.spotlight-section {
  padding: 2rem 0;
  position: relative;
}

.spotlight-section .glow-orb {
  position: absolute;
  top: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.06;
  filter: blur(80px);
}

.spotlight-section.regulation .glow-orb {
  left: -100px;
  background: var(--cat-regulation);
}

.spotlight-section.industry .glow-orb {
  right: -100px;
  background: var(--cat-industry);
}

.spotlight-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.spotlight-cat-name {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.spotlight-view-all {
  font-size: 0.875rem;
  font-weight: 600;
  transition: opacity var(--transition);
  text-decoration: none;
}

.spotlight-view-all:hover { opacity: 0.8; }

.compact-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.compact-card {
  display: flex;
  gap: 0.875rem;
  background: var(--bg-surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 0.875rem;
  transition: all var(--transition);
  text-decoration: none;
  color: inherit;
}

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

.compact-card .compact-thumb {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.compact-card .compact-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.compact-card .compact-thumb .img-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.compact-card .compact-thumb .img-placeholder::after { display: none; }

.compact-card .compact-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.compact-card .compact-headline {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.35rem;
}

.compact-card .compact-meta {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   PAGE DIVIDER
   ═══════════════════════════════════════════════════════════════ */
.page-divider {
  max-width: var(--max-width);
  margin: 4rem auto;
  padding: 0 2rem;
  text-align: center;
}

.page-divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin-bottom: 1.5rem;
}

.page-divider-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════════════════════════════
   SINGLE ARTICLE — READING PROGRESS
   ═══════════════════════════════════════════════════════════════ */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--cat-slots));
  z-index: 9998;
  transition: width 0.1s linear;
}

/* ═══════════════════════════════════════════════════════════════
   SINGLE ARTICLE — FLOATING SHARE BAR
   ═══════════════════════════════════════════════════════════════ */
.share-bar {
  position: fixed;
  left: max(2rem, calc((100vw - 1400px) / 2 - 80px));
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.share-bar.visible { opacity: 1; }

.share-btn {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0;
}

.share-btn:hover {
  color: var(--text-primary);
  border-color: rgba(0, 0, 0, 0.15);
  background: var(--bg-surface);
}

.share-btn svg { width: 18px; height: 18px; }

/* ═══════════════════════════════════════════════════════════════
   SINGLE ARTICLE — LAYOUT
   ═══════════════════════════════════════════════════════════════ */
.article-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.article-breadcrumbs {
  padding: 1.5rem 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.article-breadcrumbs a { transition: color var(--transition); }
.article-breadcrumbs a:hover { color: var(--text-secondary); }
.article-breadcrumbs .bc-sep { margin: 0 0.4em; opacity: 0.4; }

.article-header {
  max-width: 720px;
  margin: 0 auto;
  padding-bottom: 1.5rem;
}

.article-header .cat-badge { margin-bottom: 0.75rem; }

.article-main-headline {
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}

/* Hero Image */
.article-hero-image {
  max-width: 720px;
  margin: 0 auto 2rem;
  aspect-ratio: 16/8;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.article-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero-image .img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(150deg, #e0e0e8, #d0d0d8, #e0e0e8);
}

.article-hero-image .img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
}

/* Article Body */
.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.article-body p { margin-bottom: 1.5rem; }

.article-body h2 {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-weight: 700;
  font-size: 1.625rem;
  color: var(--text-primary);
  margin: 2.5rem 0 1rem;
  line-height: 1.25;
}

.article-body h3 {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-primary);
  margin: 2rem 0 0.75rem;
  line-height: 1.3;
}

.article-body a {
  color: var(--cat-regulation);
  text-decoration: underline;
  text-decoration-color: rgba(56, 189, 248, 0.3);
  text-underline-offset: 3px;
  transition: text-decoration-color var(--transition);
}

.article-body a:hover { text-decoration-color: var(--cat-regulation); }

.article-body blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--cat-regulation);
  background: rgba(56, 189, 248, 0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--text-primary);
  font-size: 1.0625rem;
}

.article-body ul {
  margin: 1rem 0 1.5rem 1.25rem;
  list-style: none;
}

.article-body ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.625rem;
}

.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cat-regulation);
}

.article-body ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.article-body ol li {
  margin-bottom: 0.625rem;
}

.article-body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}

/* ── Article + Sidebar Grid ── */
.article-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}
.article-content-col {
  min-width: 0;
}
.article-with-sidebar .article-header,
.article-with-sidebar .article-hero-image,
.article-with-sidebar .article-body,
.article-with-sidebar .author-box,
.article-with-sidebar .rg-notice {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}
.article-sidebar {
  border-left: 1px solid var(--border);
  padding-left: 1.5rem;
}
.article-sidebar__sticky {
  position: sticky;
  top: 80px;
}
.article-sidebar .sidebar-title {
  font-size: 1.25rem;
}
.sidebar-all-link {
  display: block;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s;
}
.sidebar-all-link:hover {
  opacity: 0.8;
}

/* Pull Quote */
.pull-quote {
  max-width: 720px;
  margin: 3rem auto;
  padding: 2rem 2.5rem;
  background: var(--bg-elevated);
  border-left: 3px solid var(--cat-regulation);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.pull-quote-text {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-weight: 700;
  font-style: italic;
  font-size: 1.375rem;
  line-height: 1.45;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

.pull-quote-attr {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Author Box */
.author-box {
  max-width: 720px;
  margin: 3rem auto;
  padding: 2rem;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.author-box::before { display: none; }

.author-box-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #38BDF8, #8B5CF6);
  flex-shrink: 0;
}

.author-box-info { flex: 1; }

.author-box-name {
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 0.375rem;
}

.author-box-bio {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.author-box-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
}

/* Editor's Notes */
.editors-notes {
  max-width: 720px;
  margin: 2.5rem auto;
  padding: 1.75rem;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.editors-notes-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.en-comment {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.en-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #FBBF24, #F472B6);
  flex-shrink: 0;
}

.en-body { flex: 1; }

.en-name {
  font-weight: 700;
  font-size: 0.9375rem;
  margin-bottom: 0.375rem;
}

.en-text {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Responsible Gambling */
.rg-notice {
  max-width: 720px;
  margin: 2.5rem auto;
  padding: 1.5rem 1.75rem;
  background: rgba(217, 119, 6, 0.04);
  border: 1px solid rgba(217, 119, 6, 0.15);
  border-radius: var(--radius);
}

.rg-notice-title {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--cat-bonus);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rg-notice-text {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.rg-notice-text a {
  color: var(--cat-bonus);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Related Articles */
.related-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

/* Pagination */
.mag-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}
.mag-pagination .page-numbers {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.mag-pagination .page-numbers li {
  list-style: none;
}
.mag-pagination .page-numbers a,
.mag-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  background: var(--bg-elevated);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.mag-pagination .page-numbers a:hover {
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--text-primary);
}
.mag-pagination .page-numbers .current {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .newspaper-grid { grid-template-columns: 1fr 280px; gap: 1.5rem; }
  .compact-row { grid-template-columns: repeat(2, 1fr); }
  .share-bar { display: none; }
}

@media (max-width: 768px) {
  .newspaper-grid { grid-template-columns: 1fr; }
  .newspaper-sidebar {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
  }
  .article-with-sidebar {
    grid-template-columns: 1fr;
  }
  .article-sidebar {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
  }
  .article-sidebar__sticky {
    position: static;
  }
  .np-secondary { grid-template-columns: 140px 1fr; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .compact-row { grid-template-columns: 1fr; }
  .author-box { flex-direction: column; align-items: center; text-align: center; }
  .article-hero-image { aspect-ratio: 16/8; }
}

@media (max-width: 540px) {
  .np-secondary { grid-template-columns: 1fr; }
  .np-secondary__image { aspect-ratio: 16/8; }
  .news-grid { grid-template-columns: 1fr; }
  .container, .article-page, .related-section { padding-left: 1rem; padding-right: 1rem; }
  .category-bar-inner { padding: 0 1rem; }
}
