 :root {
  --bg: #f4f5f7;
  --surface: #ffffff;
  --surface-alt: #e9ebef;
  --text: #1a1f27;
  --text-muted: #525c6b;
  --border: rgba(26,31,39,0.12);
  --accent: #b3623a;
  --accent-2: #2f4a63;
  --secondary: #2b3542;
  --on-accent: #ffffff;
  --radius: 20px;
  --btn-radius: 0px;
  --shadow-card: 0 2px 12px rgba(0,0,0,.06);
  --container: 1200px;
  --section-pad: 104px;
  --pad-x: 16px;
  --font-headings: "Times New Roman", Times, serif;
  --font-body: Verdana, Geneva, sans-serif;
  --h1: clamp(40px, 6.2vw, 68px);
  --h2: clamp(26px, 4.2vw, 42px);
  --hero-line: 1.1;
  --kicker-letter: 0.2em;
  --head-weight: 600;
  --heading-letter: -0.8px;
  --reveal-dur: 240ms;
 }

 * {
  box-sizing: border-box;
 }

 html {
  scroll-behavior: auto;
 }

 body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.72;
 }

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

 a {
  color: var(--accent-2);
  text-decoration: none;
 }

 a:hover {
  text-decoration: underline;
 }

 .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
 }

 .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
 }

 .nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
 }

 .brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
 }

 .brand img {
  width: 42px;
  height: auto;
 }

 .brand-text {
  font-family: var(--font-headings);
  font-weight: var(--head-weight);
  letter-spacing: var(--heading-letter);
  font-size: 22px;
  line-height: 1.1;
  color: var(--text);
 }

 .nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--text);
  cursor: pointer;
 }

 .nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
 }

 .nav-toggle-lines {
  width: 22px;
  height: 14px;
  position: relative;
 }

 .nav-toggle-lines span {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
 }

 .nav-toggle-lines span:nth-child(1) {
  top: 0;
 }

 .nav-toggle-lines span:nth-child(2) {
  top: 6px;
 }

 .nav-toggle-lines span:nth-child(3) {
  top: 12px;
 }

 .nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
 }

 .nav-links a {
  font-size: 15px;
  color: var(--secondary);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
 }

 .nav-links a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
 }

 .nav-links a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-bottom-color: transparent;
  border-radius: 6px;
 }

 @media (max-width: 900px) {
  .nav-toggle {
   display: inline-flex;
  }

  .nav-links {
   position: absolute;
   top: 74px;
   left: 0;
   right: 0;
   margin: 0;
   padding: 14px var(--pad-x) 22px;
   background: rgba(255,255,255,0.96);
   backdrop-filter: blur(10px);
   border-bottom: 1px solid var(--border);
   flex-direction: column;
   gap: 10px;
   align-items: flex-start;
   transform: translateY(-8px);
   opacity: 0;
   pointer-events: none;
   transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-inner {
   position: relative;
  }

  .nav-links.is-open {
   transform: translateY(0);
   opacity: 1;
   pointer-events: auto;
  }

  .nav-links a {
   width: 100%;
   padding: 10px 12px;
   border-bottom: none;
   border-radius: 12px;
  }

  .nav-links a[aria-current="page"] {
   border-bottom: none;
   background: rgba(179,98,58,0.10);
  }
 }

 main {
  padding-bottom: 30px;
 }

 .page-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
 }

 .section {
  padding: var(--section-pad) 0;
 }

 .section-boundary {
  border-top: 1px solid var(--border);
 }

 .kicker {
  font-size: 12px;
  letter-spacing: var(--kicker-letter);
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
 }

 h1, h2, h3 {
  font-family: var(--font-headings);
  letter-spacing: var(--heading-letter);
  color: var(--text);
  margin: 0;
  font-weight: var(--head-weight);
 }

 h1 {
  font-size: var(--h1);
  line-height: var(--hero-line);
 }

 h2 {
  font-size: var(--h2);
  line-height: 1.2;
 }

 .muted {
  color: var(--text-muted);
 }

 .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  border-radius: var(--btn-radius);
  padding: 0 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
 }

 .btn-primary {
  background: var(--accent);
  border-color: rgba(179,98,58,0.32);
  color: var(--on-accent);
 }

 .btn:hover {
  text-decoration: none;
 }

 .card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
 }

 .card-media-square {
  aspect-ratio: 1 / 1;
  overflow: hidden;
 }

 .card-media-square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
 }

 .text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--accent-2);
 }

 .text-link span {
  text-decoration: underline;
 }

 .hero {
  position: relative;
  padding: 78px 0 88px;
 }

 .hero-card-boundary {
  border-bottom: 1px solid var(--border);
 }

 .hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px 44px;
  align-items: start;
  position: relative;
 }

 .hero-title {
  grid-column: 1 / -1;
 }

 .hero-intro {
  grid-column: 2 / -1;
  margin-top: 16px;
  max-width: 520px;
 }

 .hero-independence {
  grid-column: 1 / -1;
  margin-top: 18px;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 820px;
 }

 .hero-photo {
  position: absolute;
  right: var(--pad-x);
  bottom: -92px;
  width: min(420px, 46vw);
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  z-index: 5;
 }

 .hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
 }

 @media (max-width: 768px) {
  .hero {
   padding: 68px 0 70px;
  }

  .hero-grid {
   grid-template-columns: 1fr;
   gap: 16px;
  }

  .hero-intro {
   grid-column: 1 / -1;
   margin-top: 0;
   max-width: none;
  }

  .hero-photo {
   position: relative;
   right: auto;
   bottom: auto;
   width: 100%;
   max-width: 420px;
   margin-top: 18px;
  }

  .hero-independence {
   margin-top: 12px;
  }
 }

 .content-grid-categories {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
 }

 @media (max-width: 900px) {
  .content-grid-categories {
   grid-template-columns: repeat(2, minmax(0, 1fr));
  }
 }

 @media (max-width: 560px) {
  .content-grid-categories {
   grid-template-columns: 1fr;
  }
 }

 .category-card {
  display: flex;
  flex-direction: column;
  height: 100%;
 }

 .category-card .card-body {
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
 }

 .category-card h3 {
  font-size: 20px;
  line-height: 1.25;
 }

 .category-desc {
  font-size: 14px;
  color: var(--text-muted);
 }

 .category-card .card-footer {
  padding: 0 18px 18px;
 }

 .split-about {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
 }

 .split-about .about-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 1 / 1;
 }

 .split-about .about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
 }

 .split-about h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 42px);
 }

 .split-about p {
  margin: 0 0 14px;
  color: var(--text-muted);
 }

 @media (max-width: 900px) {
  .split-about {
   grid-template-columns: 1fr;
  }

  .split-about .about-photo {
   aspect-ratio: 16 / 10;
  }
 }

 .quote-block {
  max-width: 920px;
  margin: 0 auto;
 }

 .quote-text {
  font-family: var(--font-headings);
  font-weight: 700;
  color: var(--accent);
  font-size: clamp(30px, 4.8vw, 52px);
  line-height: 1.16;
  margin-bottom: 18px;
 }

 .quote-block p {
  margin: 0 0 14px;
  color: var(--text-muted);
 }

 .regions-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
 }

 @media (max-width: 1024px) {
  .regions-grid {
   grid-template-columns: repeat(4, minmax(0, 1fr));
  }
 }

 @media (max-width: 900px) {
  .regions-grid {
   grid-template-columns: repeat(3, minmax(0, 1fr));
  }
 }

 @media (max-width: 560px) {
  .regions-grid {
   grid-template-columns: 1fr;
  }
 }

 .region-tile {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 16px 18px;
  box-shadow: var(--shadow-card);
 }

 .region-tile h3 {
  font-size: 18px;
  margin-bottom: 8px;
 }

 .region-tile p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
 }

 .reveal {
  opacity: 0;
  transition: opacity var(--reveal-dur) ease;
 }

 .reveal.is-visible {
  opacity: 1;
 }

 @media (prefers-reduced-motion: reduce) {
  .reveal {
   opacity: 1;
  }

  html {
   scroll-behavior: auto;
  }
 }

 .venue-list {
  display: grid;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--surface);
 }

 .venue-row {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
 }

 .venue-row:first-child {
  border-top: 1px solid var(--border);
 }

 @media (max-width: 768px) {
  .venue-row {
   grid-template-columns: 82px 1fr;
   grid-template-areas:
    "thumb content"
    "button button";
  }

  .venue-row .venue-thumb {
   grid-area: thumb;
  }

  .venue-row .venue-content {
   grid-area: content;
   text-align: left;
  }

  .venue-row .venue-button-wrap {
   grid-area: button;
   justify-self: stretch;
  }
 }

 @media (min-width: 769px) {
  .venue-row .venue-content {
   text-align: center;
  }
 }

 .venue-thumb {
  width: 74px;
  height: 74px;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border);
  justify-self: start;
 }

 .venue-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
 }

 .venue-title-line {
  font-family: var(--font-headings);
  font-size: 20px;
  letter-spacing: -0.6px;
  font-weight: 700;
  margin-bottom: 8px;
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
 }

 .venue-title-line .middot {
  font-size: 18px;
  color: var(--text-muted);
 }

 .venue-desc {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  max-width: 520px;
 }

 .venue-button-wrap {
  justify-self: end;
  min-width: 200px;
 }

 .venue-button-wrap .btn {
  width: 100%;
 }

 .grid-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
 }

 @media (max-width: 900px) {
  .grid-cards {
   grid-template-columns: 1fr;
  }
 }

 .venue-card-grid {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
 }

 .venue-card-grid .media {
  position: relative;
 }

 .venue-card-grid .media img {
  width: 100%;
  height: 320px;
  object-fit: cover;
 }

 @media (max-width: 480px) {
  .venue-card-grid .media img {
   height: 260px;
  }
 }

 .venue-card-grid .content {
  padding: 22px 22px 18px;
  flex: 1;
 }

 .venue-card-grid .content h3 {
  font-size: 22px;
  margin-bottom: 8px;
 }

 .venue-card-grid .subline {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
  font-family: var(--font-headings);
 }

 .venue-card-grid .content p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
 }

 .venue-card-grid .footer {
  padding: 0 22px 22px;
 }

 .venue-band {
  border-top: 1px solid var(--border);
  padding: 22px 0 28px;
 }

 .venue-band:first-child {
  border-top: none;
 }

 .venue-band .photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
 }

 .venue-band .photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
 }

 @media (max-width: 480px) {
  .venue-band .photo img {
   height: 250px;
  }
 }

 .venue-band .text {
  padding-top: 14px;
  text-align: center;
 }

 .venue-band h3 {
  font-size: 24px;
  margin-bottom: 8px;
 }

 .venue-band .subline {
  font-family: var(--font-headings);
  color: var(--text-muted);
  margin-bottom: 12px;
 }

 .venue-band p {
  margin: 0 auto 16px;
  color: var(--text-muted);
  font-size: 14px;
  max-width: 680px;
 }

 .venue-band .btn {
  width: min(360px, 100%);
 }

 .title-block {
  padding: 88px 0 30px;
 }

 .title-block h1 {
  margin-bottom: 12px;
 }

 .title-intro {
  margin: 0;
  max-width: 820px;
  color: var(--text-muted);
  font-size: 16px;
 }

 .closing-note {
  margin-top: 34px;
  color: var(--text-muted);
  font-size: 14px;
 }

 .closing-note a {
  font-weight: 700;
 }

 .editorial-column {
  max-width: 70ch;
 }

 .editorial-section {
  padding: 0 0 24px;
  margin: 0 0 24px;
  border-bottom: 1px solid var(--border);
 }

 .editorial-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
 }

 .editorial-section h2 {
  font-size: 26px;
  margin-bottom: 14px;
 }

 .editorial-section p {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 15px;
 }

 .contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
 }

 .form-shell {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 22px;
 }

 .contact-wrap .email-line {
  font-size: 14px;
  color: var(--text-muted);
 }

 .field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
 }

 @media (max-width: 768px) {
  .field-grid {
   grid-template-columns: 1fr;
  }
 }

 label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 13px;
  color: var(--secondary);
 }

 input[type="text"], input[type="email"], select, textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 12px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 14px;
 }

 textarea {
  min-height: 120px;
  resize: vertical;
 }

 input:focus, select:focus, textarea:focus {
  outline: 2px solid rgba(179,98,58,0.45);
  outline-offset: 2px;
 }

 .form-actions {
  margin-top: 16px;
  display: flex;
  justify-content: flex-start;
 }

 .agreement {
  margin-top: 8px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
 }

 .agreement input {
  margin-top: 3px;
 }

 .agreement .agreement-error {
  margin-top: 8px;
  font-size: 13px;
  color: #7b1b1b;
 }

 .network-error {
  margin-top: 12px;
  font-size: 13px;
  color: #7b1b1b;
 }

 .sitemap-groups {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 22px;
  padding-top: 26px;
 }

 @media (max-width: 768px) {
  .sitemap-groups {
   grid-template-columns: 1fr;
  }
 }

 .sitemap-group h3 {
  font-family: var(--font-headings);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 10px;
  color: var(--secondary);
  font-weight: 800;
 }

 .sitemap-group .hairline {
  height: 1px;
  background: var(--border);
  margin-bottom: 14px;
 }

 .sitemap-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
 }

 .sitemap-group a {
  color: var(--secondary);
  font-weight: 700;
 }

 footer {
  background: var(--surface-alt);
 }

 .footer-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 34px var(--pad-x) 24px;
 }

 .footer-independence {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 18px;
 }

 .footer-upper {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 26px;
  align-items: start;
 }

 .footer-brand {
  display: grid;
  gap: 10px;
  align-content: start;
 }

 .footer-brand .brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
 }

 .footer-brand img {
  width: 42px;
  height: auto;
 }

 .footer-brand .brand-name {
  font-family: var(--font-headings);
  font-weight: var(--head-weight);
  letter-spacing: var(--heading-letter);
  font-size: 22px;
  line-height: 1.1;
 }

 .footer-brand p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  max-width: 420px;
 }

 .footer-links-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
 }

 .footer-groups {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
 }

 @media (max-width: 1024px) {
  .footer-upper {
   grid-template-columns: 1fr;
  }

  .footer-groups {
   grid-template-columns: 1fr;
  }
 }

 .footer-group h3 {
  font-family: var(--font-headings);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--secondary);
  font-weight: 800;
  margin: 0 0 10px;
 }

 .footer-group .hairline {
  height: 1px;
  background: var(--border);
  margin-bottom: 14px;
 }

 .footer-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
 }

 .footer-group a {
  color: var(--secondary);
  font-weight: 700;
 }

 .footer-back-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 10px;
 }

 .back-to-top {
  color: var(--secondary);
  font-weight: 700;
 }

 .footer-lower {
  margin-top: 34px;
  padding-top: 20px;
  background: var(--surface);
  border-radius: var(--radius);
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 18px;
 }

 .footer-bottom-row {
  display: flex;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
 }

 .footer-consent-row {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
 }

 .cookie-settings-btn {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--accent-2);
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
 }

 .adults-note {
  text-align: center;
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-muted);
 }

 .consent-banner {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 50;
  display: flex;
  gap: 16px;
  align-items: stretch;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(26,31,39,0.18);
  border-radius: var(--radius);
  padding: 16px;
 }

 .consent-left {
  flex: 1;
  min-width: 240px;
 }

 .consent-headline {
  font-weight: 900;
  letter-spacing: -0.2px;
 }

 .consent-copy {
  margin-top: 6px;
  color: var(--text-muted);
  font-size: 13px;
 }

 .consent-policy {
  color: var(--accent-2);
  font-weight: 800;
  text-decoration: underline;
 }

 .consent-divider {
  width: 1px;
  background: rgba(26,31,39,0.12);
  margin: 0 4px;
 }

 .consent-right {
  width: 360px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
 }

 .consent-options {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 12px;
 }

 .consent-option {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
 }

 .consent-option input {
  width: 16px;
  height: 16px;
 }

 .consent-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
 }

 .consent-accept {
  height: 44px;
  border-radius: var(--btn-radius);
  background: var(--accent);
  border: 1px solid rgba(179,98,58,0.32);
  color: var(--on-accent);
  cursor: pointer;
  font-weight: 900;
 }

 .consent-accept:disabled {
  opacity: 0.7;
  cursor: not-allowed;
 }

 .consent-link-row {
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
 }

 .consent-link {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--secondary);
  text-decoration: underline;
  font-weight: 900;
  cursor: pointer;
  font-size: 14px;
 }

 .consent-adjust {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--accent-2);
  text-decoration: underline;
  font-weight: 900;
  cursor: pointer;
  font-size: 14px;
  align-self: flex-start;
 }

 @media (max-width: 768px) {
  .consent-right {
   width: 260px;
  }

  .consent-banner {
   padding: 14px;
  }
 }

 @media (max-width: 480px) {
  .consent-banner {
   flex-direction: column;
   gap: 12px;
  }

  .consent-divider {
   display: none;
  }

  .consent-right {
   width: 100%;
  }
 }
