/* --- Trust & Authority palette (premium review platform) --- */
:root {
  /* Primary — Trust & Authority */
  --header-bg: #0F172A;
  --section-dark: #1E293B;
  /* Accent — CTA / Winning */
  --cta: #22C55E;
  --cta-hover: #16A34A;
  --accent-bg: #DCFCE7;
  /* Bonus / Highlights */
  --bonus: #FACC15;
  --bonus-active: #EAB308;
  /* Neutral UI */
  --bg-page: #F8FAFC;
  --bg-card: #FFFFFF;
  --border: #CBD5E1;
  --text-primary: #0F172A;
  --text-secondary: #64748B;
  /* Warning / Responsible gambling */
  --warning: #EF4444;
  --warning-bg: #FEE2E2;
  /* Semantic */
  --pro: #22C55E;
  --con: #EF4444;
  --radius: 8px;
  --radius-lg: 12px;
  --font-heading: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
}

/* --- Reset & base --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Top header: Dark Navy, clean authority --- */
.top-header {
  background: var(--header-bg);
  border-bottom: none;
  padding: 0.875rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.site-logo:hover { color: var(--cta); text-decoration: none; }
.logo-icon {
  color: var(--cta);
  font-size: 1rem;
}
.logo-text { white-space: nowrap; }

.main-nav { flex: 1; }
.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  justify-content: flex-end;
}
.nav-list a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.35rem 0;
}
.nav-list a:hover { color: #fff; text-decoration: none; }

.nav-toggle {
  display: none;
  width: 2.25rem;
  height: 2.25rem;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  border-radius: var(--radius);
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  align-items: center;
  justify-content: center;
}
.nav-toggle::before { content: '☰'; }
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .main-nav .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--header-bg);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    box-shadow: var(--shadow-md);
  }
  .main-nav.is-open .nav-list { display: flex; }
  .nav-list a { padding: 0.6rem 0; color: #fff; }
}

/* --- Hero: same dark navy, clear hierarchy --- */
.site-header {
  background: var(--header-bg);
  padding: 2.5rem 0 3rem;
}
.site-header .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.site-title {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  margin: 0;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.3;
}
.hero-meta {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  font-weight: 400;
}
.hero-meta a { color: var(--cta); text-decoration: none; }
.hero-meta a:hover { text-decoration: underline; }

/* --- Main content --- */
.main-content { padding: 2rem 0 4rem; }

.section {
  margin-bottom: 3.5rem;
}
.section-title {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1.25rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.subsection-title {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
  color: var(--text-primary);
}

.intro .lead,
.intro .intro-text {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.7;
}

/* Intro text: 2.5 rows visible by default, full text on button click */
.intro-toggle-wrap {
  max-height: 4.46em;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
}
.intro-toggle-wrap .intro-text { line-height: 1.7; }
.intro-toggle-wrap.is-open {
  max-height: 80em;
  transition: max-height 0.4s ease-in;
}
.intro-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  padding: 0.5rem 1rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--cta);
  background: transparent;
  border: 2px solid var(--cta);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.intro-toggle-btn:hover {
  background: var(--cta);
  color: #fff;
}
.intro-toggle-btn::after {
  content: '▼';
  font-size: 0.7em;
  opacity: 0.8;
  transition: transform 0.25s;
}
.intro-toggle-wrap.is-open + .intro-toggle-btn::after {
  transform: rotate(-180deg);
}

/* ========== Casino Ranking Cards (cazinouri.de style) ========== */
.casino-ranking-section {
  margin: 3rem 0 4rem;
  padding: 0;
}
.ranking-section-title {
  font-family: var(--font-body);
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}
.ranking-controls {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.ranking-sort-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
}
.ranking-sort-select {
  padding: 0.4rem 0.75rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  color: var(--text-primary);
  cursor: pointer;
}
.ranking-cards-table-wrap {
  width: 100%;
}
.ranking-table-header.rank-table-modern {
  display: flex;
  align-items: center;
  background: #f1f5f9;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.875rem 1rem;
  border: 1px solid var(--border);
  border-bottom: 2px solid var(--border);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  white-space: nowrap;
}
.ranking-table-header.rank-table-modern .col-rank { width: 4rem; min-width: 4rem; text-align: center; flex-shrink: 0; }
.ranking-table-header.rank-table-modern .col-casino { min-width: 10rem; flex: 1; }
.ranking-table-header.rank-table-modern .col-bonus { min-width: 11rem; flex-shrink: 0; }
.ranking-table-header.rank-table-modern .col-min { width: 6rem; min-width: 6rem; text-align: center; flex-shrink: 0; }
.ranking-table-header.rank-table-modern .col-czk { width: 4rem; min-width: 4rem; text-align: center; flex-shrink: 0; }
.ranking-table-header.rank-table-modern .col-games { width: 6rem; min-width: 6rem; text-align: center; flex-shrink: 0; }
.ranking-table-header.rank-table-modern .col-licence { width: 6rem; min-width: 6rem; text-align: center; flex-shrink: 0; }

.casino-cards-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@keyframes ranking-card-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.ranking-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: ranking-card-in 0.4s ease-out backwards;
}
.ranking-card:nth-child(1) { animation-delay: 0.02s; }
.ranking-card:nth-child(2) { animation-delay: 0.05s; }
.ranking-card:nth-child(3) { animation-delay: 0.08s; }
.ranking-card:nth-child(4) { animation-delay: 0.11s; }
.ranking-card:nth-child(5) { animation-delay: 0.14s; }
.ranking-card:nth-child(n+6) { animation-delay: 0.17s; }
@media (prefers-reduced-motion: reduce) {
  .ranking-card { animation: none; }
}
.ranking-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.ranking-card-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.ranking-card-rank {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--section-dark);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.ranking-card-logo {
  flex-shrink: 0;
}
.ranking-card-logo img {
  width: 100px;
  height: 50px;
  object-fit: contain;
  border-radius: 6px;
  background: #f8fafc;
  border: 1px solid var(--border);
}
.ranking-card-body {
  flex: 1;
  min-width: 0;
}
.ranking-card-badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  background: var(--bonus);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-bottom: 0.35rem;
}
.ranking-card-name {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: var(--text-primary);
}
.ranking-card-bonus {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cta);
  margin: 0;
  line-height: 1.3;
}
.ranking-card-features {
  margin: 0;
  padding: 0 0 0 1.25rem;
  list-style: disc;
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  flex-shrink: 0;
  min-width: 0;
}
.ranking-card-features li {
  margin-bottom: 0.25rem;
}
.ranking-card-features li:last-child {
  margin-bottom: 0;
}
.ranking-card-rating {
  font-size: 0.875rem;
  color: var(--bonus-active);
  letter-spacing: 0.05em;
  padding: 0.35rem 0.5rem;
  background: var(--bg-page);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  flex-shrink: 0;
}
.ranking-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  flex-shrink: 0;
}
.ranking-card-rating .star-empty { color: var(--border); opacity: 0.7; }
.ranking-card-rating .star-half { opacity: 0.85; }
.ranking-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  background: var(--cta);
  color: #fff;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.ranking-card-cta:hover {
  background: var(--cta-hover);
  color: #fff;
  text-decoration: none;
}
@media (max-width: 768px) {
  .ranking-card {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
  }
  .ranking-card-left { order: 1; justify-content: flex-start; }
  .ranking-card-body { order: 2; }
  .ranking-card-features { order: 3; }
  .ranking-card-rating { order: 4; }
  .ranking-card-right {
    order: 5;
    align-items: stretch;
    flex-direction: column;
    gap: 0.5rem;
  }
  .ranking-card-cta {
    width: 100%;
    padding: 0.75rem 1rem;
  }
}

/* --- Callout (quick tip) --- */
.callout {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.55;
}
.callout-tip {
  background: var(--accent-bg);
  border-left: 4px solid var(--cta);
  color: var(--text-primary);
}
.callout-tip strong { color: var(--cta-hover); }

/* --- Tables --- */
.casino-table-wrap,
.table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow);
}

.casino-rank-table,
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}
.casino-rank-table th,
.casino-rank-table td,
.data-table th,
.data-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.casino-rank-table thead th,
.data-table thead th {
  background: var(--section-dark);
  color: #fff;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
}
.casino-rank-table tbody tr:hover,
.data-table tbody tr:hover {
  background: var(--accent-bg);
}
.casino-rank-table tbody tr:last-child td,
.data-table tbody tr:last-child td {
  border-bottom: none;
}

/* Top 10 table — cazinouri.de style: clean, wide, labelled columns */
.rank-table-modern {
  font-size: 0.9375rem;
}
.rank-table-modern thead th {
  background: #f1f5f9;
  color: var(--text-primary);
  font-weight: 600;
  padding: 0.875rem 1rem;
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}
.rank-table-modern tbody td {
  padding: 0.875rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.rank-table-modern tbody tr:hover {
  background: #f8fafc;
}
.rank-table-modern .col-rank { width: 4rem; text-align: center; }
.rank-table-modern .col-casino { min-width: 10rem; }
.rank-table-modern .col-bonus { min-width: 11rem; }
.rank-table-modern .col-min { width: 6rem; text-align: center; }
.rank-table-modern .col-czk { width: 4rem; text-align: center; }
.rank-table-modern .col-games { width: 6rem; text-align: center; }
.rank-table-modern .col-licence { width: 6rem; text-align: center; }
.rank-table-modern tbody td:first-child {
  font-weight: 700;
  color: var(--text-secondary);
}

.bonus-table .data-table th { white-space: nowrap; }
@media (max-width: 640px) {
  .data-table th, .data-table td { padding: 0.5rem 0.6rem; font-size: 0.8125rem; }
}

/* --- Casino cards (cazinouri.de style) --- */
.casino-review {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
/* Casino card top row — table-like: rank | logo+name/bonus | features | button */
.casino-card-row {
  display: flex;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 0.875rem 1rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.casino-card-row .casino-rank {
  flex-shrink: 0;
}
.casino-card-logo-cell {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  flex: 1;
}
.casino-card-row .casino-card-head {
  flex: 1;
  min-width: 0;
}
.casino-rank {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--section-dark);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  border-radius: 50%;
}
.casino-card .casino-logo img {
  width: 100px;
  height: 50px;
  object-fit: contain;
  border-radius: 6px;
  background: #fff;
  border: 1px solid var(--border);
}
.casino-card-head { flex: 1; min-width: 0; }
.casino-name {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
}
.casino-bonus-line {
  margin: 0.25rem 0 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--cta);
}
.casino-card-row .casino-features-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.875rem;
  color: var(--text-secondary);
  flex: 1;
  min-width: 0;
}
.casino-features-inline li::before {
  content: '✓ ';
  color: var(--cta);
  font-weight: 700;
}
.casino-card-row .casino-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0;
  flex-shrink: 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-primary {
  background: var(--cta);
  color: #fff;
  border: none;
}
.btn-primary:hover { background: var(--cta-hover); color: #fff; text-decoration: none; }
.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 2px solid var(--border);
}
.btn-secondary:hover { border-color: var(--cta); color: var(--cta); text-decoration: none; }
.casino-review-body {
  padding: 1.5rem 1.5rem 1.75rem;
  border-top: 1px solid var(--border);
  margin-top: 0;
  background: var(--bg-card);
}
.casino-review-body .casino-review-header { display: none; }
.casino-review-body p:first-child { margin-top: 0; }
.casino-review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.casino-review:not(.casino-card) .casino-logo img,
.casino-short .casino-logo img {
  width: 120px;
  height: 60px;
  object-fit: contain;
  border-radius: var(--radius);
  background: #f1f5f9;
}
.casino-review p,
.casino-short p {
  margin: 0 0 1rem;
  color: var(--text-secondary);
}
.casino-review p:last-of-type,
.casino-short p:last-of-type { margin-bottom: 0; }

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.pros strong { color: var(--cta); }
.cons strong { color: var(--warning); }
.pros-cons ul {
  margin: 0.35rem 0 0;
  padding-left: 1.25rem;
}
.pros-cons li {
  margin-bottom: 0.35rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}
@media (max-width: 560px) {
  .pros-cons { grid-template-columns: 1fr; }
}

.casino-short-list { margin-top: 2rem; }
.casino-short {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  border-left: 3px solid var(--border);
}
.casino-short .casino-name {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

/* --- Lists --- */
.bullet-list {
  margin: 0.75rem 0 1.25rem;
  padding-left: 1.5rem;
  color: var(--text-secondary);
}
.bullet-list li { margin-bottom: 0.5rem; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 1.5rem 0;
}
@media (max-width: 640px) {
  .two-col { grid-template-columns: 1fr; }
}
.note {
  margin: 1.25rem 0 0;
  padding: 1rem 1.25rem;
  background: var(--accent-bg);
  border-radius: var(--radius);
  border-left: 3px solid var(--cta);
  color: var(--text-primary);
  font-size: 0.9375rem;
}

/* --- Casino feature cards (higher limits) --- */
.casino-features-list {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}
.casino-feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow);
}
.casino-feature-card h4 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--cta);
}
.casino-feature-card ul {
  margin: 0;
  padding-left: 1.25rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}
.casino-feature-card li { margin-bottom: 0.35rem; }

/* --- FAQ --- */
.faq-section { margin-bottom: 2rem; }
.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.faq-list dt {
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 1.25rem;
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  border-left: 3px solid var(--cta);
  box-shadow: var(--shadow);
}
.faq-list dt:first-child { margin-top: 0; }
.faq-list dd {
  margin: 0.5rem 0 0 1rem;
  padding: 0 0 0 1rem;
  color: var(--text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  border-left: 2px solid var(--border);
}

/* --- Footer: authority dark --- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 0;
  margin-top: 3rem;
  background: var(--section-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  padding: 2rem 1.25rem;
  max-width: 980px;
  margin: 0 auto;
}
.footer-brand .logo-text {
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
}
.footer-brand p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.footer-links h4,
.footer-legal h4 {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
}
.footer-links ul,
.footer-legal ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-links a,
.footer-legal a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  text-decoration: none;
}
.footer-links a:hover,
.footer-legal a:hover { color: var(--cta); text-decoration: none; }
.footer-links li,
.footer-legal li { margin-bottom: 0.4rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0;
}
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
}
.footer-meta {
  margin: 0 !important;
  font-size: 0.8125rem !important;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* --- Links --- */
a {
  color: var(--cta);
  text-decoration: none;
}
a:hover { text-decoration: underline; }
