/*
Theme Name: Velobet Casino Theme
Theme URI: https://mintcream-salamander-752361.hostingersite.com
Author: SEO Satellite Factory
Description: Velobet Casino satellite — Near-black background with vivid lime-green CTAs and Poppins typography. Sharp 6px corners. High-contrast monochrome with the lime as the only saturated colour..
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License: Proprietary
Tags: casino, multilingual, dark-theme, responsive
Text Domain: satellite
*/

:root {
  /* Brand palette — accent */
  --cyan: #95f400;
  --cyan-hover: #aaf633;
  --cyan-dim: rgba(149,244,0,0.15);
  --cyan-glow: rgba(149,244,0,0.4);
  --cyan-ghost: rgba(149,244,0,0.08);

  /* Accent alpha variants (for gradients, glows, borders) */
  --accent-alpha-002: rgba(149,244,0,0.02);
  --accent-alpha-003: rgba(149,244,0,0.03);
  --accent-alpha-004: rgba(149,244,0,0.04);
  --accent-alpha-005: rgba(149,244,0,0.05);
  --accent-alpha-006: rgba(149,244,0,0.06);
  --accent-alpha-008: rgba(149,244,0,0.08);
  --accent-alpha-010: rgba(149,244,0,0.1);
  --accent-alpha-015: rgba(149,244,0,0.15);
  --accent-alpha-020: rgba(149,244,0,0.2);
  --accent-alpha-025: rgba(149,244,0,0.25);
  --accent-alpha-030: rgba(149,244,0,0.3);
  --accent-alpha-035: rgba(149,244,0,0.35);
  --accent-alpha-040: rgba(149,244,0,0.4);
  --accent-alpha-050: rgba(149,244,0,0.5);
  --accent-alpha-060: rgba(149,244,0,0.6);

  /* Secondary accent */
  --red: #ff3030;
  --red-ghost: rgba(255,48,48,0.12);
  --accent2-alpha-004: rgba(255,48,48,0.04);
  --accent2-alpha-005: rgba(255,48,48,0.05);
  --accent2-alpha-012: rgba(255,48,48,0.12);

  /* Tertiary accent */
  --gold: #e62b3a;
  --gold-ghost: rgba(230,43,58,0.08);
  --accent3-alpha-004: rgba(230,43,58,0.04);
  --accent3-alpha-006: rgba(230,43,58,0.06);
  --accent3-alpha-008: rgba(230,43,58,0.08);
  --accent3-alpha-030: rgba(230,43,58,0.3);
  --accent3-alpha-035: rgba(230,43,58,0.35);

  /* Surfaces */
  --bg: #11110f;
  --bg-up: #181816;
  --bg-card: #1e242b;
  --bg-card-alt: #292f36;
  --border: #2a2a26;
  --border-hi: rgba(255,255,255,0.15);
  --bg-alpha-082: rgba(17,17,15,0.82);
  --bg-alpha-092: rgba(17,17,15,0.92);
  --bg-alpha-097: rgba(17,17,15,0.97);

  /* Text */
  --text: rgba(255, 255, 255, 0.7);
  --text-dim: rgba(255, 255, 255, 0.45);
  --text-muted: rgba(255,255,255,0.35);
  --text-on-cyan: #11110f;
  --white: #eaeaea;

  /* Typography */
  --sans: 'Inter', system-ui, sans-serif;

  /* Scale */
  --fs-xs: .72rem;
  --fs-sm: .82rem;
  --fs-base: .95rem;
  --fs-lg: 1.1rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 2rem;
  --fs-4xl: 2.6rem;
  --fs-hero: clamp(2.4rem, 5.5vw, 4.2rem);

  /* Spacing */
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px;
  --sp-5: 20px; --sp-6: 24px; --sp-8: 32px; --sp-10: 40px;
  --sp-12: 48px; --sp-16: 64px; --sp-20: 80px; --sp-24: 96px;

  /* Radii */
  --r: 6px;
  --r-lg: 12px;

  /* Layout */
  --max-w: 1200px;
  --narrow: 860px;
  --header-h: 64px;

  /* Shadows */
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.5);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.5);
  --shadow-cyan: 0 4px 20px rgba(149,244,0,0.4);
  --shadow-cyan-lg: 0 8px 32px rgba(149,244,0,0.4);

  /* Glow effects */
  --glow-sm: 0 0 10px rgba(149,244,0,0.3);
  --glow-md: 0 0 20px rgba(149,244,0,0.25), 0 0 40px rgba(149,244,0,0.1);
  --glow-lg: 0 0 30px rgba(149,244,0,0.4), 0 0 60px rgba(149,244,0,0.15);

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 220ms ease;
  --t-slow: 400ms ease;
}

/* ============================================================
   BETA — Editorial Luxury — style-base.css
   Clean, magazine-inspired layout. Serif accent headings,
   generous whitespace, thin borders, no glows.
   :root variables are injected by build.js from site-config.json.
   ============================================================ */

/* ============================================================ RESET + BASE */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }

body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: var(--cyan); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--cyan-hover); }
img { max-width: 100%; height: auto; display: block; }
strong { color: var(--white); font-weight: 600; }
p { margin: 0 0 var(--sp-5); color: var(--text-dim); line-height: 1.8; }

/* Typography — serif for H1/H2, sans for H3+ */
h1, h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700; line-height: 1.25; color: var(--white);
  letter-spacing: -0.01em;
}
h3, h4 {
  font-family: var(--sans); font-weight: 600;
  line-height: 1.3; color: var(--white);
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: var(--sp-6); }
h2 { font-size: clamp(1.5rem, 2.8vw, 2rem); margin: 0 0 var(--sp-6); }
h3 { font-size: 1.2rem; margin: var(--sp-8) 0 var(--sp-3); }
h4 { font-size: 1.05rem; margin: var(--sp-6) 0 var(--sp-2); }

ul, ol { padding-left: 1.4em; margin: 0 0 var(--sp-5); }
li { margin-bottom: var(--sp-2); color: var(--text-dim); line-height: 1.7; }

hr { border: 0; height: 1px; background: var(--border); margin: var(--sp-12) 0; }

code {
  font-size: .88em; padding: 2px 8px; border-radius: 3px;
  background: var(--cyan-ghost); color: var(--cyan);
}

::selection { background: var(--cyan); color: var(--bg); }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

.ed-skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  background: var(--cyan); color: var(--bg); padding: 8px 16px; font-weight: 700;
}
.ed-skip-link:focus { left: 8px; top: 8px; }

/* ============================================================ LAYOUT */
.ed-narrow { max-width: 720px; margin: 0 auto; padding: 0 var(--sp-6); }
.ed-wide { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-6); }
.ed-main { padding-top: var(--header-h); min-height: 60vh; }

/* Overline — small caps accent label */
.ed-overline {
  font-family: var(--sans); font-size: var(--fs-xs);
  font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: var(--sp-3);
}

/* Legal micro text */
.ed-legal { font-size: var(--fs-xs); color: var(--text-muted); margin-top: var(--sp-3); }

/* ============================================================ HEADER — SLIM BAR */
.ed-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.ed-header-bar {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-6);
  display: flex; align-items: center; height: 100%;
  gap: var(--sp-6);
}

.ed-logo img { height: 24px; width: auto; }

.ed-nav {
  flex: 1; display: flex; justify-content: center;
  gap: var(--sp-5); overflow-x: auto;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.ed-nav::-webkit-scrollbar { display: none; }

.ed-nav-link {
  font-size: var(--fs-sm); font-weight: 500; color: var(--text-dim);
  white-space: nowrap; padding: var(--sp-2) 0;
  border-bottom: 2px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.ed-nav-link:hover, .ed-nav-link.is-active {
  color: var(--white); border-bottom-color: var(--cyan);
}

.ed-header-right { display: flex; align-items: center; gap: var(--sp-4); }

/* Language switcher */
.ed-lang { position: relative; }
.ed-lang-toggle {
  background: none; border: 1px solid var(--border); border-radius: var(--r);
  color: var(--text-dim); padding: 4px 10px; font-size: var(--fs-sm);
  cursor: pointer; display: flex; align-items: center; gap: 4px;
  font-family: var(--sans);
}
.ed-lang-dropdown {
  display: none; position: absolute; right: 0; top: 100%; margin-top: 4px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); min-width: 120px; list-style: none; padding: 4px 0;
  z-index: 200;
}
.ed-lang-dropdown a {
  display: block; padding: 6px 14px; font-size: var(--fs-sm); color: var(--text-dim);
}
.ed-lang-dropdown a:hover, .ed-lang-dropdown a.is-current { color: var(--white); background: var(--cyan-ghost); }
.ed-lang[data-open] .ed-lang-dropdown { display: block; }

/* Header CTA */
.ed-header-cta { font-size: var(--fs-sm); padding: 6px 16px; }

/* Mobile toggle — 2-line hamburger */
.ed-mobile-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 32px; height: 32px; position: relative; padding: 0;
}
.ed-mobile-toggle span {
  display: block; width: 20px; height: 2px; background: var(--white);
  position: absolute; left: 6px; transition: transform var(--t-base);
}
.ed-mobile-toggle span:first-child { top: 11px; }
.ed-mobile-toggle span:last-child { top: 19px; }

@media (max-width: 1023px) {
  .ed-nav { display: none; }
  .ed-header-cta { display: none; }
  .ed-mobile-toggle { display: block; }
}

/* ============================================================ MOBILE DRAWER — SLIDES FROM LEFT */
.ed-drawer {
  position: fixed; top: 0; left: 0; bottom: 0; width: 280px;
  background: var(--bg-card); z-index: 150;
  transform: translateX(-100%);
  transition: transform var(--t-slow);
  overflow-y: auto;
}
.ed-drawer[aria-hidden="false"] { transform: translateX(0); }

.ed-drawer-inner { padding: calc(var(--header-h) + var(--sp-6)) var(--sp-6) var(--sp-6); }
.ed-drawer-nav { display: flex; flex-direction: column; gap: var(--sp-1); }

.ed-drawer-link {
  display: block; padding: var(--sp-3) var(--sp-4);
  font-size: var(--fs-base); color: var(--text-dim);
  border-radius: var(--r);
}
.ed-drawer-link:hover, .ed-drawer-link.is-active { color: var(--white); background: var(--cyan-ghost); }

.ed-drawer-lang { margin-top: var(--sp-8); }
.ed-drawer-lang-label { font-size: var(--fs-xs); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; display: block; margin-bottom: var(--sp-2); }
.ed-drawer-lang-link {
  display: inline-block; padding: var(--sp-1) var(--sp-3);
  font-size: var(--fs-sm); color: var(--text-dim); border-radius: var(--r);
}
.ed-drawer-lang-link.is-active { color: var(--cyan); }

/* ============================================================ BUTTONS — EDITORIAL */
.ed-btn {
  display: inline-block; font-family: var(--sans);
  font-size: var(--fs-sm); font-weight: 600;
  padding: 10px 24px; border-radius: var(--r);
  text-decoration: none; cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
  border: 1px solid transparent;
}
.ed-btn-primary {
  background: var(--cyan); color: var(--bg); border-color: var(--cyan);
}
.ed-btn-primary:hover { background: var(--cyan-hover); border-color: var(--cyan-hover); }

.ed-btn-outline {
  background: transparent; color: var(--cyan); border-color: var(--cyan);
}
.ed-btn-outline:hover { background: var(--cyan-ghost); }

.ed-btn-sm { font-size: var(--fs-xs); padding: 6px 14px; }

/* ============================================================ HERO — EDITORIAL SPLIT */
.ed-hero {
  position: relative; overflow: hidden;
  padding: calc(var(--header-h) + 80px) 0 80px;
  min-height: 70vh; display: flex; align-items: center;
}
.ed-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, var(--bg) 0%, var(--bg-up) 100%);
  opacity: 0.5;
}
.ed-hero-bg[style*="background-image"] {
  background-size: cover; background-position: center;
  opacity: 0.2;
}
.ed-hero-accent-line {
  position: absolute; top: 0; bottom: 0; left: 60px;
  width: 1px; background: var(--cyan-dim); z-index: 1;
}
@media (max-width: 768px) { .ed-hero-accent-line { left: 20px; } }

.ed-hero-split {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-6);
  display: grid; grid-template-columns: 3fr 2fr; gap: var(--sp-16);
  align-items: center;
}
@media (max-width: 768px) {
  .ed-hero-split { grid-template-columns: 1fr; gap: var(--sp-8); }
}

.ed-hero-content { text-align: left; }
.ed-hero-tagline { font-size: var(--fs-lg); color: var(--text-dim); max-width: 480px; }
.ed-hero-ctas { display: flex; gap: var(--sp-4); margin-top: var(--sp-8); flex-wrap: wrap; }

.ed-hero-aside { text-align: left; }

/* Pull quote — large serif stat */
.ed-pullquote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; color: var(--cyan);
  line-height: 1.2; margin-bottom: var(--sp-8);
  border-left: 3px solid var(--cyan); padding-left: var(--sp-6);
}

/* Stats list — editorial definition list */
.ed-stats-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4);
}
.ed-stat { border-top: 1px solid var(--border); padding-top: var(--sp-3); }
.ed-stat dt { font-size: var(--fs-xs); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; }
.ed-stat dd { font-size: var(--fs-2xl); font-weight: 700; color: var(--white); }

/* ============================================================ ARTICLE SECTIONS */
.ed-article-section {
  padding: 80px 0;
}
.ed-section-alt {
  background: var(--bg-up);
}

/* Section title — serif, left-aligned, accent underline */
.ed-section-title {
  position: relative; padding-bottom: var(--sp-4); margin-bottom: var(--sp-8);
}
.ed-section-title::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 48px; height: 2px; background: var(--cyan);
}

.ed-section-body { color: var(--text); }
.ed-section-body h3 { margin-top: var(--sp-10); }
.ed-section-body table {
  width: 100%; border-collapse: collapse; margin: var(--sp-6) 0;
  font-size: var(--fs-sm);
}
.ed-section-body th {
  text-align: left; padding: var(--sp-3) var(--sp-4);
  border-bottom: 2px solid var(--border); color: var(--white);
  font-weight: 600; font-size: var(--fs-xs); text-transform: uppercase;
  letter-spacing: 0.06em;
}
.ed-section-body td {
  padding: var(--sp-3) var(--sp-4); border-bottom: 1px solid var(--border);
  color: var(--text-dim);
}
.ed-section-body tr:nth-child(even) td { background: rgba(255,255,255,0.015); }

/* Inline CTA block */
.ed-inline-cta {
  text-align: center; margin-top: var(--sp-10);
  padding: var(--sp-8) 0; border-top: 1px solid var(--border);
}

/* ============================================================ PAGE BANNER (subpages) */
.ed-page-banner {
  position: relative; overflow: hidden;
  padding: calc(var(--header-h) + 60px) 0 60px;
}
.ed-banner-content {
  position: relative; z-index: 2;
  max-width: 720px; margin: 0 auto; padding: 0 var(--sp-6);
}
.ed-breadcrumbs { font-size: var(--fs-xs); color: var(--text-muted); margin-bottom: var(--sp-4); }
.ed-breadcrumbs a { color: var(--text-dim); }
.ed-breadcrumbs a:hover { color: var(--cyan); }
.ed-banner-intro { font-size: var(--fs-lg); color: var(--text); margin: var(--sp-4) 0; }
.ed-banner-ctas { margin-top: var(--sp-6); }

/* ============================================================ GAME GALLERY — FEATURED + LIST */
.ed-game-gallery { margin: var(--sp-10) 0; }
.ed-gallery-heading {
  font-family: var(--sans); font-size: 1.1rem; font-weight: 600;
  color: var(--white); margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-2); border-bottom: 1px solid var(--border);
}

.ed-game-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4);
}
@media (max-width: 640px) { .ed-game-layout { grid-template-columns: 1fr; } }

/* Featured game — large card */
.ed-game-feature {
  display: block; position: relative; overflow: hidden;
  border-radius: var(--r); border: 1px solid var(--border);
  aspect-ratio: 16/10;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.ed-game-feature:hover { border-color: var(--cyan); transform: translateY(-2px); }
.ed-game-feature img { width: 100%; height: 100%; object-fit: cover; }

.ed-game-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: var(--sp-3) var(--sp-4);
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
}
.ed-game-caption strong { display: block; font-size: var(--fs-sm); color: var(--white); }
.ed-game-caption span { font-size: var(--fs-xs); color: var(--cyan); text-transform: uppercase; letter-spacing: 0.04em; }

/* Game list — smaller cards */
.ed-game-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3);
  align-content: start;
}
@media (max-width: 480px) { .ed-game-list { grid-template-columns: 1fr; } }

.ed-game-item {
  display: block; position: relative; overflow: hidden;
  border-radius: var(--r); border: 1px solid var(--border);
  aspect-ratio: 16/9;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.ed-game-item:hover { border-color: var(--cyan); transform: translateY(-1px); }
.ed-game-item img { width: 100%; height: 100%; object-fit: cover; }

.ed-game-placeholder {
  width: 100%; height: 100%; background: var(--bg-card);
}

/* ============================================================ FILTER LINKS (casino page) */
.ed-filter-links {
  display: flex; flex-wrap: wrap; gap: var(--sp-4) var(--sp-6);
  margin: var(--sp-6) 0; padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--border);
}
.ed-filter-link {
  font-size: var(--fs-sm); color: var(--text-dim); font-weight: 500;
  transition: color var(--t-fast);
}
.ed-filter-link:hover, .ed-filter-link.is-active { color: var(--cyan); }
.ed-filter-count { color: var(--text-muted); font-size: var(--fs-xs); }

/* ============================================================ PROMO ARTICLES */
.ed-promo-articles { display: flex; flex-direction: column; gap: var(--sp-6); margin: var(--sp-8) 0; }

.ed-promo-article {
  display: grid; grid-template-columns: 200px 1fr; gap: var(--sp-6);
  border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden; background: var(--bg-card);
  transition: border-color var(--t-fast);
}
.ed-promo-article:hover { border-color: var(--cyan); }
@media (max-width: 640px) { .ed-promo-article { grid-template-columns: 1fr; } }

.ed-promo-image img { width: 100%; height: 100%; object-fit: cover; min-height: 140px; }
.ed-promo-body { padding: var(--sp-5); }
.ed-promo-tag {
  font-size: var(--fs-xs); font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--cyan); margin-bottom: var(--sp-2);
  display: inline-block;
}

/* ============================================================ FAQ TOGGLES — card-based, +/- text */
.ed-faq-toggle {
  border: 1px solid var(--border); border-radius: var(--r);
  margin-bottom: var(--sp-3); overflow: hidden;
}
.ed-faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: var(--sp-5) var(--sp-6); cursor: pointer;
  background: none; border: none; width: 100%; text-align: left;
  font-family: var(--sans); font-size: var(--fs-base);
  font-weight: 600; color: var(--white);
}
.ed-faq-question:hover { background: var(--cyan-ghost); }
.ed-faq-marker {
  font-size: var(--fs-lg); color: var(--cyan); font-weight: 300;
  flex-shrink: 0; margin-left: var(--sp-4);
}
.ed-faq-answer {
  display: none; padding: 0 var(--sp-6) var(--sp-5);
  color: var(--text-dim); line-height: 1.7;
}
.ed-faq-toggle.is-open .ed-faq-answer { display: block; }
.ed-faq-toggle.is-open .ed-faq-marker::after { content: '\2212'; }
.ed-faq-marker::after { content: '+'; }

/* ============================================================ FOOTER — MINIMAL 2-COLUMN */
.ed-footer {
  padding: 60px 0 var(--sp-8);
  color: var(--text-dim); font-size: var(--fs-sm);
}
.ed-footer-border {
  max-width: var(--max-w); margin: 0 auto var(--sp-12);
  height: 1px; background: var(--border);
}

.ed-footer-grid {
  max-width: var(--max-w); margin: 0 auto; padding: 0 var(--sp-6);
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: var(--sp-16);
}
@media (max-width: 768px) { .ed-footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); } }

.ed-footer-logo img { height: 20px; width: auto; margin-bottom: var(--sp-5); }

.ed-footer-links { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-5); margin-bottom: var(--sp-6); }
.ed-footer-links a { color: var(--text-dim); font-size: var(--fs-sm); }
.ed-footer-links a:hover { color: var(--cyan); }

.ed-footer-rg { margin-bottom: var(--sp-5); }
.ed-footer-rg-label { font-size: var(--fs-xs); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; display: block; margin-bottom: var(--sp-2); }
.ed-footer-rg-list { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-5); }
.ed-footer-rg-list a { color: var(--text-dim); }
.ed-footer-rg-list a:hover { color: var(--cyan); }

.ed-footer-legal { font-size: var(--fs-xs); color: var(--text-muted); line-height: 1.6; margin-top: var(--sp-4); }
.ed-footer-legal-label { font-weight: 600; color: var(--text-dim); display: block; margin-bottom: var(--sp-1); }

.ed-footer-right h4 { font-size: var(--fs-xs); color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--sp-3); }
.ed-footer-section { margin-bottom: var(--sp-6); }

.ed-icon-stack {
  display: flex; flex-wrap: wrap; gap: var(--sp-2);
}
.ed-payment-icon img, .ed-provider-icon img {
  height: 28px; width: auto; opacity: 0.5;
  transition: opacity var(--t-fast);
}
.ed-payment-icon:hover img, .ed-provider-icon:hover img { opacity: 1; }
.ed-icon-label {
  font-size: var(--fs-xs); padding: 4px 8px;
  background: var(--bg-card); border-radius: var(--r);
  color: var(--text-dim);
}

.ed-footer-18 {
  max-width: var(--max-w); margin: var(--sp-8) auto 0; padding: 0 var(--sp-6);
  display: flex; align-items: center; gap: var(--sp-3);
  font-size: var(--fs-xs); color: var(--text-muted);
}
.ed-badge-18 {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: #c0392b; color: #fff; font-weight: 700; font-size: 11px;
  flex-shrink: 0;
}

.ed-footer-copyright {
  max-width: var(--max-w); margin: var(--sp-6) auto 0; padding: var(--sp-4) var(--sp-6) 0;
  text-align: center; font-size: var(--fs-xs); color: var(--text-muted);
  border-top: 1px solid var(--border);
}
.ed-footer-social { margin-left: var(--sp-4); }
.ed-footer-social a { color: var(--text-dim); margin: 0 var(--sp-2); }
.ed-footer-social a:hover { color: var(--cyan); }

/* ============================================================ RESPONSIVE */
@media (max-width: 640px) {
  .ed-article-section { padding: 48px 0; }
  .ed-hero { padding: calc(var(--header-h) + 48px) 0 48px; min-height: auto; }
  .ed-stats-list { grid-template-columns: 1fr; }
  .ed-pullquote { font-size: 1.5rem; }
}
