/*
Theme Name: Viron Kasinot
Theme URI: https://viron-kasinot.io/
Author: Kaljas Media OÜ
Description: Custom lightweight theme for viron-kasinot.io. Navy shell + amber CTA editorial design.
Version: 1.0
Requires at least: 6.0
Requires PHP: 8.0
Text Domain: viron-kasinot
*/

/* viron-kasinot.io — design system
   Navy shell + amber CTA. Single-column editorial with a wide rail for toplists. */

:root {
  /* shell */
  --navy-900: #081726;
  --navy-800: #0d2437;
  --navy-700: #143349;
  --navy-600: #1d4562;
  --blue-500: #0f6fb8;
  --blue-400: #2f8fd6;

  /* CTA */
  --amber-500: #f5a524;
  --amber-400: #ffbb3d;
  --amber-600: #d8860a;
  --amber-ink: #26190a;

  /* surfaces */
  --bg: #f4f6f9;
  --card: #ffffff;
  --card-alt: #f8fafc;
  --line: #e2e8f0;
  --line-strong: #cbd5e1;

  /* ink */
  --ink: #12202e;
  --ink-soft: #46586b;
  --ink-faint: #6b7d90;
  --on-navy: #eaf2f8;
  --on-navy-soft: #a8c0d2;

  /* semantic */
  --pos: #16855a;
  --pos-bg: #e6f6ee;
  --neg: #c0392b;
  --neg-bg: #fdecea;
  --warn: #9a6b00;
  --warn-bg: #fff6e0;

  /* metrics */
  --w-text: 720px;
  --w-wide: 1140px;
  --r: 10px;
  --r-lg: 16px;
  --shadow-1: 0 1px 2px rgba(8, 23, 38, .06), 0 2px 8px rgba(8, 23, 38, .05);
  --shadow-2: 0 4px 14px rgba(8, 23, 38, .09), 0 12px 32px rgba(8, 23, 38, .07);
  --shadow-cta: 0 2px 0 var(--amber-600), 0 6px 18px rgba(216, 134, 10, .35);
  --header-h: 66px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.68;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; height: auto; }

/* ---------------------------------------------------------------- layout */

.wrap { width: 100%; max-width: var(--w-text); margin-inline: auto; padding-inline: 18px; }
.wrap-wide { width: 100%; max-width: var(--w-wide); margin-inline: auto; padding-inline: 18px; }

main { padding-bottom: 8px; }
main section { scroll-margin-top: calc(var(--header-h) + 14px); }

/* ---------------------------------------------------------------- type */

h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.017em;
  color: var(--navy-900);
  margin: 0 0 .5em;
  text-wrap: balance;
}

h1 { font-size: clamp(1.95rem, 5.2vw, 2.85rem); letter-spacing: -.025em; }
h2 { font-size: clamp(1.5rem, 3.6vw, 1.95rem); margin-top: 2.4em; }
h3 { font-size: clamp(1.16rem, 2.5vw, 1.3rem); margin-top: 1.9em; margin-bottom: .4em; }
h4 { font-size: 1.04rem; margin-top: 1.5em; margin-bottom: .3em; }

h2 + h3, h3 + h4 { margin-top: .9em; }

p { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

a { color: var(--blue-500); font-weight: 600; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 2px; }

strong { font-weight: 700; color: var(--navy-800); }

ul, ol { margin: 0 0 1.15em; padding-left: 1.25em; }
li { margin-bottom: .45em; }
li::marker { color: var(--blue-500); }

.lead { font-size: 1.12rem; color: var(--ink-soft); }

.small { font-size: .9rem; color: var(--ink-faint); }

hr { border: 0; border-top: 1px solid var(--line); margin: 2.6em 0; }

/* ---------------------------------------------------------------- header */

.site-head {
  position: sticky; top: 0; z-index: 60;
  height: var(--header-h);
  background: var(--navy-900);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
}
.site-head .bar {
  max-width: var(--w-wide); margin-inline: auto; padding-inline: 18px;
  height: var(--header-h); display: flex; align-items: center; gap: 16px;
}
.site-head .brand { display: flex; align-items: center; margin-right: auto; }
.site-head .brand img { height: 32px; width: auto; display: block; }

.head-nav { display: flex; align-items: center; gap: 22px; }
.head-nav a {
  color: var(--on-navy-soft); font-size: .93rem; font-weight: 600;
  text-decoration: none; white-space: nowrap;
}
.head-nav a:hover { color: #fff; text-decoration: none; }

@media (max-width: 860px) {
  .head-nav { display: none; }
}

/* ---------------------------------------------------------------- buttons */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: inherit; font-weight: 800; font-size: 1rem; line-height: 1;
  padding: 14px 22px; border-radius: var(--r); border: 0;
  text-decoration: none; cursor: pointer; text-align: center;
  transition: transform .12s ease, box-shadow .12s ease, background-color .12s ease;
}
.btn:hover { text-decoration: none; }

.btn-cta {
  background: linear-gradient(180deg, var(--amber-400), var(--amber-500));
  color: var(--amber-ink);
  box-shadow: var(--shadow-cta);
}
.btn-cta:hover { transform: translateY(-1px); background: linear-gradient(180deg, #ffc756, var(--amber-400)); }
.btn-cta:active { transform: translateY(1px); box-shadow: 0 1px 0 var(--amber-600); }

.btn-ghost {
  background: transparent; color: var(--navy-700);
  border: 1.5px solid var(--line-strong); font-weight: 700;
}
.btn-ghost:hover { border-color: var(--blue-500); color: var(--blue-500); }

.btn-sm { padding: 9px 15px; font-size: .88rem; border-radius: 8px; }
.btn-block { display: flex; width: 100%; }

.head-cta { padding: 10px 16px; font-size: .9rem; }

/* ---------------------------------------------------------------- hero */

.hero {
  background:
    radial-gradient(1100px 420px at 78% -12%, rgba(47, 143, 214, .30), transparent 62%),
    linear-gradient(170deg, var(--navy-800) 0%, var(--navy-900) 72%);
  color: var(--on-navy);
  padding: 44px 0 40px;
  border-bottom: 3px solid var(--amber-500);
}
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero p { color: var(--on-navy-soft); }
.hero .lead { color: #d3e3ef; font-size: 1.14rem; }
.hero p a { color: var(--amber-400); }

.hero-grid {
  max-width: var(--w-wide); margin-inline: auto; padding-inline: 18px;
  display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 38px; align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 26px; }
  .hero-art { order: -1; }
}

.byline {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px;
  margin: 0 0 18px; font-size: .88rem; color: var(--on-navy-soft);
}
.byline .who { display: flex; align-items: center; gap: 8px; }
.byline img { width: 30px; height: 30px; border-radius: 50%; display: block; }
.byline a { color: #fff; font-weight: 700; }
.byline .sep { color: rgba(255, 255, 255, .25); }
@media (max-width: 620px) {
  .byline { flex-direction: column; align-items: flex-start; gap: 8px; }
  .byline .sep { display: none; }
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero-actions .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .32); }
.hero-actions .btn-ghost:hover { border-color: #fff; color: #fff; }

.trustbar {
  display: flex; flex-wrap: wrap; gap: 8px 10px; margin-top: 22px;
  padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, .12);
}
.trustbar span {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .13);
  color: #dcecf6; border-radius: 999px; padding: 6px 13px;
  font-size: .82rem; font-weight: 600;
}
.trustbar svg { flex: none; }

/* ---------------------------------------------------------------- podium (top-3 above fold) */

.podium { margin: -26px auto 0; position: relative; z-index: 2; }
.podium-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
@media (max-width: 800px) { .podium-grid { grid-template-columns: 1fr; } }

.podium-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-2); padding: 18px 16px 16px; text-align: center;
  display: flex; flex-direction: column; gap: 10px;
}
.podium-card.is-top { border-color: var(--amber-500); border-width: 2px; }
.podium-rank {
  align-self: center; background: var(--navy-800); color: #fff;
  font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 999px;
}
.podium-card.is-top .podium-rank { background: var(--amber-500); color: var(--amber-ink); }
.podium-logo {
  height: 46px; display: flex; align-items: center; justify-content: center;
  background: var(--card-alt); border-radius: 8px; border: 1px dashed var(--line-strong);
  color: var(--ink-faint); font-size: .8rem; font-weight: 700;
}
.podium-offer { font-weight: 800; color: var(--navy-900); font-size: 1.02rem; line-height: 1.35; }
.podium-meta { font-size: .84rem; color: var(--ink-faint); margin-top: -4px; }

/* ---------------------------------------------------------------- toplist */

.toplist { display: flex; flex-direction: column; gap: 14px; margin: 26px 0 8px; }

.tl-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  box-shadow: var(--shadow-1); padding: 18px;
  display: grid; gap: 16px;
  grid-template-columns: 54px minmax(140px, 1fr) minmax(155px, 1fr) minmax(165px, 1.15fr) minmax(175px, .95fr);
  align-items: center; position: relative;
  transition: box-shadow .15s ease, border-color .15s ease;
}
.tl-card:hover { box-shadow: var(--shadow-2); border-color: var(--line-strong); }
.tl-card.is-top { border: 2px solid var(--amber-500); padding-top: 30px; }

.tl-ribbon {
  position: absolute; top: -1px; left: -1px;
  background: var(--amber-500); color: var(--amber-ink);
  font-size: .71rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 13px; border-radius: 14px 0 12px 0;
}

.tl-rank {
  width: 54px; height: 54px; border-radius: 12px;
  background: var(--navy-800); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 800;
}
.tl-card.is-top .tl-rank { background: linear-gradient(180deg, var(--amber-400), var(--amber-500)); color: var(--amber-ink); }

.tl-brand { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.tl-logo {
  height: 52px; border-radius: 8px; background: var(--card-alt);
  border: 1px dashed var(--line-strong); color: var(--ink-faint);
  display: flex; align-items: center; justify-content: center;
  font-size: .78rem; font-weight: 700; text-align: center; padding: 4px;
}
.tl-name { font-weight: 800; color: var(--navy-900); font-size: 1.06rem; }
.tl-score { display: flex; align-items: center; gap: 7px; font-size: .84rem; color: var(--ink-faint); }
.tl-score b { color: var(--navy-900); font-size: 1rem; }
.tl-stars { color: var(--amber-500); letter-spacing: .5px; }

.tl-facts { margin: 0; font-size: .88rem; }
.tl-facts div { display: flex; justify-content: space-between; gap: 10px; padding: 3px 0; border-bottom: 1px dotted var(--line); }
.tl-facts div:last-child { border-bottom: 0; }
.tl-facts dt { color: var(--ink-faint); }
.tl-facts dd { margin: 0; font-weight: 700; color: var(--navy-800); text-align: right; }

.tl-perks { list-style: none; margin: 0; padding: 0; font-size: .89rem; }
.tl-perks li { position: relative; padding-left: 25px; margin-bottom: .35em; line-height: 1.45; }
.tl-perks li::before {
  content: "✓"; position: absolute; left: 0; top: 2px; color: var(--pos); font-weight: 800;
  background: var(--pos-bg); width: 18px; height: 18px; border-radius: 50%;
  display: grid; place-items: center; font-size: .72rem;
}

.tl-act { display: flex; flex-direction: column; gap: 8px; }
.tl-act .tl-terms { font-size: .73rem; color: var(--ink-faint); text-align: center; line-height: 1.35; }

@media (max-width: 1040px) {
  .tl-card { grid-template-columns: 54px minmax(140px, 1fr) minmax(150px, 1fr); row-gap: 14px; }
  .tl-perks { grid-column: 2 / -1; }
  .tl-act { grid-column: 1 / -1; }
  .tl-act .btn-cta { justify-self: stretch; }
}
@media (max-width: 680px) {
  .tl-card { grid-template-columns: 46px 1fr; row-gap: 14px; }
  .tl-rank { width: 46px; height: 46px; font-size: 1.2rem; }
  .tl-facts, .tl-perks, .tl-act { grid-column: 1 / -1; }
}

/* ---------------------------------------------------------------- toplist placeholder flag */

.toplist-slot {
  border: 2px dashed var(--amber-500);
  background: repeating-linear-gradient(135deg, #fffaf0, #fffaf0 12px, #fff4de 12px, #fff4de 24px);
  border-radius: var(--r-lg);
  padding: 26px 20px; text-align: center; margin: 24px 0;
}
.toplist-slot .flag {
  display: inline-block; background: var(--amber-500); color: var(--amber-ink);
  font-size: .74rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 999px; margin-bottom: 10px;
}
.toplist-slot p { margin: 0; color: var(--warn); font-weight: 600; font-size: .93rem; }
.toplist-slot code { background: rgba(0, 0, 0, .06); padding: 1px 6px; border-radius: 4px; font-size: .88em; }

/* ---------------------------------------------------------------- inline CTA */

.cta-band {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  color: #fff; border-radius: var(--r-lg); padding: 24px 26px;
  margin: 2.4em 0; display: flex; flex-wrap: wrap; gap: 18px;
  align-items: center; justify-content: space-between;
  border-left: 5px solid var(--amber-500);
}
.cta-band h3 { color: #fff; margin: 0 0 .25em; font-size: 1.18rem; }
.cta-band p { color: var(--on-navy-soft); margin: 0; font-size: .95rem; max-width: 48ch; }
.cta-band .btn { flex: none; }

/* ---------------------------------------------------------------- TOC */

.toc {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 20px 22px; margin: 30px 0; box-shadow: var(--shadow-1);
}
.toc h2 { margin: 0 0 .6em; font-size: 1.1rem; }
.toc ol { margin: 0; padding-left: 1.2em; columns: 2; column-gap: 28px; font-size: .92rem; }
.toc li { margin-bottom: .34em; break-inside: avoid; }
.toc a { color: var(--ink-soft); font-weight: 500; }
.toc a:hover { color: var(--blue-500); }
@media (max-width: 640px) { .toc ol { columns: 1; } }

/* ---------------------------------------------------------------- content blocks */

.note {
  background: var(--card); border: 1px solid var(--line); border-left: 4px solid var(--blue-500);
  border-radius: var(--r); padding: 16px 20px; margin: 1.6em 0;
}
.note.warn { background: var(--warn-bg); border-color: #f3e0b5; border-left-color: var(--amber-500); }
.note.warn strong { color: var(--warn); }
.note p:last-child { margin-bottom: 0; }
.note h3, .note h4 { margin-top: 0; }

.keyfacts {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 20px 24px; margin: 1.8em 0; box-shadow: var(--shadow-1);
}
.keyfacts ul { list-style: none; padding: 0; margin: 0; }
.keyfacts li { position: relative; padding-left: 31px; margin-bottom: .55em; }
.keyfacts li::before {
  content: "✓"; position: absolute; left: 0; top: 2px; color: var(--pos); background: var(--pos-bg);
  width: 21px; height: 21px; border-radius: 50%; display: grid; place-items: center;
  font-size: .78rem; font-weight: 800;
}

figure { margin: 1.9em 0; }
figure img, figure svg { border-radius: var(--r); display: block; width: 100%; }
figcaption { font-size: .85rem; color: var(--ink-faint); margin-top: .6em; text-align: center; }

.table-wrap { overflow-x: auto; margin: 1.7em 0; -webkit-overflow-scrolling: touch; }
table { width: 100%; border-collapse: collapse; font-size: .93rem; background: var(--card); border-radius: var(--r); overflow: hidden; }
th, td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { background: var(--navy-800); color: #fff; font-weight: 700; font-size: .88rem; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) { background: var(--card-alt); }

.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 1.8em 0; }
@media (max-width: 680px) { .proscons { grid-template-columns: 1fr; } }
.proscons > div { border-radius: var(--r-lg); padding: 18px 20px; border: 1px solid var(--line); }
.proscons .pro { background: var(--pos-bg); border-color: #bfe6d3; }
.proscons .con { background: var(--neg-bg); border-color: #f5cdc7; }
.proscons h3 { margin-top: 0; font-size: 1.05rem; }
.proscons .pro h3 { color: var(--pos); }
.proscons .con h3 { color: var(--neg); }
.proscons ul { list-style: none; padding: 0; margin: 0; font-size: .93rem; }
.proscons li { position: relative; padding-left: 20px; margin-bottom: .5em; }
.proscons .pro li::before { content: "+"; position: absolute; left: 0; top: 0; color: var(--pos); font-weight: 800; }
.proscons .con li::before { content: "−"; position: absolute; left: 0; top: 0; color: var(--neg); font-weight: 800; }

.steps { counter-reset: s; list-style: none; padding: 0; margin: 1.8em 0; }
.steps > li {
  counter-increment: s; position: relative; padding: 0 0 0 52px; margin-bottom: 1.5em;
}
.steps > li::before {
  content: counter(s); position: absolute; left: 0; top: 0;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--navy-800); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.05rem;
}
.steps h3 { margin-top: 0; margin-bottom: .3em; }

/* author card */
.authorcard {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 18px 20px; margin: 1.4em 0; box-shadow: var(--shadow-1);
}
.authorcard img { width: 64px; height: 64px; border-radius: 50%; flex: none; }
.authorcard > div { min-width: 0; }
.authorcard h3 { margin: 0 0 .15em; font-size: 1.05rem; }
.authorcard .role { color: var(--blue-500); font-weight: 700; font-size: .87rem; margin-bottom: .5em; }
.authorcard p { margin: 0; font-size: .93rem; color: var(--ink-soft); }

/* review test table */
.testcard {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 22px 24px; margin: 1.8em 0; box-shadow: var(--shadow-1);
  border-top: 4px solid var(--blue-500);
}
.testcard h3 { margin-top: 0; }
.testcard .verdict { font-weight: 700; color: var(--navy-900); }

/* FAQ */
.faq { margin: 1.6em 0; }
.faq details {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  margin-bottom: 10px; overflow: hidden;
}
.faq details[open] { border-color: var(--line-strong); box-shadow: var(--shadow-1); }
.faq summary {
  cursor: pointer; padding: 15px 44px 15px 18px; font-weight: 700; color: var(--navy-900);
  position: relative; list-style: none; font-size: 1rem; line-height: 1.45;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 18px; top: 50%;
  width: 9px; height: 9px; border-right: 2.5px solid var(--blue-500); border-bottom: 2.5px solid var(--blue-500);
  transform: translateY(-70%) rotate(45deg); transition: transform .18s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq .answer { padding: 0 18px 16px; color: var(--ink-soft); font-size: .96rem; }
.faq .answer p:last-child { margin-bottom: 0; }

/* ---------------------------------------------------------------- sticky mobile CTA */

.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  background: rgba(8, 23, 38, .97); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 9px 14px calc(9px + env(safe-area-inset-bottom));
  display: none; align-items: center; gap: 12px;
}
.sticky-cta .txt { color: #fff; font-size: .82rem; line-height: 1.3; min-width: 0; }
.sticky-cta .txt b { display: block; font-size: .93rem; }
.sticky-cta .txt span { color: var(--on-navy-soft); }
.sticky-cta .btn { flex: none; margin-left: auto; }
@media (max-width: 860px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 68px; }
}

/* ---------------------------------------------------------------- breadcrumbs */

.crumbs { font-size: .85rem; color: var(--ink-faint); padding: 14px 0 0; }
.crumbs a { color: var(--ink-faint); font-weight: 500; }
.crumbs a:hover { color: var(--blue-500); }
.crumbs span { margin: 0 6px; opacity: .55; }

/* ---------------------------------------------------------------- page header (inner pages) */

.page-head {
  background: linear-gradient(170deg, var(--navy-800), var(--navy-900));
  color: #fff; padding: 34px 0 32px; border-bottom: 3px solid var(--amber-500);
}
.page-head h1 { color: #fff; margin-bottom: .3em; }
.page-head p { color: var(--on-navy-soft); margin: 0; }
.page-head .crumbs, .page-head .crumbs a { color: var(--on-navy-soft); }
.page-head .crumbs { padding: 0 0 14px; }
.page-head .updated { font-size: .86rem; color: var(--on-navy-soft); margin-top: 12px; }

/* legal page rhythm */
.legal h2 { font-size: 1.4rem; margin-top: 2.1em; padding-top: .8em; border-top: 1px solid var(--line); }
.legal h2:first-of-type { border-top: 0; padding-top: 0; }
.legal h3 { font-size: 1.08rem; }
.legal ol > li { margin-bottom: .6em; }

/* ---------------------------------------------------------------- footer */

.site-foot {
  background: var(--navy-900); color: var(--on-navy-soft);
  font-size: .9rem; padding: 40px 0 26px; margin-top: 56px;
}
.site-foot a { color: var(--on-navy-soft); font-weight: 500; }
.site-foot a:hover { color: #fff; }
.foot-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 30px 26px;
}
.site-foot h3 { color: #fff; font-size: .95rem; margin: 0 0 .8em; letter-spacing: .01em; }
.site-foot ul { list-style: none; padding: 0; margin: 0; }
.site-foot li { margin-bottom: .45em; }
.site-foot .brandcol img { height: 30px; margin-bottom: 14px; }
.site-foot .addr { font-style: normal; line-height: 1.7; }

.foot-bar {
  border-top: 1px solid rgba(255, 255, 255, .12); margin-top: 32px; padding-top: 20px;
  display: flex; flex-wrap: wrap; gap: 14px; align-items: center; justify-content: space-between;
  font-size: .84rem;
}
.age-badge {
  display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%;
  border: 2px solid var(--amber-500); color: var(--amber-400); font-weight: 800; font-size: .82rem;
  flex: none;
}
.foot-resp { display: flex; align-items: center; gap: 12px; }

/* ---------------------------------------------------------------- utils */

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.center { text-align: center; }
.mt0 { margin-top: 0; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
