:root {
  --ink: #0d1626;
  --ink-2: #152238;
  --blue: #1f6feb;
  --blue-2: #2f80ed;
  --mint: #15b887;
  --gold: #d79b22;
  --paper: #f6f8fb;
  --white: #ffffff;
  --line: #cfd6e2;
  --muted: #617089;
  --danger: #b94444;
  --max: 1120px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slowReveal {
  from {
    opacity: 0;
    transform: scale(.985);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__inner,
  .page-hero__inner {
    animation: slowReveal .7s ease both;
  }

  .section,
  .section-tight {
    animation: fadeUp .65s ease both;
  }

  .article-tile,
  .pick,
  .btn,
  .info-row {
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background-color .22s ease;
  }

  .article-tile:hover,
  .pick:hover,
  .info-row:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(13, 22, 38, .08);
  }

  .btn:hover {
    transform: translateY(-2px);
  }

  .hero__feature img,
  .feature-split img {
    transition: transform .55s ease;
  }

  .hero__feature:hover img,
  .feature-split:hover img {
    transform: scale(1.025);
  }
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.hero__feature,
.feature-split {
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

.top-strip {
  background: #202235;
  border-bottom: 0;
  min-height: 4px;
}

.top-strip__inner,
.nav__inner,
.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.top-strip__inner {
  display: none;
  justify-content: space-between;
  align-items: center;
  min-height: 36px;
  gap: 16px;
  font-size: 11px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: .06em;
}

.brand-mini {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.brand-mark {
  width: 20px;
  height: 20px;
  display: inline-grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  color: #111827;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 6px 18px rgba(15, 23, 42, .08);
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, padding .25s ease;
}

.nav.nav--transparent {
  background: rgba(255, 255, 255, .90);
  border-color: rgba(15, 23, 42, .08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, .08);
  backdrop-filter: blur(12px);
}

.nav__inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  min-height: 56px;
  padding: 0 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.01em;
  color: #0f172a;
  white-space: nowrap;
}

.brand::before {
  content: "";
  width: 32px;
  height: 32px;
  display: inline-block;
  border-radius: 12px;
  background:
    linear-gradient(145deg, transparent 0 20%, #ef233c 20% 52%, transparent 52%) 0 10px / 20px 18px no-repeat,
    linear-gradient(145deg, transparent 0 20%, #0ea5e9 20% 52%, transparent 52%) 17px 2px / 22px 25px no-repeat,
    linear-gradient(145deg, transparent 0 20%, #ff6b2b 20% 55%, transparent 55%) 34px 0 / 24px 20px no-repeat;
}

.brand::after {
  display: none;
}

.nav__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  width: 100%;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 0;
  border-top: none;
  min-height: 0;
}

.nav__links::-webkit-scrollbar {
  display: none;
}

.nav__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 10px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
  color: #334155;
  border-radius: 999px;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}

.nav__links a::after {
  display: none;
}

.nav__links a:hover,
.nav__links a.active {
  color: #0f172a;
  background: rgba(15, 23, 42, .06);
}

.nav__tools {
  display: none;
}

.search {
  width: 160px;
  min-height: 50px;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: #111827;
  padding: 0 6px 0 36px;
  background-image:
    radial-gradient(circle at 13px 20px, transparent 0 7px, #111827 8px 9px, transparent 10px),
    linear-gradient(45deg, transparent 0 28px, #111827 29px 31px, transparent 32px);
  background-size: 34px 50px, 34px 50px;
  background-position: 0 0, 0 0;
  background-repeat: no-repeat;
}

.search::placeholder {
  color: #6b7280;
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: transparent;
  width: 44px;
  height: 44px;
  padding: 0;
  position: relative;
  justify-content: center;
  align-items: center;
}

.menu-toggle::before {
  content: "";
  width: 26px;
  height: 18px;
  display: block;
  background:
    linear-gradient(#111827, #111827) 0 0 / 26px 2px no-repeat,
    linear-gradient(#111827, #111827) 0 8px / 26px 2px no-repeat,
    linear-gradient(#111827, #111827) 0 16px / 26px 2px no-repeat;
}

.btn {
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  min-height: 50px;
  padding: 0 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: none;
  font-size: 16px;
  font-weight: 850;
  letter-spacing: 0;
  cursor: pointer;
  border-radius: 999px;
}

.btn-primary {
  background: #f97316;
  color: var(--white);
  border-color: #f97316;
}

.nav-pill {
  background: var(--white);
  color: #111827;
  border-color: #c8c9d0;
}

.nav-select::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.hero {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0 0 0 auto;
  width: 43%;
  background: linear-gradient(115deg, transparent 0 28%, rgba(31, 111, 235, .2) 28% 100%);
  pointer-events: none;
}

.hero__inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 560px;
  padding: 58px 0 48px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 52px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.eyebrow {
  color: var(--blue-2);
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: .08em;
  margin: 0 0 18px;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 86px);
  line-height: .88;
  letter-spacing: -.05em;
  max-width: 780px;
}

.hero p,
.page-hero p {
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
  max-width: 590px;
  margin: 22px 0 0;
}

.hero__actions {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__feature {
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(255, 255, 255, .04);
}

.hero__feature img {
  height: 250px;
  object-fit: cover;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.hero__feature div {
  padding: 22px;
}

.hero__feature h2 {
  margin: 7px 0 10px;
  font-size: 24px;
  line-height: 1;
}

.stats-band {
  background: var(--ink-2);
  color: var(--white);
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.stats-band__inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 96px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  text-align: center;
}

.stat {
  border-left: 1px solid rgba(255, 255, 255, .13);
  padding: 18px 12px;
}

.stat:last-child {
  border-right: 1px solid rgba(255, 255, 255, .13);
}

.stat strong {
  display: block;
  font-size: 22px;
  color: var(--white);
}

.stat span {
  font-size: 10px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .62);
  font-weight: 900;
}

.section {
  padding: 72px 0;
}

.section-tight {
  padding: 48px 0;
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-blue {
  background: var(--blue-2);
  color: var(--white);
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.section__head h2,
.content-block h2 {
  margin: 0;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: .95;
  letter-spacing: -.04em;
}

.section__head p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.section-dark .section__head,
.section-blue .section__head {
  border-color: rgba(255, 255, 255, .2);
}

.section-dark .section__head p,
.section-blue .section__head p {
  color: rgba(255, 255, 255, .72);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.article-tile {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.article-tile__image {
  height: 205px;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
}

.article-tile__body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tag {
  align-self: flex-start;
  display: inline-flex;
  background: var(--mint);
  color: var(--white);
  padding: 5px 7px;
  font-size: 9px;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: .06em;
  margin-bottom: 10px;
}

.tag.gold {
  background: var(--gold);
}

.tag.blue {
  background: var(--blue);
}

.tag.dark {
  background: var(--ink);
}

.article-tile h3 {
  font-size: 22px;
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 0 0 10px;
}

.article-tile p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 18px;
}

.article-tile__meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
}

.read-link {
  color: var(--blue);
  font-weight: 950;
}

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
}

.feature-split img {
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  border-right: 1px solid var(--line);
}

.feature-split__copy {
  padding: clamp(28px, 5vw, 58px);
  align-self: center;
}

.feature-split__copy h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: .92;
  letter-spacing: -.05em;
  margin: 0 0 20px;
}

.feature-split__copy p,
.content-block p,
.legal-copy p,
.legal-copy li {
  color: var(--muted);
  line-height: 1.75;
}

.section-dark .feature-split {
  border-color: rgba(255, 255, 255, .18);
}

.section-dark .feature-split img {
  border-color: rgba(255, 255, 255, .18);
}

.section-dark .feature-split__copy p,
.section-dark .content-block p {
  color: rgba(255, 255, 255, .72);
}

.editor-picks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.pick {
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pick strong {
  display: block;
  font-size: 36px;
  color: #d9e0ec;
  margin-bottom: 12px;
}

.pick h3 {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.15;
}

.pick span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 900;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.newsletter h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: .92;
  letter-spacing: -.04em;
}

.newsletter p {
  color: rgba(255, 255, 255, .72);
  line-height: 1.7;
}

.newsletter-form {
  display: grid;
  gap: 10px;
}

.newsletter-form input {
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, .38);
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  padding: 0 14px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, .72);
}

.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 76px 0;
  border-bottom: 1px solid var(--line);
}

.page-hero__inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}

.content-block {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.content-block h3 {
  font-size: 28px;
  letter-spacing: -.03em;
  margin: 0 0 12px;
}

.info-stack {
  display: grid;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.info-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.info-row strong {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
}

.info-row h3 {
  margin: 0 0 8px;
  font-size: 24px;
  letter-spacing: -.03em;
}

.info-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.quote-band {
  border-left: 5px solid var(--blue);
  background: var(--paper);
  padding: clamp(26px, 5vw, 46px);
  margin-top: 34px;
}

.quote-band p {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -.04em;
  color: var(--ink);
  font-weight: 900;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.mini-panel {
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  min-height: 210px;
}

.mini-panel span {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 950;
  color: var(--blue);
}

.mini-panel h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.mini-panel p {
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.rule-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.rule-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.55;
}

.contact-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 48px;
}

.contact-panel {
  border: 1px solid var(--line);
  padding: 28px;
  background: var(--paper);
}

.form-grid {
  display: grid;
  gap: 16px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 950;
  color: var(--muted);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  min-height: 46px;
  padding: 10px 12px;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.checkbox {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  line-height: 1.55;
  font-size: 14px;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

.form-note {
  display: none;
  border: 1px solid var(--mint);
  color: #096b4d;
  background: #e9fbf5;
  padding: 12px;
  line-height: 1.5;
}

.form-note.show {
  display: block;
}

.blog-detail {
  max-width: 820px;
  margin: 0 auto;
}

.blog-detail img {
  max-height: 470px;
  object-fit: cover;
  border: 1px solid var(--line);
  margin: 28px 0;
}

.blog-detail h2 {
  font-size: 34px;
  letter-spacing: -.03em;
  margin-top: 34px;
}

.blog-detail p,
.blog-detail li {
  color: var(--muted);
  line-height: 1.85;
  font-size: 18px;
}

.blog-detail ul {
  padding-left: 22px;
}

.meta-row {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .05em;
  margin-top: 18px;
}

.legal-copy {
  max-width: 900px;
}

.legal-copy h2 {
  font-size: 28px;
  margin-top: 34px;
}

.footer {
  background: var(--ink);
  color: var(--white);
  border-top: 4px solid var(--blue);
  padding: 58px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
}

.footer h2 {
  margin: 0 0 14px;
  font-size: 30px;
  letter-spacing: -.04em;
}

.footer h3 {
  margin: 0 0 15px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  letter-spacing: .08em;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, .68);
  line-height: 1.7;
  font-size: 14px;
}

.footer a {
  display: block;
  margin: 7px 0;
}

.footer__bottom {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, .48);
  font-size: 12px;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  background: var(--ink);
  color: var(--white);
  border-top: 2px solid var(--blue);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner__inner {
  width: min(var(--max), calc(100% - 20px));
  margin: 0 auto;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
}

.cookie-banner a {
  color: var(--white);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.modal.show {
  display: block;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 22, 38, .76);
}

.modal__panel {
  position: relative;
  width: min(620px, calc(100% - 28px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  margin: 20px auto;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 28px;
}

.modal__head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  margin-bottom: 18px;
}

.modal__head h2 {
  font-size: 32px;
  line-height: .95;
  margin: 0;
  letter-spacing: -.04em;
}

.modal-close {
  border: 1px solid var(--line);
  background: var(--white);
  width: 36px;
  height: 36px;
  cursor: pointer;
  font-weight: 900;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 32px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.hidden {
  display: none !important;
}

@media (max-width: 980px) {
  .nav__inner {
    grid-template-columns: 1fr auto;
    min-height: auto;
    padding-bottom: 14px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
  }

  .nav__links {
    display: none;
    grid-column: 1 / -1;
    justify-content: start;
    padding-bottom: 16px;
    border-top: 1px solid #d6d6dc;
  }

  .nav.open .nav__links {
    display: flex;
  }

  .nav__tools {
    grid-column: 1 / -1;
    display: none;
    padding-bottom: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .nav.open .nav__tools {
    display: flex;
  }

  .hero__inner,
  .feature-split,
  .newsletter,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .feature-split img {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .article-grid,
  .content-grid,
  .mini-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .editor-picks,
  .stats-band__inner,
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .top-strip__inner {
    align-items: start;
    flex-direction: column;
    padding: 10px 0;
  }

  .nav__inner {
    min-height: 62px;
  }

  .brand {
    font-size: 27px;
    gap: 8px;
  }

  .brand::before {
    width: 48px;
    height: 32px;
    background-size: 24px 18px, 28px 24px, 28px 22px;
    background-position: 0 9px, 14px 4px, 31px 2px;
  }

  .brand::after {
    display: none;
  }

  .search {
    width: 100%;
  }

  .hero__inner {
    min-height: auto;
    padding: 44px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 44px;
  }

  .article-grid,
  .content-grid,
  .mini-grid,
  .editor-picks,
  .stats-band__inner,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .info-row {
    grid-template-columns: 1fr;
  }

  .section__head,
  .footer__bottom,
  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions,
  .hero__actions {
    width: 100%;
  }

  .cookie-actions .btn,
  .hero__actions .btn {
    flex: 1;
  }
}
