@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap');

:root {
  --canvas: #f7f7f4;
  --canvas-soft: #fafaf7;
  --surface-card: #ffffff;
  --surface-strong: #e6e5e0;
  --primary: #f54e00;
  --primary-active: #d04200;
  --ink: #26251e;
  --body: #5a5852;
  --muted: #807d72;
  --muted-soft: #a09c92;
  --on-primary: #ffffff;
  --hairline: #e6e5e0;
  --hairline-soft: #efeee8;
  --hairline-strong: #cfcdc4;
  --success: #1f8a65;
  --error: #cf2d56;
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 9999px;
  --section: 80px;
  --container: 1200px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--body);
  background-color: var(--canvas);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--ink);
  text-decoration: none;
}

a:hover {
  color: var(--primary);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section) 0;
}

.section--alt {
  background-color: var(--canvas-soft);
}

.section--border {
  border-top: 1px solid var(--hairline);
}

/* ── TYPOGRAPHY ────────────────────────────────────── */

h1, h2, h3, h4 {
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
}

.display-mega {
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.display-lg {
  font-size: 36px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.display-md {
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.display-sm {
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.005em;
}

.title-md {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.title-sm {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.body-md {
  font-size: 16px;
  line-height: 1.6;
}

.body-sm {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.caption {
  font-size: 13px;
  line-height: 1.4;
  color: var(--muted);
}

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── NAVIGATION ────────────────────────────────────── */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--canvas);
  border-bottom: 1px solid var(--hairline);
  height: 64px;
  display: flex;
  align-items: center;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav__logo {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.nav__logo span {
  color: var(--primary);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  text-decoration: none;
  transition: color 0.15s;
}

.nav__links a:hover {
  color: var(--ink);
}

.nav__dropdown {
  position: relative;
}

.nav__dropdown-toggle {
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  font-family: inherit;
  transition: color 0.15s;
}

.nav__dropdown-toggle:hover {
  color: var(--ink);
}

.nav__dropdown-toggle svg {
  width: 12px;
  height: 12px;
  transition: transform 0.15s;
}

.nav__dropdown.open .nav__dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 8px;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s, visibility 0.15s;
}

.nav__dropdown.open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.nav__dropdown-menu a {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--body);
  border-radius: var(--radius-md);
  transition: background 0.1s, color 0.1s;
}

.nav__dropdown-menu a:hover {
  background: var(--canvas);
  color: var(--ink);
}

.nav__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.2s;
}

.nav__mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--surface-card);
  border-bottom: 1px solid var(--hairline);
  padding: 16px 24px 24px;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
}

.nav__mobile.open {
  display: flex;
}

.nav__mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--body);
  padding: 10px 0;
  border-bottom: 1px solid var(--hairline-soft);
}

.nav__mobile a:last-child {
  border-bottom: none;
}

.nav__mobile .mobile-section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 12px 0 4px;
}

/* ── HERO ──────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38,37,30,0.72) 0%, rgba(38,37,30,0.18) 60%, transparent 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 64px 0 56px;
  width: 100%;
}

.hero__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-primary);
  background-color: var(--primary);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.hero__title {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: #ffffff;
  max-width: 720px;
  margin-bottom: 16px;
}

.hero__subtitle {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
}

/* ── ARTICLE CARD GRID ─────────────────────────────── */

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.article-card {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.15s;
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  border-color: var(--hairline-strong);
}

.article-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.article-card__body {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-card__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background-color: var(--surface-strong);
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  width: fit-content;
}

.article-card__title {
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.article-card__excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--body);
  flex: 1;
  margin-bottom: 16px;
}

.article-card__meta {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-card__meta .dot {
  width: 3px;
  height: 3px;
  background: var(--muted-soft);
  border-radius: 50%;
}

/* ── SECTION HEADER ────────────────────────────────── */

.section-header {
  margin-bottom: 40px;
}

.section-header__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.section-header__title {
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-header__desc {
  font-size: 16px;
  color: var(--body);
  margin-top: 10px;
  max-width: 560px;
}

/* ── ABOUT STRIP ───────────────────────────────────── */

.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-strip__img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 360px;
  object-fit: cover;
  border: 1px solid var(--hairline);
}

.about-strip__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}

.about-strip__title {
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 16px;
}

.about-strip__text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--body);
}

/* ── CONTACT FORM ──────────────────────────────────── */

.contact-section {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 40px 40px 44px;
  max-width: 640px;
  margin: 0 auto;
}

.contact-section__title {
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.contact-section__sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group:last-of-type {
  margin-bottom: 24px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.form-group input,
.form-group textarea {
  background: var(--canvas);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-md);
  padding: 11px 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--ink);
  width: 100%;
  transition: border-color 0.15s;
  height: 44px;
}

.form-group textarea {
  height: auto;
  min-height: 110px;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--ink);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted-soft);
}

.form-group input.error,
.form-group textarea.error {
  border-color: var(--error);
}

.form-error {
  font-size: 12px;
  color: var(--error);
  margin-top: 2px;
}

.btn-submit {
  background: var(--ink);
  color: var(--canvas);
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  width: 100%;
  height: 44px;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-submit:hover {
  background: #3a3930;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-success {
  display: none;
  background: #f0faf5;
  border: 1px solid #9fd9bf;
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 14px;
  color: var(--success);
  margin-top: 16px;
  align-items: center;
  gap: 8px;
}

.form-success.visible {
  display: flex;
}

/* ── COOKIE BANNER ─────────────────────────────────── */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 640px;
  width: calc(100% - 48px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}

.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
}

.cookie-banner__text {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
  flex: 1;
}

.cookie-banner__text a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn-cookie {
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  padding: 7px 14px;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.25);
  transition: background 0.15s;
  height: 34px;
}

.btn-cookie--accept {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-cookie--accept:hover {
  background: var(--primary-active);
  border-color: var(--primary-active);
}

.btn-cookie--reject {
  background: transparent;
  color: rgba(255,255,255,0.72);
}

.btn-cookie--reject:hover {
  background: rgba(255,255,255,0.1);
}

/* ── ARTICLE PAGE ──────────────────────────────────── */

.article-hero {
  position: relative;
  overflow: hidden;
  height: 440px;
}

.article-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(38,37,30,0.55) 0%, transparent 60%);
}

.article-header {
  padding: 40px 0 32px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 40px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--ink);
}

.breadcrumb__sep {
  color: var(--hairline-strong);
}

.article-header__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  background: var(--surface-strong);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
}

.article-header__title {
  font-size: 36px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}

.article-header__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
}

.article-header__meta .dot {
  width: 3px;
  height: 3px;
  background: var(--muted-soft);
  border-radius: 50%;
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 56px;
  align-items: start;
}

.article-body {
  font-size: 17px;
  line-height: 1.75;
  color: var(--body);
  max-width: 680px;
}

.article-body h2 {
  font-size: 24px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 40px 0 14px;
  padding-top: 8px;
}

.article-body h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--ink);
  margin: 28px 0 10px;
}

.article-body p {
  margin-bottom: 20px;
}

.article-body strong {
  color: var(--ink);
  font-weight: 600;
}

.article-body a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body a:hover {
  color: var(--primary);
}

.article-body ul, .article-body ol {
  padding-left: 20px;
  margin-bottom: 20px;
}

.article-body li {
  margin-bottom: 6px;
}

.article-img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 300px;
  object-fit: cover;
  border: 1px solid var(--hairline);
  margin: 32px 0;
}

.article-img-caption {
  font-size: 12px;
  color: var(--muted);
  margin-top: -24px;
  margin-bottom: 32px;
  padding-left: 2px;
}

.article-divider {
  border: none;
  border-top: 1px solid var(--hairline);
  margin: 40px 0;
}

.article-updated {
  font-size: 13px;
  color: var(--muted);
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
}

.article-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sidebar-card {
  background: var(--surface-card);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.sidebar-card__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

.sidebar-card__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sidebar-card__links li a {
  display: block;
  font-size: 14px;
  line-height: 1.4;
  color: var(--body);
  padding: 7px 0;
  border-bottom: 1px solid var(--hairline-soft);
  transition: color 0.15s;
}

.sidebar-card__links li:last-child a {
  border-bottom: none;
}

.sidebar-card__links li a:hover {
  color: var(--ink);
}

.info-block {
  background: var(--canvas-soft);
  border: 1px solid var(--hairline);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin: 28px 0;
}

.info-block p {
  margin-bottom: 0;
  font-size: 15px;
  color: var(--body);
}

/* ── RELATED ARTICLES ──────────────────────────────── */

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ── SIMPLE PAGE (about/privacy/terms) ─────────────── */

.page-header {
  padding: 48px 0 40px;
  border-bottom: 1px solid var(--hairline);
  margin-bottom: 48px;
}

.page-header__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.page-header__title {
  font-size: 36px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.page-header__updated {
  font-size: 13px;
  color: var(--muted);
  margin-top: 10px;
}

.prose {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
  max-width: 720px;
}

.prose h2 {
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 36px 0 12px;
}

.prose h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  margin: 24px 0 8px;
}

.prose p {
  margin-bottom: 18px;
}

.prose ul, .prose ol {
  padding-left: 20px;
  margin-bottom: 18px;
}

.prose li {
  margin-bottom: 6px;
}

.prose a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose a:hover {
  color: var(--primary);
}

.prose strong {
  color: var(--ink);
  font-weight: 600;
}

/* ── FOOTER ────────────────────────────────────────── */

.footer {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  padding: 48px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand {
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.footer__brand span {
  color: var(--primary);
}

.footer__tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 260px;
}

.footer__col-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer__links a:hover {
  color: var(--ink);
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-size: 13px;
  color: var(--muted);
}

.footer__disclaimer {
  font-size: 12px;
  color: var(--muted-soft);
  max-width: 480px;
  text-align: right;
  line-height: 1.4;
}

/* ── UTILITIES ─────────────────────────────────────── */

.divider {
  border: none;
  border-top: 1px solid var(--hairline);
  margin: 0;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--muted);
}

.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }

/* ── RESPONSIVE ────────────────────────────────────── */

@media (max-width: 1024px) {
  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .about-strip {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section: 56px;
  }

  .nav__links,
  .nav__dropdown {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero__title {
    font-size: 32px;
  }

  .articles-grid {
    grid-template-columns: 1fr;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 28px 20px;
  }

  .article-header__title {
    font-size: 26px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .footer__disclaimer {
    text-align: center;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    bottom: 16px;
    gap: 14px;
  }

  .page-header__title {
    font-size: 26px;
  }

  .display-mega {
    font-size: 36px;
  }

  .section-header__title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .btn-cookie {
    flex: 1;
    text-align: center;
  }
}
