:root {
  --bg: #F0F4EF;
  --surface: #FFFFFF;
  --text: #1E2923;
  --muted: #5C6B61;
  --primary: #86A384;
  --secondary: #B3C1AD;
  --accent: #D4A373;
  --border: rgba(30,41,35,0.08);
  --offer-bg: #1a1a1a;
  --offer-border: #2a2a2a;
  --offer-bonus: #ffd700;
  --offer-cta-bg: #22c55e;
  --offer-cta-text: #ffffff;
  --max: 1200px;
  --nav-h: 52px;
  --font-body: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: Georgia, "Palatino Linotype", Palatino, "Times New Roman", serif;
  --kw-zen: zen;
  --kw-japanese: japanese;
  --kw-wabi: wabi-sabi;
  --kw-calm: calm;
  --kw-minimal: minimal;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(165deg, var(--bg) 0%, rgba(179, 193, 173, 0.35) 38%, var(--bg) 72%),
    radial-gradient(ellipse 70% 50% at 90% 0%, rgba(212, 163, 115, 0.12), transparent 55%);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
  padding-bottom: calc(var(--nav-h) + 16px);
}

body::before {
  content: var(--kw-zen) " " var(--kw-japanese);
  position: fixed;
  inset: 0;
  font-size: 0;
  line-height: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 47px,
      rgba(30, 41, 35, 0.02) 47px,
      rgba(30, 41, 35, 0.02) 48px
    ),
    radial-gradient(circle at 12% 80%, rgba(134, 163, 132, 0.1), transparent 42%);
  opacity: 0.9;
}

body::after {
  content: var(--kw-wabi) " " var(--kw-calm) " " var(--kw-minimal);
  position: fixed;
  inset: 0;
  font-size: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.22;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.45'/%3E%3C/svg%3E");
  background-size: 220px 220px;
  mix-blend-mode: multiply;
}

body > * {
  position: relative;
  z-index: 1;
}

main {
  flex: 1 0 auto;
}

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

a {
  color: var(--primary);
  transition: color 0.35s ease, opacity 0.35s ease;
}

.disclosure-banner {
  width: fit-content;
  max-width: calc(100% - 24px);
  margin: 6px auto;
  padding: 6px 20px;
  background: none;
  border: 1px solid var(--muted);
  border-radius: 4px;
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
  color: var(--muted);
}

.site-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 200;
  background: #1a221c;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 8px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #f5f7f4;
  flex-shrink: 0;
  margin-right: 8px;
}

.brand-lockup img {
  width: 28px;
  height: 28px;
  display: block;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #f5f7f4;
}

.nav-links {
  display: flex;
  align-items: stretch;
  justify-content: space-evenly;
  flex: 1;
  height: 100%;
  min-width: 0;
}

.nav-links a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  color: rgba(245, 247, 244, 0.78);
  font-size: 10px;
  line-height: 1;
  padding: 4px 2px;
  min-width: 0;
  flex: 1;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

.nav-icon {
  width: 18px;
  height: 18px;
  display: block;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.nav-more {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 52px;
  height: 100%;
  border: none;
  background: transparent;
  color: rgba(245, 247, 244, 0.78);
  cursor: pointer;
  font-size: 10px;
  font-family: var(--font-body);
  flex-shrink: 0;
}

.nav-more-bars {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nav-more-bars span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: currentColor;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 41, 35, 0.94);
  z-index: 300;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.nav-overlay a {
  color: #f5f7f4;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.nav-overlay-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  width: 40px;
  height: 40px;
  font-size: 1.4rem;
  cursor: pointer;
  border-radius: 4px;
}

.hero {
  display: grid;
  grid-template-columns: 45% 55%;
  min-height: 420px;
  max-width: var(--max);
  margin: 12px auto 0;
  overflow: hidden;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
  max-height: none;
}

.hero-copy {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  text-align: right;
  padding: 48px 40px;
  gap: 16px;
  border-left: 1px solid var(--border);
}

.hero-copy h1 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.01em;
}

.hero-copy p {
  color: var(--muted);
  max-width: 340px;
  font-size: 1rem;
}

.hero-cta {
  display: inline-block;
  margin-top: 8px;
  padding: 10px 22px;
  background: var(--primary);
  color: var(--surface);
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 2px;
  transition: background 0.35s ease;
}

.hero-cta:hover {
  background: var(--accent);
  color: var(--surface);
}

.offers-section {
  position: relative;
  padding: 56px 20px 64px;
  background-color: var(--surface);
  background-image:
    linear-gradient(180deg, rgba(240, 244, 239, 0.88), rgba(30, 41, 35, 0.72)),
    url("/images/offers_bg/offers_bg.webp");
  background-size: cover;
  background-position: center;
}

.offers-section::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 8%;
  width: 120px;
  height: 1px;
  background: var(--secondary);
  opacity: 0.6;
}

.offers-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.offers-head {
  text-align: center;
  margin-bottom: 36px;
}

.offers-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 400;
  color: var(--surface);
  margin-bottom: 8px;
}

.offers-head p {
  color: rgba(245, 247, 244, 0.8);
  max-width: 480px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.offer-card {
  background: var(--offer-bg);
  border: 1px solid var(--offer-border);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-logo {
  width: 200px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 12px;
  background: #0d0d0d;
  padding: 10px;
}

.offer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  max-width: none;
  max-height: none;
}

.offer-name {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
}

.offer-bonus-group {
  text-align: center;
}

.offer-bonus {
  margin: 0;
  color: var(--offer-bonus);
  font-weight: 700;
  font-size: clamp(0.82rem, 2.4vw, 1rem);
  line-height: 1.35;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.offer-terms {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  color: #9ca3af;
}

.offer-desc {
  font-size: 0.78rem;
  color: #9ca3af;
  text-align: center;
  line-height: 1.45;
}

.offer-cta {
  display: block;
  margin-top: auto;
  padding: 12px 16px;
  background: var(--offer-cta-bg);
  color: var(--offer-cta-text);
  text-align: center;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  cursor: pointer;
}

.offer-cta:hover {
  filter: brightness(1.08);
  color: var(--offer-cta-text);
}

.info-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 24px;
  position: relative;
}

.info-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  font-weight: 400;
  margin-bottom: 18px;
  color: var(--text);
}

.info-section p {
  color: var(--muted);
  margin-bottom: 14px;
}

.info-section ul,
.info-section ol {
  margin: 12px 0 18px 1.2rem;
  color: var(--muted);
}

.info-section li {
  margin-bottom: 8px;
}

.info-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 11px 20px;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--primary);
  text-decoration: none;
  font-size: 0.92rem;
  border-radius: 2px;
  transition: background 0.35s ease, color 0.35s ease;
}

.info-cta:hover {
  background: var(--primary);
  color: var(--surface);
}

.decor-wrap {
  overflow: hidden;
  max-width: 100%;
}

.decor-wrap img {
  max-width: min(500px, 100%);
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: cover;
  display: block;
}

.layout-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: start;
}

.layout-split-rev {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: center;
}

.layout-asymmetric {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
  align-items: start;
}

.layout-stack {
  max-width: 680px;
  margin-left: 8%;
}

.layout-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.mini-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 18px 16px;
  border-radius: 2px;
}

.mini-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text);
}

.mini-card p {
  font-size: 0.88rem;
  margin: 0;
}

.pull-quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.45;
  color: var(--text);
  border-left: 2px solid var(--accent);
  padding: 8px 0 8px 20px;
  margin: 24px 0;
  max-width: 420px;
}

.steps-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.step-item {
  flex: 1 1 160px;
  padding: 16px;
  background: rgba(134, 163, 132, 0.12);
  border-radius: 2px;
}

.step-item span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-top: 16px;
  list-style: none;
  margin-left: 0;
}

.check-grid li {
  padding-left: 18px;
  position: relative;
}

.check-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.band-visual {
  margin: 28px 0;
  height: 160px;
  max-width: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  opacity: 0.92;
}

.faq-block details {
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.faq-block summary {
  cursor: pointer;
  font-family: var(--font-display);
  color: var(--text);
  list-style: none;
}

.faq-block summary::-webkit-details-marker {
  display: none;
}

.faq-block p {
  margin-top: 10px;
  margin-bottom: 0;
}

.info-alt {
  background: rgba(179, 193, 173, 0.18);
}

.info-alt .info-section,
section.info-alt {
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

.info-alt-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 24px;
}

.wide-narrow {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 28px;
}

.offset-block {
  margin-left: auto;
  max-width: 640px;
  padding-right: 4%;
}

.site-footer {
  background: #1a221c;
  color: rgba(245, 247, 244, 0.82);
  padding: 48px 24px 32px;
  margin-top: 40px;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 24px;
}

.footer-brand .brand-name {
  color: #f5f7f4;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 28px;
}

.footer-links a {
  color: rgba(245, 247, 244, 0.75);
  text-decoration: none;
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.footer-badges a,
.footer-badges span {
  display: inline-flex;
}

.footer-badges img {
  height: 36px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  filter: brightness(0.95);
}

.footer-compliance,
.footer-helpline,
.footer-updated,
.footer-requisites {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(245, 247, 244, 0.65);
  margin-bottom: 12px;
  max-width: 820px;
}

.footer-helpline {
  color: rgba(245, 247, 244, 0.85);
}

.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 41, 35, 0.92);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  padding: 20px;
}

.age-overlay.active {
  opacity: 1;
  visibility: visible;
}

.age-dialog {
  background: var(--surface);
  padding: 36px 32px;
  max-width: 400px;
  width: 100%;
  text-align: center;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.age-dialog h2 {
  font-family: var(--font-display);
  font-weight: 400;
  margin-bottom: 12px;
}

.age-dialog p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

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

.btn-confirm,
.btn-decline,
#cookie-accept,
#cookie-reject {
  padding: 12px 16px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.92rem;
  border-radius: 2px;
}

.btn-confirm,
#cookie-accept {
  background: var(--primary);
  color: var(--surface);
}

.btn-decline,
#cookie-reject {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.age-blocked {
  display: none;
  color: #fff;
  text-align: center;
  font-size: 1.05rem;
  max-width: 360px;
}

.age-blocked.visible {
  display: block;
}

.cookie-banner {
  position: fixed;
  bottom: calc(var(--nav-h) + 12px);
  left: 16px;
  right: 16px;
  max-width: 480px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 18px 20px;
  z-index: 350;
  border-radius: 4px;
  box-shadow: 0 8px 28px rgba(30, 41, 35, 0.12);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.cookie-banner.active {
  opacity: 1;
  visibility: visible;
}

.cookie-inner p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  max-width: var(--max);
  margin: 24px auto 0;
  padding: 40px 24px 28px;
  text-align: right;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 8px;
}

.page-hero p {
  color: var(--muted);
}

.legal-content,
.contact-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

.legal-content h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  margin: 28px 0 12px;
}

.legal-content p,
.contact-content p {
  color: var(--muted);
  margin-bottom: 14px;
}

.legal-content ul {
  margin: 0 0 16px 1.2rem;
  color: var(--muted);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--text);
}

.contact-form input,
.contact-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--surface);
  color: var(--text);
}

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

.contact-form button {
  align-self: flex-start;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--surface);
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  border-radius: 2px;
}

.form-error {
  display: none;
  color: #a44;
  font-size: 0.85rem;
  margin: -6px 0 0;
}

.form-error.visible {
  display: block;
}

.form-success {
  display: none;
  padding: 24px;
  background: rgba(134, 163, 132, 0.18);
  border: 1px solid var(--primary);
  color: var(--text);
  margin-top: 20px;
  border-radius: 2px;
}

.form-success.visible {
  display: block;
}

.go-page {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  gap: 16px;
}

.go-ad {
  font-size: 0.85rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.go-page h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
}

.go-page p {
  color: var(--muted);
  max-width: 420px;
}

.go-spinner {
  width: 36px;
  height: 36px;
  border: 2px solid var(--secondary);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 12px 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.go-compliance {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 480px;
}

.go-compliance a {
  color: var(--primary);
}

.error-page {
  text-align: center;
  padding: 80px 24px;
}

.error-page h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  margin-bottom: 12px;
}

.error-page p {
  color: var(--muted);
  margin-bottom: 24px;
}

.error-page a {
  display: inline-block;
  padding: 12px 22px;
  background: var(--primary);
  color: var(--surface);
  text-decoration: none;
  border-radius: 2px;
}

.topic-hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  max-width: var(--max);
  margin: 16px auto 0;
  overflow: hidden;
}

.topic-hero-visual {
  min-height: 220px;
  background-size: cover;
  background-position: center;
}

.topic-hero-copy {
  background: var(--surface);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.topic-hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 10px;
}

.topic-hero-copy p {
  color: var(--muted);
}

.topic-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.topic-body h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  margin: 32px 0 12px;
}

.topic-body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
  margin: 24px 0 10px;
}

.topic-body p {
  color: var(--muted);
  margin-bottom: 14px;
}

.topic-body ul {
  margin: 0 0 16px 1.2rem;
  color: var(--muted);
}

.topic-rail {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 36px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.topic-rail-aside {
  position: sticky;
  top: 24px;
  align-self: start;
}

.topic-rail-aside .decor-wrap img {
  max-width: 100%;
}

.stat-band {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-around;
  padding: 28px 24px;
  background: rgba(134, 163, 132, 0.15);
  margin: 32px 0;
  border-radius: 2px;
}

.stat-band div {
  text-align: center;
  min-width: 120px;
}

.stat-band strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--text);
}

.stat-band span {
  font-size: 0.82rem;
  color: var(--muted);
}

.split-topic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.mosaic-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 28px 0;
}

.mosaic-band .decor-wrap {
  justify-self: center;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    max-width: 100%;
    overflow: hidden;
  }

  .hero-visual {
    max-height: 180px;
    min-height: 140px;
    max-width: 100%;
    overflow: hidden;
  }

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

  .hero-copy {
    align-items: flex-start;
    text-align: left;
    padding: 28px 20px 36px;
    border-left: none;
    border-top: 1px solid var(--border);
  }

  .layout-split,
  .layout-split-rev,
  .layout-asymmetric,
  .wide-narrow,
  .topic-hero,
  .topic-rail,
  .split-topic {
    grid-template-columns: 1fr;
  }

  .topic-hero {
    max-width: 100%;
    overflow: hidden;
  }

  .topic-hero-visual {
    max-width: 100%;
    overflow: hidden;
    min-height: 160px;
    max-height: 200px;
  }

  .layout-cards {
    grid-template-columns: 1fr;
  }

  .layout-stack,
  .offset-block {
    margin-left: 0;
    padding-right: 0;
    max-width: 100%;
  }

  .check-grid {
    grid-template-columns: 1fr;
  }

  .nav-secondary {
    display: none;
  }

  .nav-more {
    display: flex;
  }

  .topic-rail-aside {
    position: static;
  }

  .decor-wrap {
    max-width: 100%;
    overflow: hidden;
  }

  .decor-wrap img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 260px;
  }

  .offer-logo {
    width: 180px;
    height: 90px;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }
}

@media (max-width: 600px) {
  .nav-links.nav-primary a:nth-child(n+6) {
    display: none;
  }

  .offers-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    left: 10px;
    right: 10px;
  }

  .info-section,
  .info-alt-inner,
  .page-hero,
  .legal-content,
  .contact-content,
  .topic-body,
  .topic-rail,
  .split-topic {
    padding-left: 16px;
    padding-right: 16px;
  }

  .disclosure-banner {
    max-width: calc(100% - 16px);
    margin-left: auto;
    margin-right: auto;
  }

  .decor-wrap img {
    max-width: 100%;
    max-height: 200px;
  }

  .hero-visual {
    max-height: 160px;
  }

  .offer-logo {
    width: 160px;
    height: 80px;
  }

  .offer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  .offer-bonus {
    font-size: 0.8rem;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .mosaic-band {
    grid-template-columns: 1fr;
  }
}
