/* Fortunica Casino – navy + magenta landing */
:root {
  --navy: #0f172a;
  --navy-mid: #1e3a5f;
  --pink: #e11d48;
  --pink-dark: #be123c;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #e2e8f0;
  --surface: #f8fafc;
  --hero-grad-1: #ffffff;
  --hero-grad-2: #e8f0ff;
  --maxw: 1120px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 10px;
  --radius-pill: 999px;
  --shadow: 0 10px 40px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: #fff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }
a { color: var(--navy-mid); }
a:hover { color: var(--pink); }

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 100;
  padding: 0.5rem 1rem;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
}
.skip-link:focus { left: 0.5rem; top: 0.5rem; }

.container {
  width: min(100% - 2.5rem, var(--maxw));
  margin-inline: auto;
}

/* Header */
.site-header {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  color: #fff;
  text-decoration: none;
  max-width: min(14rem, 55vw);
}
.logo__text {
  font-weight: 800;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.logo__img {
  display: block;
  width: auto;
  height: auto;
  max-height: 2.1rem;
  max-width: 100%;
  object-fit: contain;
  object-position: left center;
  /* Remove dark matte from raster logo on dark header/footer */
  mix-blend-mode: screen;
}
.logo__img--footer {
  max-height: 2.35rem;
}
.logo--light { color: #fff; }
@media (min-width: 600px) {
  .logo__img {
    max-height: 2.35rem;
  }
  .logo__img--footer {
    max-height: 2.6rem;
  }
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.site-header__nav {
  display: none;
  margin-left: auto;
  margin-right: 1rem;
}

.site-header__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.site-header__menu a {
  color: #e2e8f0;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 600;
}

.site-header__menu a:hover {
  color: #fff;
}

.site-header__burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.2rem;
  width: 2.3rem;
  height: 2.3rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0.5rem;
  padding: 0;
  cursor: pointer;
}

.site-header__burger-line {
  display: block;
  width: 1.05rem;
  height: 2px;
  margin-inline: auto;
  border-radius: 999px;
  background: #fff;
}

.mobile-drawer[hidden] {
  display: none;
}

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
}

.mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 12, 28, 0.52);
}

.mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(19rem, 88vw);
  height: 100%;
  background: #0f172a;
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: -0.8rem 0 2rem rgba(0, 0, 0, 0.32);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateX(0);
}

.mobile-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-drawer__close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.mobile-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.3rem;
}

.mobile-drawer__list a {
  display: block;
  color: #e2e8f0;
  text-decoration: none;
  padding: 0.5rem 0.35rem;
  border-radius: 0.4rem;
  font-weight: 600;
}

.mobile-drawer__list a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.mobile-drawer__cta {
  margin-top: auto;
}

@media (min-width: 900px) {
  .site-header__nav {
    display: block;
  }

  .site-header__burger {
    display: none;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.15rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn--primary {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}
.btn--primary:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: #fff;
}

/* Ghost on light sections (e.g. promo bar) */
.btn--ghost-light {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost-light:hover {
  background: rgba(15, 23, 42, 0.06);
  color: var(--navy);
  border-color: var(--navy);
}

.btn--sm { padding: 0.4rem 0.9rem; font-size: 0.7rem; }
.btn--lg { padding: 0.85rem 1.75rem; font-size: 0.9rem; }

/* Hero */
.hero {
  position: relative;
  padding: 3.5rem 0 4rem;
  overflow: hidden;
  /* Keep hero from forcing the artwork to cover an oversized band */
  min-height: clamp(16rem, 42vw, 24rem);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* Подложка только на случай медленной загрузки; картинка — одна, без градиентов «поверх» */
  background-color: #f5f8fc;
  background-image: url("../images/hero-bg-desk.png");
  --hero-art-h: min(100%, min(44vh, 40rem));
  background-size: auto var(--hero-art-h);
  background-position: right 6% bottom;
  background-repeat: no-repeat;
}

@media (max-width: 40rem) {
  .hero__bg {
    --hero-art-h: min(100%, min(38vh, 30rem));
    background-position: 88% bottom;
  }
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }
}

.hero__text {
  max-width: 36rem;
}

/* Art placeholder hidden — background image carries the character */
.hero__art {
  display: none;
}

.hero__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.15;
  /* лёгкая обводка без «молочного» слоя поверх баннера */
  text-shadow:
    0 0 0.5em rgba(255, 255, 255, 0.95),
    0 1px 2px rgba(255, 255, 255, 0.9);
}

.hero__kicker {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-mid);
  text-shadow:
    0 0 0.45em rgba(255, 255, 255, 0.95),
    0 1px 1px rgba(255, 255, 255, 0.85);
}

.hero__sub {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 34ch;
  text-shadow: 0 0 0.4em rgba(255, 255, 255, 0.92);
}

.hero__illustration {
  max-width: 420px;
  margin-left: auto;
  filter: drop-shadow(0 20px 50px rgba(15, 23, 42, 0.12));
}

.hero__svg { width: 100%; height: auto; display: block; }

/* Promo bar */
.promo-bar {
  background: linear-gradient(90deg, #fef2f4 0%, #f8fafc 50%, #e8f0ff 100%);
  border-block: 1px solid var(--line);
  padding: 0.9rem 0;
}

.promo-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.promo-bar__text {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1rem;
}

.promo-bar__label { font-size: 0.875rem; color: var(--muted); }
.promo-bar__prize { font-size: 1.5rem; font-weight: 800; color: var(--navy); }

.promo-bar__countdown {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-variant-numeric: tabular-nums;
}

.cd__unit { text-align: center; min-width: 2.5rem; }
.cd__n { display: block; font-weight: 800; color: var(--navy); font-size: 1.1rem; }
.cd__l { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; }
.cd__sep { color: var(--muted); font-weight: 600; }

.promo-bar__cta { display: flex; gap: 0.5rem; }

/* Section titles */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}
.section-title--center { text-align: center; justify-content: center; }

.view-all {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pink);
  text-decoration: none;
}
.view-all:hover { text-decoration: underline; }

/* Game categories */
.game-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.25rem;
}

.game-cat {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 0.35rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: inherit;
}
.game-cat:hover,
.game-cat.is-active {
  border-color: var(--navy);
  color: var(--navy);
  font-weight: 600;
}

/* Games
   Mobile: 4 tiles per row, 2+ rows, compact.
   Desktop: 7 columns = 2 rows for 14 slots (2 «линии»). */
.games { padding: 2.5rem 0 3rem; }

.game-grid {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  width: 100%;
  max-width: 100%;
}

.game-grid > li { min-width: 0; }

@media (min-width: 900px) {
  .game-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
  }
  .games .game-card {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .games .game-card__title {
    margin: 0.65rem 0.65rem 0.35rem;
    font-size: 0.8rem;
    line-height: 1.25;
    min-height: 2.4rem;
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
  }
  .games .game-card__btn {
    margin: 0 0.65rem 0.65rem;
    padding: 0.4rem 0.9rem;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    align-self: flex-start;
    text-align: left;
    max-width: none;
    white-space: nowrap;
    line-height: 1.2;
  }
}

@media (min-width: 1200px) {
  /* Large desktop: 14 slots = 2 rows */
  .game-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
  }
}

/* Only phones: compact cards for 4 columns */
@media (max-width: 40rem) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header,
  main,
  .hero,
  .promo-bar,
  .games,
  .site-footer {
    max-width: 100vw;
    overflow-x: clip;
  }

  .game-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.4rem;
    overflow: hidden;
  }

  /* Subtle readability boost for hero copy on mobile */
  .hero__text {
    max-width: 18rem;
    padding: 0.3rem 0.45rem 0.45rem;
    border-radius: 0.5rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  }

  .hero__title {
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.88);
  }

  .hero__kicker,
  .hero__sub {
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.82);
  }

  .games .game-card {
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
    width: 100%;
  }
  .game-grid > li {
    display: flex;
  }
  .games .game-card__title {
    margin: 0.35rem 0.3rem 0.2rem;
    font-size: 0.62rem;
    font-weight: 600;
    line-height: 1.2;
    min-height: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .games .game-card__btn {
    margin: 0 0.3rem 0.35rem;
    margin-top: auto;
    padding: 0.24rem 0.35rem;
    font-size: 0.52rem;
    letter-spacing: 0.02em;
    align-self: stretch;
    text-align: center;
    justify-content: center;
    min-width: 0;
    white-space: nowrap;
  }

  /* Center promo block content on mobile */
  .promo-bar__inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.7rem;
  }

  .promo-bar__text,
  .promo-bar__countdown,
  .promo-bar__cta {
    justify-content: center;
    text-align: center;
  }

  /* Mobile: center Bonuses section */
  .bonuses .section-title,
  .bonuses .section-title--center {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .bonus-grid {
    justify-items: center;
  }

  .bonus-grid > li {
    width: 100%;
    display: flex;
  }

  .bonus-card {
    width: 100%;
    min-height: 10.5rem;
    height: 100%;
    align-items: center;
    text-align: center;
  }

  .bonus-card__line2 {
    min-height: 2.4em;
  }

  .bonus-card .btn {
    align-self: center;
  }

  /* Mobile: center Footer columns/content */
  .site-footer__grid,
  .site-footer__col,
  .site-footer__col ul,
  .site-footer__brand {
    justify-items: center;
    text-align: center;
  }

  .site-footer__brand {
    align-items: center;
  }

  .site-footer__col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .site-footer__col ul {
    display: grid;
    justify-items: center;
    width: 100%;
  }

  .site-footer__col li {
    margin: 0.3rem 0;
  }
}

.game-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
}

.game-card__thumb {
  aspect-ratio: 1 / 1;
  background: linear-gradient(145deg, hsl(var(--h, 200), 50%, 32%), hsl(calc(var(--h, 200) + 18), 55%, 18%));
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0.5rem;
  overflow: hidden;
}

.game-card__thumb--img {
  padding: 0;
  background: #0f172a;
}

.game-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.game-card__placeholder {
  font-size: 0.65rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.game-card__title {
  margin: 0.65rem 0.65rem 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.25;
  min-height: 2.4rem;
  color: var(--navy);
}

.game-card__btn {
  margin: 0 0.65rem 0.65rem;
  align-self: flex-start;
}

.section-actions { text-align: center; }

/* Prose / SEO */
.content-seo {
  background: var(--surface);
  padding: 2.5rem 0 3.5rem;
  border-top: 1px solid var(--line);
}

.mini-cta {
  margin: 0 0 1.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(225, 29, 72, 0.25);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(225, 29, 72, 0.08), rgba(30, 58, 95, 0.06));
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.mini-cta__title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}

.mini-cta__text {
  margin: 0 0 0.75rem;
  color: #334155;
  font-size: 0.92rem;
}

.mini-cta__btn {
  min-width: 8.5rem;
}

/* Keep CTA button text readable inside .prose */
.prose .mini-cta__btn,
.prose .mini-cta__btn:visited,
.prose .mini-cta__btn:hover,
.prose .mini-cta__btn:focus-visible {
  color: #fff;
  text-decoration: none;
}

.prose {
  max-width: 75ch;
  color: #334155;
  font-size: 0.95rem;
}

@media (min-width: 900px) {
  /* Desktop: remove "sidebar-like" empty column, use full content width */
  .content-seo__inner .prose {
    max-width: none;
    width: 100%;
  }
}

.prose h2,
.prose h3,
.prose h4 {
  color: var(--navy);
  font-weight: 800;
  margin-top: 1.75em;
  margin-bottom: 0.65em;
  line-height: 1.25;
}
.prose h2 { font-size: 1.35rem; }
.prose h3 { font-size: 1.1rem; }
.prose p { margin: 0.85em 0; }
.prose ul,
.prose ol { margin: 0.75em 0; padding-left: 1.25em; }
.prose li { margin: 0.35em 0; }
.prose a { color: var(--pink); }
.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
  margin: 1.25em 0;
  box-shadow: 0 1px 0 var(--line);
}
.prose thead th {
  background: #e0f0ff;
  color: var(--navy);
  text-align: left;
  padding: 0.65rem 0.75rem;
  font-weight: 700;
  border: 1px solid var(--line);
}
.prose td {
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--line);
  background: #fff;
}
.prose tbody tr:nth-child(even) td { background: #f8fafc; }

/* Bonuses */
.bonuses { padding: 3rem 0; }
.bonus-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) {
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .bonus-grid { grid-template-columns: repeat(3, 1fr); }
}

.bonus-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  background: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 200px;
}

.bonus-card__large {
  margin: 0 0 0.35rem;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.bonus-card__line1 { margin: 0; font-weight: 700; color: var(--navy); font-size: 0.95rem; }
.bonus-card__line2 { margin: 0.35rem 0 1rem; color: var(--muted); font-size: 0.85rem; flex: 1; }
.bonus-card .btn { margin-top: auto; }

/* Payments */
.payments { padding: 0 0 3rem; }

.payment-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 600px) {
  .payment-grid { grid-template-columns: repeat(4, 1fr); }
}

.payment-tile {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.15rem 0.9rem;
  text-align: center;
  min-height: 5.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.payment-tile__logo {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: #fff;
}
.payment-tile__meta {
  margin: 0;
  font-size: 0.7rem;
  color: #94a3b8;
  line-height: 1.35;
}

/* FAQ */
.faq { padding: 0 0 3.5rem; }

.faq-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 800px;
  margin-inline: auto;
}

.faq-list > li { border-bottom: 1px solid var(--line); }
.faq-list > li:first-child { border-top: 1px solid var(--line); }

.faq-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0.5rem 1rem 0;
  background: none;
  border: none;
  text-align: left;
  font: inherit;
  color: var(--navy);
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
}

.faq-item__ic {
  color: var(--muted);
  font-size: 1.25rem;
  font-weight: 500;
  flex-shrink: 0;
}
.faq-item[aria-expanded="true"] .faq-item__ic { transform: rotate(45deg); }

.faq-panel {
  padding: 0 1.5rem 1rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.faq-panel p { margin: 0; }

.faq-item:focus-visible { outline: 2px solid var(--pink); outline-offset: 2px; }

/* Footer */
.site-footer {
  background: var(--navy);
  color: #cbd5e1;
  padding: 2.5rem 0 0;
  font-size: 0.9rem;
}

.site-footer a { color: #e2e8f0; text-decoration: none; }
.site-footer a:hover { color: #fff; }

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 700px) {
  .site-footer__grid { grid-template-columns: 1.2fr repeat(3, 1fr); }
}

.site-footer__blurb { margin: 0.75rem 0; max-width: 36ch; line-height: 1.5; }
.site-footer__age {
  display: inline-block;
  margin: 0.5rem 0 0;
  padding: 0.2rem 0.5rem;
  font-weight: 800;
  font-size: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  color: #fff;
}

.site-footer__title {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  font-weight: 700;
}

.site-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__col li { margin: 0.4rem 0; }

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  font-size: 0.8rem;
  color: #94a3b8;
}
.site-footer__bottom-inner { text-align: center; }
