﻿:root {
  --ink: #162026;
  --muted: #52616b;
  --paper: #f7f4ee;
  --surface: #ffffff;
  --line: #d9ddd7;
  --red: #c62828;
  --red-dark: #941c1c;
  --green: #1f7a58;
  --blue: #245d88;
  --gold: #b98218;
  --shadow: 0 18px 50px rgba(20, 29, 35, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  padding-bottom: 78px;
}
body.modal-open {
  overflow: hidden;
}
a { color: inherit; }
.skip {
  position: absolute;
  left: -999px;
  top: .75rem;
  z-index: 50;
  padding: .6rem .8rem;
  background: var(--ink);
  color: #fff;
}
.skip:focus { left: .75rem; }
.shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 244, 238, .94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-row {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  min-width: 190px;
}
.brand-logo {
  width: 190px;
  height: 48px;
  display: block;
  flex: 0 0 190px;
  object-fit: contain;
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: .35rem;
}
.site-nav a {
  text-decoration: none;
  padding: .48rem .62rem;
  border-radius: 7px;
  color: var(--muted);
  font-weight: 700;
  font-size: .9rem;
}
.site-nav a:hover,
.site-nav a.is-active {
  color: var(--red-dark);
  background: #fff;
}
.menu-btn {
  display: none;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  padding: .55rem .75rem;
}
.hero {
  padding: 54px 0 38px;
  background:
    linear-gradient(90deg, rgba(198,40,40,.12), transparent 38%),
    linear-gradient(180deg, #fff, var(--paper));
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.25rem;
  align-items: stretch;
}
.hero-copy,
.hero-panel,
.side-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.hero-copy {
  padding: clamp(1.4rem, 3vw, 2.5rem);
}
.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.crumbs a { color: var(--blue); text-decoration: none; font-weight: 800; }
.eyebrow,
.panel-kicker {
  display: inline-block;
  color: var(--green);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
h1,
h2,
h3,
p { margin-top: 0; }
h1 {
  max-width: 920px;
  font-size: clamp(2rem, 4vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: 0;
  margin: .55rem 0 1rem;
}
h2 {
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  line-height: 1.18;
  letter-spacing: 0;
}
.hero-copy p {
  max-width: 850px;
  color: var(--muted);
  font-size: 1.06rem;
}
.hero-actions,
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  align-items: center;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  border-radius: 7px;
  padding: .72rem 1rem;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
}
.button.primary {
  color: #fff;
  background: var(--red);
}
.button.secondary {
  background: #fff;
  color: var(--blue);
  border-color: var(--line);
}
.sticky-play {
  position: fixed;
  left: 50%;
  right: auto;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 60;
  width: min(420px, calc(100% - 32px));
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  font-weight: 950;
  font-size: 1.04rem;
  box-shadow: 0 16px 38px rgba(148, 28, 28, .35);
}
.sticky-play:hover {
  background: var(--red-dark);
}
.offer-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1rem;
}
.offer-modal[hidden] {
  display: none;
}
.offer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 18, 22, .62);
  backdrop-filter: blur(4px);
}
.offer-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(20, 29, 35, .28);
  padding: clamp(1.25rem, 4vw, 2rem);
}
.offer-dialog h2 {
  margin: .35rem 2.2rem .75rem 0;
}
.offer-dialog p {
  color: var(--muted);
}
.offer-x {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fff;
  color: var(--ink);
  font-weight: 900;
  cursor: pointer;
}
.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1rem;
}
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(12, 18, 22, .72);
  backdrop-filter: blur(5px);
}
.age-gate[hidden] {
  display: none;
}
.age-card {
  width: min(100%, 520px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(20, 29, 35, .32);
  padding: clamp(1.35rem, 4vw, 2.2rem);
}
.age-card h2 {
  margin: .4rem 0 .75rem;
}
.age-card p,
.age-card small,
.cookie-copy p {
  color: var(--muted);
}
.age-card small {
  display: block;
  margin-top: .9rem;
}
.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1rem;
}
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 88px;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(20, 29, 35, .2);
}
.cookie-banner[hidden] {
  display: none;
}
.cookie-copy p {
  margin: .25rem 0 0;
}
.cookie-settings {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: .7rem;
  color: var(--muted);
}
.cookie-settings label {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .55rem;
}
.hero-panel {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 280px;
  border-top: 5px solid var(--red);
}
.hero-visual {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 7px;
  border: 1px solid var(--line);
  margin-bottom: .95rem;
}
.hero-panel strong {
  display: block;
  font-size: 1.7rem;
  line-height: 1.1;
  margin: .4rem 0 .75rem;
}
.hero-panel p,
.side-card p,
.link-card small,
.section-heading p,
.main-copy p,
.faq-item p,
.site-footer p {
  color: var(--muted);
}
.mini-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .45rem;
}
.mini-list span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #f1f6f3;
  color: var(--green);
  font-weight: 900;
}
.section {
  padding: clamp(2rem, 5vw, 4rem) 0;
}
.section.muted {
  background: #ebe7df;
  border-block: 1px solid var(--line);
}
.article-section {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.offer-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
  margin-bottom: 1rem;
}
.offer-card {
  display: grid;
  gap: .25rem;
  min-height: 126px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfbf8;
  text-decoration: none;
  transition: border-color .18s ease, transform .18s ease;
}
.offer-card:hover {
  border-color: rgba(198, 40, 40, .42);
  transform: translateY(-1px);
}
.offer-card span {
  color: var(--green);
  font-size: .76rem;
  font-weight: 900;
}
.offer-card strong {
  font-size: 1.12rem;
  line-height: 1.2;
}
.offer-card small {
  color: var(--muted);
}
.voices-section {
  background: #f5f6f3;
}
.voices-heading {
  max-width: 860px;
  margin: 0 auto 2rem;
  text-align: center;
}
.voices-heading h2 {
  margin: 0 0 .45rem;
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  line-height: 1.08;
}
.voices-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}
.voice-card {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 1.25rem;
  min-height: 286px;
  padding: 1.55rem;
  background: #fff;
  border: 1px solid rgba(20, 29, 35, .08);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(20, 29, 35, .08);
}
.voice-badge {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: .35rem .7rem;
  background: var(--green);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  text-decoration: none;
}
.stars {
  color: #f2b700;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.voice-card p {
  margin: 0;
  color: #34444e;
  font-size: 1rem;
  line-height: 1.65;
}
.voice-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: #2c3337;
}
.voice-card footer strong {
  margin-right: .15rem;
}
.voice-card footer a {
  color: #1268c4;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.voices-source-note {
  max-width: 980px;
  margin: 1.45rem auto 0;
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
}
.voices-source-note a {
  color: #1268c4;
  text-underline-offset: 2px;
}
.content-menu {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin: 0 0 1.25rem;
}
.content-menu a {
  text-decoration: none;
  color: var(--blue);
  background: #f3f7f8;
  border: 1px solid #d6e4ea;
  border-radius: 7px;
  padding: .48rem .65rem;
  font-weight: 800;
  font-size: .9rem;
}
.visual-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(150px, 1fr));
  gap: .85rem;
  margin: 1.25rem 0 1.6rem;
}
.visual-tile {
  position: relative;
  min-height: 150px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #101820;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(20, 29, 35, .12);
}
.visual-tile.large {
  grid-row: span 2;
}
.visual-tile img,
.article-visual img,
.visual-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.visual-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10, 16, 20, .74));
}
.visual-tile span {
  position: absolute;
  left: .85rem;
  right: .85rem;
  bottom: .8rem;
  z-index: 1;
  color: #fff;
  font-weight: 950;
  font-size: 1.05rem;
}
.article-visual {
  margin: 1.15rem 0 1.35rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(20, 29, 35, .08);
}
.article-visual img {
  aspect-ratio: 16 / 9;
}
.article-visual figcaption {
  padding: .75rem .9rem;
  color: var(--muted);
  font-size: .94rem;
}
.visual-section {
  padding-top: 1.4rem;
  padding-bottom: 0;
  background: linear-gradient(180deg, var(--paper), #fff);
}
.visual-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .72fr);
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.visual-card img {
  aspect-ratio: 16 / 9;
}
.visual-card figcaption {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .45rem;
  padding: clamp(1rem, 3vw, 1.6rem);
}
.visual-card figcaption span {
  color: var(--green);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}
.visual-card figcaption strong {
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.12;
}
.visual-card figcaption small {
  color: var(--muted);
  font-size: 1rem;
}
.article-body {
  max-width: 920px;
}
.article-body h2 {
  margin: 2rem 0 .75rem;
}
.article-body p,
.article-body li,
.article-body td {
  color: var(--muted);
}
.article-body a,
.source-note a {
  color: var(--blue);
  font-weight: 800;
  text-decoration-thickness: .08em;
  text-underline-offset: 3px;
}
.article-body ul {
  display: grid;
  gap: .35rem;
  padding-left: 1.2rem;
  margin: .5rem 0 1.1rem;
}
.table-wrap {
  width: 100%;
  overflow-x: auto;
  margin: 1rem 0 1.25rem;
}
table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  background: #fff;
  border: 1px solid var(--line);
}
th,
td {
  text-align: left;
  vertical-align: top;
  padding: .85rem;
  border-bottom: 1px solid var(--line);
}
th {
  color: var(--ink);
  background: #f7faf8;
}
.section-heading {
  max-width: 820px;
  margin-bottom: 1.25rem;
}
.section-title {
  display: block;
  margin-top: .35rem;
  color: var(--ink);
  font-size: clamp(1.35rem, 2.2vw, 2.1rem);
  line-height: 1.18;
  font-weight: 900;
}
.section-heading.compact {
  margin-bottom: .9rem;
}
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 1.2rem;
  align-items: start;
}
.main-copy {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(1.25rem, 2.5vw, 2rem);
}
.main-copy h2:not(:first-child) {
  margin-top: 1.6rem;
}
.check-list {
  display: grid;
  gap: .6rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding: .75rem .85rem .75rem 2.2rem;
  background: #f7faf8;
  border: 1px solid #dce9e1;
  border-radius: 7px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: .8rem;
  top: 1.05rem;
  width: .7rem;
  height: .7rem;
  border-radius: 50%;
  background: var(--green);
}
.note-stack {
  display: grid;
  gap: .65rem;
  margin: .25rem 0 1.25rem;
}
.note-item {
  margin: 0;
  padding: .75rem .85rem;
  background: #f7faf8;
  border: 1px solid #dce9e1;
  border-left: 4px solid var(--green);
  border-radius: 7px;
}
.side-copy {
  display: grid;
  gap: 1rem;
}
.side-card {
  padding: 1rem;
}
.province-grid {
  display: grid;
  gap: .55rem;
}
.province-card {
  display: grid;
  gap: .1rem;
  text-decoration: none;
  padding: .75rem;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fbfbf8;
}
.province-card span {
  color: var(--gold);
  font-weight: 900;
  font-size: .78rem;
}
.province-card strong {
  color: var(--ink);
}
.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
}
.link-card {
  display: grid;
  gap: .45rem;
  min-height: 176px;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.link-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(20, 29, 35, .1);
}
.link-card span {
  color: var(--blue);
  font-size: .78rem;
  text-transform: uppercase;
  font-weight: 900;
}
.link-card strong {
  font-size: 1.08rem;
  line-height: 1.18;
}
.topic-block + .topic-block {
  margin-top: 1.75rem;
}
.faq {
  max-width: 900px;
}
.faq-list {
  display: grid;
  gap: .75rem;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: .85rem 1rem;
}
.faq-item h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.25;
}
.faq-answer h3 {
  margin: .55rem 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
  font-weight: 500;
}
.site-footer {
  padding: 2.4rem 0 1.2rem;
  background: #151d22;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, .6fr) minmax(220px, .7fr);
  gap: 1.5rem;
}
.site-footer h2 {
  margin: .35rem 0 .75rem;
}
.site-footer a {
  display: block;
  color: #dce8ef;
  text-decoration: none;
  margin: 0 0 .45rem;
}
.source-list strong {
  display: block;
  margin-bottom: .55rem;
}
.footer-bottom {
  justify-content: space-between;
  color: #b9c5cc;
  border-top: 1px solid rgba(255,255,255,.14);
  margin-top: 1.5rem;
  padding-top: 1rem;
  font-size: .9rem;
}

@media (max-width: 900px) {
  .header-row {
    min-height: 68px;
    align-items: flex-start;
    padding: .75rem 0;
  }
  .menu-btn { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    left: 16px;
    right: 16px;
    top: 68px;
    padding: .7rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    justify-content: flex-start;
  }
  .site-nav.is-open { display: flex; }
  .hero-grid,
  .content-grid,
  .visual-card,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .visual-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .visual-tile,
  .visual-tile.large {
    grid-row: auto;
    min-height: 230px;
  }
  .offer-strip {
    grid-template-columns: 1fr;
  }
  .link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cookie-banner {
    grid-template-columns: 1fr;
    bottom: 78px;
  }
  .cookie-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 22px, 1160px); }
  .brand { min-width: 0; }
  .brand-logo {
    width: 154px;
    height: 40px;
    flex-basis: 154px;
  }
  .hero { padding-top: 34px; }
  .hero-copy,
  .hero-panel,
  .main-copy,
  .side-card {
    box-shadow: none;
  }
  .link-grid,
  .mini-list {
    grid-template-columns: 1fr;
  }
  .visual-tile,
  .visual-tile.large {
    min-height: 180px;
  }
  .visual-card figcaption {
    padding: 1rem;
  }
  .article-visual img,
  .visual-card img {
    aspect-ratio: 4 / 3;
  }
  .voices-section {
  background: #f5f6f3;
}
.voices-heading {
  max-width: 860px;
  margin: 0 auto 2rem;
  text-align: center;
}
.voices-heading h2 {
  margin: 0 0 .45rem;
  font-size: clamp(2rem, 3.4vw, 2.85rem);
  line-height: 1.08;
}
.voices-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}
.voice-card {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 1.25rem;
  min-height: 286px;
  padding: 1.55rem;
  background: #fff;
  border: 1px solid rgba(20, 29, 35, .08);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(20, 29, 35, .08);
}
.voice-badge {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: .35rem .7rem;
  background: var(--green);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  text-decoration: none;
}
.stars {
  color: #f2b700;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.voice-card p {
  margin: 0;
  color: #34444e;
  font-size: 1rem;
  line-height: 1.65;
}
.voice-card footer {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  color: #2c3337;
}
.voice-card footer strong {
  margin-right: .15rem;
}
.voice-card footer a {
  color: #1268c4;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}
.voices-source-note {
  max-width: 980px;
  margin: 1.45rem auto 0;
  text-align: center;
  color: var(--muted);
  font-size: .95rem;
}
.voices-source-note a {
  color: #1268c4;
  text-underline-offset: 2px;
}
.content-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .content-menu a {
    text-align: center;
  }
  .link-card {
    min-height: auto;
  }
  .footer-bottom {
    align-items: flex-start;
  }
  .sticky-play {
    left: 11px;
    right: 11px;
    bottom: 10px;
    width: auto;
    transform: none;
  }
  .age-actions,
  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .cookie-banner {
    left: 11px;
    right: 11px;
    bottom: 74px;
    width: auto;
  }
}
