:root {
  color-scheme: light;
  --bg: #fff0c8;
  --bg-soft: #d8efd1;
  --panel: #fff8e8;
  --panel-2: #ffdf7e;
  --line: #d4a93f;
  --text: #24130a;
  --muted: #614b31;
  --gold: #ffc21c;
  --gold-2: #fff15f;
  --orange: #f05a24;
  --red: #c91f17;
  --green: #14965f;
  --green-soft: #cdebbf;
  --asphalt: #151a1d;
  --button-ink: #221008;
  --button-hot: #e5331e;
  --button-fire: #f05a24;
  --button-sun: #ffc21c;
  --button-lime: #8edb4f;
  --shadow: 0 18px 48px rgba(74, 43, 11, .18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

figure {
  margin: 0;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(212, 169, 63, .9);
  background: rgba(255, 240, 200, .94);
  backdrop-filter: blur(14px);
}

.header-inner,
.section-inner,
.footer-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto auto auto auto;
  align-items: center;
  justify-content: center;
  width: min(1440px, calc(100% - 32px));
  min-height: 72px;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
  transform: translateX(-48px);
}

.brand-name {
  display: none;
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  background: #ffc21c;
  box-shadow: 0 10px 24px rgba(240, 90, 36, .28);
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 0;
  padding: 8px;
  border: 1px solid rgba(255, 194, 28, .78);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 248, 232, .92) 0%, rgba(255, 224, 124, .72) 48%, rgba(205, 235, 191, .78) 100%);
  box-shadow: 0 12px 30px rgba(74, 43, 11, .16), inset 0 0 0 1px rgba(255, 255, 255, .42);
  font-size: 15px;
}

.nav a {
  --nav-accent: #f05a24;
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #3b2612;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
  background: rgba(255, 250, 240, .42);
  transition: color .22s ease, background-color .22s ease, border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.nav a:nth-child(1) {
  --nav-accent: #e5331e;
}

.nav a:nth-child(2) {
  --nav-accent: #ffc21c;
}

.nav a:nth-child(3) {
  --nav-accent: #14965f;
}

.nav a:nth-child(4) {
  --nav-accent: #f05a24;
}

.nav a:nth-child(5) {
  --nav-accent: #27b7a4;
}

.nav a:nth-child(6) {
  --nav-accent: #8edb4f;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 7px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fff15f, var(--nav-accent));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: #151a1d;
  border-color: var(--nav-accent);
  background: rgba(255, 250, 240, .92);
  box-shadow: inset 0 -5px 0 var(--nav-accent), 0 8px 18px rgba(74, 43, 11, .12);
  transform: translateY(-1px);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-promo-copy {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 146px;
  min-height: 54px;
  padding: 0 22px;
  border: 2px solid #0e8f7a;
  border-radius: 8px;
  background: linear-gradient(135deg, #efff9a 0%, #32d08f 48%, #0e8f7a 100%);
  color: #071b16;
  font-family: inherit;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .4px;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(14, 143, 122, .28), inset 0 0 0 2px rgba(255, 255, 255, .42);
}

.header-promo-copy:hover {
  border-color: #ffc21c;
  background: linear-gradient(135deg, #fff15f 0%, #42e29d 48%, #087c68 100%);
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(14, 143, 122, .36), inset 0 0 0 2px rgba(255, 255, 255, .52);
}

.header-promo-copy.is-copied {
  border-color: #0b6f48;
  background: linear-gradient(135deg, #dfffa8 0%, #69df76 48%, #10a35d 100%);
  color: #062015;
  box-shadow: 0 18px 34px rgba(16, 163, 93, .38), inset 0 0 0 2px rgba(255, 255, 255, .62);
}

.header-promo-copy.is-copied::before {
  content: "✓";
  margin-right: 8px;
  font-weight: 900;
}

.header-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 236px;
  min-height: 56px;
  margin-left: 0;
  padding: 0 32px;
  border: 3px solid #ff8723;
  border-radius: 12px;
  background:
    linear-gradient(135deg, #ffe85a 0%, #ffc840 44%, #ff9827 100%);
  color: var(--button-ink);
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 0 0 3px rgba(255, 135, 35, .22),
    0 18px 36px rgba(240, 90, 36, .34),
    inset 0 0 0 2px rgba(255, 255, 255, .36),
    inset 0 -5px 0 rgba(185, 93, 0, .24);
  isolation: isolate;
}

.header-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, transparent 0%, transparent 32%, rgba(255, 255, 255, .48) 46%, transparent 60%, transparent 100%);
  transform: translateX(-130%);
  transition: transform .55s ease;
  z-index: -1;
}

.header-cta:hover {
  transform: translateY(-3px);
  background:
    linear-gradient(135deg, #fff173 0%, #ffd64a 38%, #ff8b21 100%);
  box-shadow:
    0 0 0 4px rgba(255, 135, 35, .28),
    0 22px 42px rgba(240, 90, 36, .44),
    inset 0 0 0 2px rgba(255, 255, 255, .42),
    inset 0 -5px 0 rgba(185, 93, 0, .28);
}

.header-cta:hover::before {
  transform: translateX(130%);
}

.nav-toggle {
  position: relative;
  z-index: 40;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 50px;
  gap: 6px;
  width: 50px;
  height: 50px;
  border: 2px solid #14965f;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff15f 0%, #8edb4f 50%, #14965f 100%);
  color: #132014;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  box-shadow: 0 12px 24px rgba(20, 150, 95, .28), 0 0 0 4px rgba(255, 194, 28, .2);
}

.nav-toggle span {
  width: 24px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.button {
  border-color: rgba(185, 31, 24, .82);
  background:
    linear-gradient(135deg, #fff36a 0%, var(--button-sun) 38%, var(--button-fire) 72%, var(--button-hot) 100%);
  color: var(--button-ink);
  box-shadow: 0 14px 28px rgba(201, 31, 23, .26), inset 0 -2px 0 rgba(118, 35, 0, .16);
}

.button:hover {
  background:
    linear-gradient(135deg, #fff15f 0%, #ffae20 40%, #e5331e 100%);
  transform: translateY(-1px);
}

.button-secondary {
  border-color: rgba(20, 150, 95, .72);
  background: linear-gradient(135deg, #fffaf0 0%, #dff4b4 100%);
  color: #162116;
  box-shadow: inset 0 -1px 0 rgba(20, 150, 95, .14);
}

.button-secondary:hover {
  border-color: #f05a24;
  background: linear-gradient(135deg, #fff15f 0%, #ffc21c 48%, #8edb4f 100%);
  transform: translateY(-1px);
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 46px;
  z-index: 65;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid #151a1d;
  border-radius: 8px;
  background: linear-gradient(135deg, #8edb4f 0%, #ffc21c 52%, #f05a24 100%);
  color: #151a1d;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  box-shadow: 0 14px 28px rgba(20, 150, 95, .22), 0 0 0 4px rgba(255, 194, 28, .16);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.promo-pop {
  position: fixed;
  left: 28px;
  bottom: 28px;
  z-index: 56;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  width: min(560px, calc(100% - 56px));
  min-height: 162px;
  padding: 24px 62px 24px 24px;
  overflow: hidden;
  border: 2px solid rgba(255, 241, 95, .88);
  border-radius: 22px;
  background:
    linear-gradient(115deg, rgba(21, 26, 29, .24) 0 16%, transparent 16% 100%),
    linear-gradient(135deg, #8b160f 0%, #c91f17 34%, #f05a24 66%, #ffc21c 100%);
  color: #ffffff;
  box-shadow: 0 26px 58px rgba(36, 19, 10, .38), inset 0 0 0 1px rgba(255, 255, 255, .18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}

.promo-pop::before,
.promo-pop::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.promo-pop::before {
  content: "";
  inset: 12px 12px auto;
  height: 8px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, #fff15f 0 28px, #151a1d 28px 42px);
  opacity: .88;
}

.promo-pop::after {
  right: -70px;
  bottom: -92px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(142, 219, 79, .42) 0 34%, rgba(255, 194, 28, .24) 35% 54%, transparent 55%);
}

.promo-pop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.promo-pop-media {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  overflow: hidden;
  border: 3px solid rgba(255, 241, 95, .9);
  border-radius: 20px;
  background: #fff0c8;
  transform: none;
  box-shadow: 0 16px 28px rgba(36, 19, 10, .24), inset 0 0 0 1px rgba(255, 255, 255, .5);
}

.promo-pop-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
}

.promo-pop-body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  min-width: 0;
}

.promo-pop-body strong {
  width: fit-content;
  padding: 4px 10px 5px;
  border: 1px solid rgba(255, 241, 95, .58);
  border-radius: 999px;
  background: rgba(21, 26, 29, .32);
  font-size: 23px;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(36, 19, 10, .38);
}

.promo-pop-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 280px);
  min-height: 56px;
  padding: 10px 22px;
  border: 2px solid rgba(21, 26, 29, .85);
  border-radius: 14px;
  background:
    linear-gradient(135deg, #8edb4f 0%, #fff15f 36%, #ffc21c 64%, #f05a24 100%);
  color: #151a1d;
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 2px 5px rgba(36, 19, 10, .28);
  box-shadow: inset 0 -4px 0 rgba(185, 93, 0, .24), 0 14px 26px rgba(36, 19, 10, .28), 0 0 0 4px rgba(255, 255, 255, .18);
  transform: skewX(-4deg);
}

.promo-pop-close {
  position: absolute;
  z-index: 2;
  top: 10px;
  right: 10px;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(21, 26, 29, .78);
  border-radius: 12px;
  background: linear-gradient(135deg, #fff15f 0%, #ffc21c 58%, #8edb4f 100%);
  color: #151a1d;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(36, 19, 10, .28);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 660px;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 76% 15%, rgba(255, 194, 28, .38), transparent 30%),
    radial-gradient(circle at 14% 82%, rgba(20, 150, 95, .22), transparent 28%),
    radial-gradient(circle at 52% 38%, rgba(201, 31, 23, .10), transparent 34%),
    linear-gradient(180deg, #ffe07c 0%, #fff0c8 48%, #d8efd1 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(0deg, var(--bg), rgba(255, 240, 200, 0));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  align-items: center;
  gap: 48px;
  max-width: calc(100vw - 32px);
  padding: 72px 0 92px;
}

.hero-home .hero-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, .82fr);
  gap: 42px;
}

.hero-home .hero-art {
  align-self: center;
}

.hero-grid > *,
.grid-2 > *,
.grid-3 > * {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #9d3512;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero h1,
.page-hero h1 {
  width: min(100%, 860px);
  max-width: calc(100vw - 24px);
  margin: 14px 0 18px;
  font-size: clamp(34px, 3vw, 42px);
  line-height: 1.14;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.hero h1 span {
  display: inline;
}

.hero h1 span + span::before {
  content: " ";
}

.hero-copy {
  width: min(100%, 640px);
  max-width: calc(100vw - 24px);
  color: var(--muted);
  font-size: 18px;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.proof-item,
.card,
.summary-box,
.table-wrap,
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.proof-item {
  padding: 14px;
}

.proof-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.proof-value {
  display: block;
  margin-top: 4px;
  font-weight: 800;
}

.hero-art {
  display: block;
  width: 100%;
  max-width: calc(100vw - 24px);
  height: auto;
  overflow: hidden;
  border: 0;
  outline: 0;
  border-radius: 22px;
  background: transparent;
  box-shadow: 0 10px 22px rgba(105, 56, 8, .14);
  filter: saturate(1.05);
}

.hero-art img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  border-radius: inherit;
  object-fit: contain;
}

.hero-art figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.hero-home .hero-art {
  height: auto;
}

.article-media {
  width: min(100%, 860px);
  margin: 34px auto 0;
  border: 0;
  border-radius: 20px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.article-media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  border: 0;
  outline: 0;
  border-radius: 20px;
  background: transparent;
  box-shadow: 0 10px 22px rgba(74, 43, 11, .12);
  object-fit: contain;
}

.article-media figcaption {
  width: min(100%, 820px);
  margin: 10px auto 0;
  padding: 0 4px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.article-media--wide {
  width: min(100%, 860px);
}

.article-media--square {
  width: min(100%, 560px);
}

.article-media--wide img {
  height: auto;
}

.article-media--square img {
  width: 100%;
  margin: 0;
  height: auto;
  border-radius: 20px;
}

.content-narrow .article-media {
  grid-column: 1 / -1;
}

main {
  counter-reset: seo-section;
}

.section {
  position: relative;
  padding: 44px 0;
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  left: max(16px, calc((100% - 1120px) / 2));
  right: max(16px, calc((100% - 1120px) / 2));
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 169, 63, .75), transparent);
}

.section:first-of-type::before {
  content: none;
}

.section:nth-of-type(odd):not(.section-soft) {
  background:
    linear-gradient(90deg, rgba(255, 220, 121, .24), transparent 34%),
    linear-gradient(180deg, rgba(255, 248, 232, .48), rgba(255, 240, 200, 0));
}

.section:nth-of-type(even):not(.section-soft) {
  background:
    linear-gradient(90deg, rgba(20, 150, 95, .10), transparent 38%),
    linear-gradient(180deg, rgba(255, 240, 200, 0), rgba(255, 248, 232, .42));
}

.section.section-soft,
.section.alt {
  border-block: 1px solid rgba(20, 150, 95, .22);
  background:
    linear-gradient(90deg, rgba(20, 150, 95, .20), transparent 34%),
    linear-gradient(180deg, rgba(205, 235, 191, .86), rgba(255, 248, 232, .72));
}

.section .content-narrow {
  counter-increment: seo-section;
  position: relative;
  max-width: 980px;
}

.section .content-narrow::before {
  content: none;
}

.section .content-narrow::after {
  content: none;
}

.section .content-narrow > * {
  position: relative;
  z-index: 1;
}

.section .content-narrow h2 {
  margin: 12px 0 20px;
}

.section .content-narrow p {
  margin-bottom: 16px;
}

.section .content-narrow .tag + h2 + p,
.section .content-narrow h2 + p {
  margin-top: 0;
}

.section:nth-of-type(3n+2) .content-narrow {
  display: grid;
  grid-template-columns: minmax(220px, 315px) minmax(0, 1fr);
  column-gap: 42px;
  max-width: 1120px;
  padding: 34px 38px 36px;
  border: 1px solid rgba(212, 169, 63, .72);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 220, 121, .50) 0 32%, rgba(255, 248, 232, .96) 32%),
    var(--panel);
  box-shadow: 0 18px 42px rgba(74, 43, 11, .13);
}

.section:nth-of-type(3n+2) .content-narrow::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 32%;
  width: 1px;
  background: rgba(212, 169, 63, .68);
}

.section:nth-of-type(3n+2) .content-narrow::after {
  content: counter(seo-section, decimal-leading-zero);
  position: absolute;
  right: 24px;
  bottom: -24px;
  color: rgba(240, 90, 36, .11);
  font-size: 116px;
  font-weight: 900;
  line-height: .8;
  pointer-events: none;
}

.section:nth-of-type(3n+2) .content-narrow .tag,
.section:nth-of-type(3n+2) .content-narrow h2 {
  grid-column: 1;
}

.section:nth-of-type(3n+2) .content-narrow p {
  grid-column: 2;
  max-width: 760px;
  padding: 13px 16px;
  border-left: 4px solid rgba(20, 150, 95, .34);
  border-radius: 8px;
  background: rgba(255, 255, 255, .42);
  font-size: 17px;
  line-height: 1.58;
}

.section:nth-of-type(3n) .content-narrow {
  max-width: 1040px;
  padding: 34px 38px 36px;
  border-top: 7px solid #14965f;
  border-bottom: 1px solid rgba(20, 150, 95, .24);
  background: linear-gradient(180deg, rgba(205, 235, 191, .58), rgba(255, 248, 232, .55));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .50);
}

.section:nth-of-type(3n) .content-narrow h2 {
  max-width: 720px;
}

.section:nth-of-type(3n) .content-narrow p:first-of-type {
  max-width: 820px;
  padding: 18px 20px;
  border-radius: 8px;
  background: #fff8e8;
  color: var(--text);
  font-size: 19px;
  line-height: 1.5;
  box-shadow: 0 12px 26px rgba(74, 43, 11, .10);
}

.section:nth-of-type(3n) .content-narrow p:not(:first-of-type) {
  max-width: 780px;
  margin-left: min(8vw, 96px);
  padding-left: 18px;
  border-left: 3px solid rgba(240, 90, 36, .42);
}

.section:nth-of-type(3n+1) .content-narrow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  max-width: 1120px;
}

.section:nth-of-type(3n+1) .content-narrow .tag,
.section:nth-of-type(3n+1) .content-narrow h2 {
  grid-column: 1 / -1;
}

.section:nth-of-type(3n+1) .content-narrow h2 {
  max-width: 780px;
  margin-bottom: 8px;
}

.section:nth-of-type(3n+1) .content-narrow p {
  min-height: 118px;
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(212, 169, 63, .64);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 248, 232, .94), rgba(255, 220, 121, .20));
  box-shadow: 0 12px 28px rgba(74, 43, 11, .10);
}

.section:nth-of-type(3n+1) .content-narrow p:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(255, 248, 232, .94), rgba(205, 235, 191, .40));
}

.section.section-soft .section-inner {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(20, 150, 95, .30);
  border-radius: 8px;
  background: rgba(255, 248, 232, .78);
  box-shadow: 0 18px 42px rgba(74, 43, 11, .10);
}

.section-title {
  max-width: 760px;
  margin: 0 0 28px;
}

.section-title h2,
.page-content h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.08;
}

.section-title p,
.page-content p {
  color: var(--muted);
}

.section h2 {
  max-width: 920px;
  margin: 10px 0 18px;
  font-size: clamp(30px, 3.4vw, 42px);
  line-height: 1.12;
}

.section p {
  margin: 0 0 18px;
}

.section p:last-child {
  margin-bottom: 0;
}

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

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

.card {
  padding: 22px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 12px;
  border: 1px solid rgba(240, 90, 36, .22);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffdc79, #fff15f);
  color: #88300d;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(105, 56, 8, .10);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(212, 169, 63, .82);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(74, 43, 11, .12);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: rgba(255, 220, 121, .38);
  color: #8f340d;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

tbody tr:nth-child(even) td {
  background: rgba(255, 248, 232, .54);
}

td {
  color: var(--muted);
}

td strong {
  color: var(--text);
}

.status {
  color: var(--green);
  font-weight: 800;
}

.warning {
  color: #9d3512;
  font-weight: 800;
}

.summary-box {
  padding: 24px;
  background: linear-gradient(135deg, #ffdc79, #fff8e8 48%, #cdebbf);
}

.summary-box p {
  margin: 0;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid rgba(212, 169, 63, .88);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 10px 24px rgba(74, 43, 11, .10);
}

.faq summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--text);
  font-weight: 800;
}

.faq details p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.faq-item {
  padding: 20px;
  background: var(--panel);
}

.faq-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.cta-band {
  padding: 44px 0;
  background: linear-gradient(135deg, #fff15f, #ffc21c 46%, #f05a24);
  color: #241000;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.cta-grid h2 {
  margin: 0 0 8px;
  font-size: clamp(26px, 4vw, 40px);
}

.cta-grid p {
  margin: 0;
  max-width: 720px;
}

.cta-band .button-secondary {
  background: linear-gradient(135deg, #151a1d 0%, #24301f 48%, #8b160f 100%);
  border-color: rgba(255, 194, 28, .7);
  color: #fff;
  box-shadow: 0 14px 30px rgba(21, 26, 29, .28), inset 0 0 0 1px rgba(255, 194, 28, .22);
}

.cta-band .button-secondary:hover {
  background: linear-gradient(135deg, #24130a 0%, #c91f17 46%, #f05a24 100%);
  border-color: #fff15f;
}

.page-hero {
  padding: 70px 0 46px;
  background:
    radial-gradient(circle at 80% 0%, rgba(245, 189, 22, .28), transparent 28%),
    linear-gradient(180deg, #ffe07c 0%, #fff0c8 58%, var(--bg) 100%);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

.breadcrumbs a {
  color: #9d3512;
  text-decoration: none;
}

.page-content {
  padding: 42px 0 56px;
}

.content-narrow {
  max-width: 860px;
}

.content-narrow ul,
.content-narrow ol {
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid #242a2d;
  background: var(--asphalt);
  padding: 36px 0;
  color: #ead8ad;
  font-size: 14px;
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: #f6df9e;
  text-decoration: none;
}

.footer-inner-legal {
  grid-template-columns: 1fr;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(234, 216, 173, .18);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-legal a,
.footer-legal-button {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(246, 223, 158, .2);
  border-radius: 8px;
  color: #f6df9e;
  font: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, .04);
  cursor: pointer;
}

.footer-legal a:hover,
.footer-legal-button:hover {
  border-color: rgba(255, 194, 28, .62);
  color: #fff15f;
}

.disclaimer {
  margin-top: 16px;
  max-width: 920px;
  color: #d0b985;
}

@media (max-width: 880px) {
  body {
    padding-top: calc(env(safe-area-inset-top) + 152px);
  }

  .site-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    padding-top: calc(env(safe-area-inset-top) + 10px);
    overflow: visible;
    background: rgba(255, 240, 200, .96);
    backdrop-filter: blur(14px);
    transform: none;
    z-index: 1000;
  }

  .site-header::before {
    content: none;
  }

  .header-inner {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 14px 0;
    gap: 12px;
  }

  .nav-toggle {
    order: 2;
    position: relative;
    top: auto;
    right: auto;
    z-index: 1;
    display: inline-flex;
    margin-left: auto;
  }

  .brand {
    order: 1;
    position: static;
    top: auto;
    left: auto;
    z-index: 1;
    flex: 1 1 calc(100% - 62px);
    width: auto;
    min-width: 0;
    gap: 10px;
    transform: none;
  }

  .brand-name {
    display: inline-block;
    min-width: 0;
    overflow: hidden;
    color: #24130a;
    font-size: clamp(15px, 3.7vw, 19px);
    font-weight: 900;
    line-height: 1.05;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header-promo-copy,
  .header-cta {
    order: 3;
    display: inline-flex;
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
    min-height: 48px;
    padding: 0 14px;
    font-size: clamp(13px, 2.6vw, 15px);
    line-height: 1.12;
    text-align: center;
    white-space: normal;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .header-promo-copy {
    letter-spacing: .2px;
  }

  .header-cta {
    margin-left: 0;
    font-size: clamp(15px, 3.5vw, 17px);
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 8px;
    margin-left: 0;
    width: 100%;
    max-height: 0;
    padding: 0 10px;
    overflow: hidden;
    border-color: transparent;
    background:
      linear-gradient(135deg, rgba(255, 248, 232, .98) 0%, rgba(255, 224, 124, .92) 54%, rgba(205, 235, 191, .94) 100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: max-height .22s ease, padding .22s ease, opacity .18s ease, transform .18s ease, border-color .18s ease, visibility .18s ease;
    font-size: 14px;
  }

  .nav.is-open {
    max-height: 420px;
    padding: 10px;
    border-color: var(--line);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    min-height: 44px;
    justify-content: space-between;
    padding: 0 14px;
    background: rgba(255, 250, 240, .78);
    border: 1px solid rgba(212, 169, 63, .72);
  }

  .hero {
    min-height: auto;
    overflow-x: hidden;
  }

  .hero-grid,
  .grid-3,
  .grid-2,
  .cta-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 28px;
    padding: 44px 0 70px;
  }

  .hero .section-inner,
  .hero-grid,
  .hero-grid > div,
  .hero-copy,
  .hero h1,
  .hero-art,
  .hero-proof,
  .hero-actions {
    width: 100%;
    max-width: calc(100vw - 24px);
    min-width: 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(30px, 5vw, 38px);
    line-height: 1.14;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-wrap: wrap;
  }

  .hero-home .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    width: 100%;
    max-width: none;
  }

  .hero-actions,
  .hero-proof {
    width: 100%;
    max-width: none;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .section .content-narrow,
  .section:nth-of-type(3n+1) .content-narrow,
  .section:nth-of-type(3n+2) .content-narrow,
  .section:nth-of-type(3n) .content-narrow {
    display: block;
    max-width: 860px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .section .content-narrow::before,
  .section .content-narrow::after,
  .section:nth-of-type(3n+2) .content-narrow::before,
  .section:nth-of-type(3n+2) .content-narrow::after {
    content: none;
  }

  .section .content-narrow p,
  .section:nth-of-type(3n+1) .content-narrow p,
  .section:nth-of-type(3n+2) .content-narrow p,
  .section:nth-of-type(3n) .content-narrow p,
  .section:nth-of-type(3n) .content-narrow p:first-of-type,
  .section:nth-of-type(3n) .content-narrow p:not(:first-of-type) {
    max-width: none;
    min-height: 0;
    margin: 0 0 16px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    font-size: inherit;
    line-height: inherit;
  }

  .article-media img,
  .article-media--wide img,
  .article-media--square img {
    height: auto;
    max-height: 340px;
  }

  .cta-grid {
    align-items: start;
  }
}

@media (max-width: 520px) {
  body {
    padding-top: calc(env(safe-area-inset-top) + 142px);
  }

  .header-inner,
  .section-inner,
  .footer-inner {
    width: min(1120px, calc(100% - 24px));
  }

  .hero h1,
  .page-hero h1 {
    width: 100%;
    max-width: calc(100vw - 24px);
    font-size: clamp(26px, 8vw, 31px);
    line-height: 1.16;
    overflow-wrap: anywhere;
    word-break: break-word;
    text-wrap: wrap;
  }

  .hero .section-inner,
  .hero-grid,
  .hero-grid > div,
  .hero-copy,
  .hero-art,
  .hero-proof,
  .hero-actions {
    width: 100%;
    max-width: calc(100vw - 24px);
    min-width: 0;
  }

  .header-inner {
    gap: 10px;
    padding: 12px 0;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .nav-toggle {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

  .header-promo-copy,
  .header-cta {
    flex-basis: 100%;
    min-height: 46px;
    padding: 0 10px;
    border-width: 2px;
    font-size: clamp(12px, 3.35vw, 14px);
  }

  .header-cta {
    font-size: clamp(15px, 4vw, 16px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .section {
    padding: 34px 0;
  }

  .scroll-top {
    right: 14px;
    bottom: 29px;
    width: 50px;
    height: 50px;
    font-size: 27px;
  }

  body.has-promo-pop .scroll-top {
    bottom: 176px;
  }

  .promo-pop {
    left: 12px;
    right: 12px;
    bottom: 24px;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
    width: auto;
    min-height: 116px;
    padding: 20px 54px 16px 16px;
    border-radius: 16px;
  }

  .promo-pop::before {
    content: "";
    inset: 8px 8px auto;
    height: 5px;
    background: repeating-linear-gradient(90deg, #fff15f 0 18px, #151a1d 18px 28px);
  }

  .promo-pop::after {
    right: -96px;
    bottom: -112px;
    width: 220px;
    height: 220px;
  }

  .promo-pop-media {
    width: 82px;
    height: 82px;
    border-width: 2px;
    border-radius: 15px;
  }

  .promo-pop-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    transform: none;
  }

  .promo-pop-body {
    gap: 10px;
  }

  .promo-pop-body strong {
    padding: 3px 8px 4px;
    font-size: 17px;
    line-height: 1.1;
  }

  .promo-pop-button {
    width: min(100%, 210px);
    min-height: 42px;
    padding: 9px 18px;
    border-radius: 11px;
    font-size: 18px;
  }

  .promo-pop-close {
    top: 8px;
    right: 8px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    font-size: 32px;
  }
}

@media (max-width: 360px) {
  body {
    padding-top: calc(env(safe-area-inset-top) + 138px);
  }

  .header-inner {
    width: min(1120px, calc(100% - 20px));
    gap: 8px;
  }

  .header-promo-copy,
  .header-cta {
    min-height: 44px;
    padding: 0 8px;
    font-size: 12px;
  }

  .header-cta {
    font-size: 13px;
  }
}

.media-placeholder {
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 1px dashed rgba(97, 75, 49, .45);
  background:
    linear-gradient(135deg, rgba(255, 248, 232, .85), rgba(205, 235, 191, .55));
}

.media-placeholder::before {
  content: "Chicken Road";
  color: rgba(36, 19, 10, .62);
  font-weight: 800;
}

.page-demo .hero {
  min-height: 590px;
  background:
    linear-gradient(90deg, rgba(255, 248, 232, .86) 0 46%, rgba(205, 235, 191, .88) 46%),
    radial-gradient(circle at 82% 24%, rgba(20, 150, 95, .28), transparent 30%);
}

.page-demo .hero-home .hero-grid {
  grid-template-columns: minmax(0, 640px) minmax(320px, 460px);
}

.page-demo .media-placeholder {
  border: 2px dashed rgba(20, 150, 95, .50);
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .40) 0 12px, rgba(205, 235, 191, .44) 12px 24px),
    #fff8e8;
}

.page-demo .media-placeholder::before {
  content: "Demo Modus";
  color: #0e6f48;
}

.page-demo .section:nth-of-type(3n+1) .content-narrow p {
  border-style: dashed;
  background: rgba(255, 248, 232, .76);
}

.page-demo .table-wrap {
  border-style: dashed;
}

.page-app .hero {
  min-height: 620px;
  background:
    radial-gradient(circle at 22% 24%, rgba(14, 143, 122, .32), transparent 28%),
    linear-gradient(135deg, #d8efd1 0%, #fff0c8 42%, #ffe07c 100%);
}

.page-app .hero-home .hero-grid {
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1.18fr);
}

.page-app .hero-art {
  order: -1;
  min-height: 0;
  border-radius: 34px;
}

.page-app .hero-art img {
  max-height: 460px;
}

.page-app .media-placeholder {
  border-radius: 34px;
  border: 10px solid #151a1d;
  background:
    linear-gradient(180deg, rgba(255, 248, 232, .95), rgba(205, 235, 191, .72));
  box-shadow: 0 24px 48px rgba(21, 26, 29, .22);
}

.page-app .media-placeholder::before {
  content: "Mobile Ansicht";
  color: #151a1d;
}

.page-app .section:nth-of-type(3n+2) .content-narrow {
  grid-template-columns: minmax(0, 1fr) minmax(220px, 300px);
  background:
    linear-gradient(270deg, rgba(205, 235, 191, .64) 0 31%, rgba(255, 248, 232, .96) 31%),
    var(--panel);
}

.page-app .section:nth-of-type(3n+2) .content-narrow .tag,
.page-app .section:nth-of-type(3n+2) .content-narrow h2 {
  grid-column: 2;
}

.page-app .section:nth-of-type(3n+2) .content-narrow p {
  grid-column: 1;
}

.page-casino .hero {
  min-height: 560px;
  background:
    linear-gradient(180deg, #ffe07c 0%, #fff8e8 54%, #fff0c8 100%);
}

.page-casino .hero-home .hero-grid {
  grid-template-columns: minmax(0, 720px) minmax(300px, 390px);
}

.page-casino .media-placeholder {
  min-height: 220px;
  border: 1px solid rgba(240, 90, 36, .45);
  background:
    linear-gradient(180deg, rgba(255, 248, 232, .96), rgba(255, 220, 121, .50));
  box-shadow: inset 0 0 0 8px rgba(255, 194, 28, .22);
}

.page-casino .media-placeholder::before {
  content: "Casino Check";
  color: #9d3512;
}

.page-casino .section:nth-of-type(3n) .content-narrow {
  border-top-color: #f05a24;
  background:
    linear-gradient(90deg, rgba(255, 220, 121, .34), rgba(255, 248, 232, .72));
}

.page-casino .section:nth-of-type(3n+1) .content-narrow {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.page-casino .section:nth-of-type(3n+1) .content-narrow .tag,
.page-casino .section:nth-of-type(3n+1) .content-narrow h2 {
  grid-column: 1 / -1;
}

.page-casino .section:nth-of-type(3n+1) .content-narrow p {
  min-height: 150px;
}

.page-road-2 .hero {
  min-height: 600px;
  background:
    linear-gradient(110deg, rgba(255, 224, 124, .92) 0 50%, rgba(205, 235, 191, .92) 50%),
    var(--bg);
}

.page-road-2 .media-placeholder {
  border: 0;
  background:
    linear-gradient(90deg, rgba(255, 220, 121, .92) 0 50%, rgba(20, 150, 95, .22) 50%),
    #fff8e8;
  box-shadow: 0 18px 40px rgba(74, 43, 11, .16);
}

.page-road-2 .media-placeholder::before {
  content: "Version 1 / 2";
  color: #3b2612;
}

.page-road-2 .section:nth-of-type(3n+2) .content-narrow {
  background:
    linear-gradient(90deg, rgba(255, 220, 121, .58) 0 49%, rgba(205, 235, 191, .56) 49% 100%);
}

.page-road-2 .section:nth-of-type(3n+1) .content-narrow p {
  border-left: 5px solid rgba(240, 90, 36, .54);
}

.page-bonus .hero {
  min-height: 570px;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 241, 95, .58), transparent 30%),
    linear-gradient(180deg, #fff8e8 0%, #ffe07c 58%, #fff0c8 100%);
}

.page-bonus .media-placeholder {
  border: 2px dashed #f05a24;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 241, 95, .78), rgba(255, 248, 232, .96) 45%, rgba(240, 90, 36, .16));
  box-shadow: 0 20px 40px rgba(240, 90, 36, .18);
}

.page-bonus .media-placeholder::before {
  content: "Bonus Regeln";
  color: #8b160f;
}

.page-bonus .tag {
  border-color: rgba(240, 90, 36, .44);
  background: linear-gradient(135deg, #fff15f, #ffdc79 52%, #fff8e8);
}

.page-bonus .section:nth-of-type(3n+2) .content-narrow {
  border-style: dashed;
  background:
    linear-gradient(90deg, rgba(255, 241, 95, .42) 0 32%, rgba(255, 248, 232, .98) 32%);
}

.page-bonus .section:nth-of-type(3n) .content-narrow p:first-of-type {
  border: 2px dashed rgba(240, 90, 36, .42);
}

@media (max-width: 880px) {
  .page-demo .hero-home .hero-grid,
  .page-app .hero-home .hero-grid,
  .page-casino .hero-home .hero-grid,
  .page-road-2 .hero-home .hero-grid {
    grid-template-columns: 1fr;
  }

  .page-app .hero-art {
    order: 0;
    min-height: 260px;
  }

  .page-casino .section:nth-of-type(3n+1) .content-narrow,
  .page-app .section:nth-of-type(3n+2) .content-narrow,
  .page-road-2 .section:nth-of-type(3n+2) .content-narrow,
  .page-bonus .section:nth-of-type(3n+2) .content-narrow {
    display: block;
    grid-template-columns: 1fr;
  }
}

.section .content-narrow,
.section:nth-of-type(3n+1) .content-narrow,
.section:nth-of-type(3n+2) .content-narrow,
.section:nth-of-type(3n) .content-narrow,
.page-app .section:nth-of-type(3n+2) .content-narrow,
.page-casino .section:nth-of-type(3n+1) .content-narrow,
.page-casino .section:nth-of-type(3n) .content-narrow,
.page-road-2 .section:nth-of-type(3n+2) .content-narrow,
.page-bonus .section:nth-of-type(3n+2) .content-narrow {
  display: block;
  max-width: 900px;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

.section .content-narrow::before,
.section .content-narrow::after,
.section:nth-of-type(3n+2) .content-narrow::before,
.section:nth-of-type(3n+2) .content-narrow::after {
  content: none;
}

.section .content-narrow .tag,
.section .content-narrow h2,
.section:nth-of-type(3n+1) .content-narrow .tag,
.section:nth-of-type(3n+1) .content-narrow h2,
.section:nth-of-type(3n+2) .content-narrow .tag,
.section:nth-of-type(3n+2) .content-narrow h2,
.page-app .section:nth-of-type(3n+2) .content-narrow .tag,
.page-app .section:nth-of-type(3n+2) .content-narrow h2 {
  grid-column: auto;
}

.section .content-narrow h2,
.section:nth-of-type(3n+1) .content-narrow h2,
.section:nth-of-type(3n) .content-narrow h2 {
  max-width: 820px;
  margin: 12px 0 18px;
}

.section .content-narrow p,
.section:nth-of-type(3n+1) .content-narrow p,
.section:nth-of-type(3n+1) .content-narrow p:nth-of-type(even),
.section:nth-of-type(3n+2) .content-narrow p,
.section:nth-of-type(3n) .content-narrow p,
.section:nth-of-type(3n) .content-narrow p:first-of-type,
.section:nth-of-type(3n) .content-narrow p:not(:first-of-type),
.page-app .section:nth-of-type(3n+2) .content-narrow p,
.page-casino .section:nth-of-type(3n+1) .content-narrow p,
.page-road-2 .section:nth-of-type(3n+1) .content-narrow p,
.page-bonus .section:nth-of-type(3n) .content-narrow p:first-of-type {
  display: block;
  max-width: 820px;
  min-height: 0;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.section .content-narrow p:last-child {
  margin-bottom: 0;
}

.section .content-narrow .article-media {
  margin: 30px auto 0;
}

.section.section-soft .section-inner {
  padding: 28px;
  border: 1px solid rgba(212, 169, 63, .45);
  border-radius: 8px;
  background: rgba(255, 248, 232, .70);
  box-shadow: 0 12px 28px rgba(74, 43, 11, .08);
}

.section.section-soft .article-media {
  margin: 20px auto 24px;
}

.article-media,
.section .content-narrow .article-media,
.section.section-soft .article-media {
  display: block;
  box-sizing: border-box;
  margin: 28px auto 24px;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.article-media--wide {
  width: min(100%, 860px);
}

.article-media--square {
  width: min(100%, 560px);
}

.article-media img,
.article-media--wide img,
.article-media--square img {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  margin: 0;
  border: 0;
  border-radius: 22px;
  clip-path: inset(0 round 22px);
  object-fit: contain;
  background: transparent;
  box-shadow: 0 14px 30px rgba(74, 43, 11, .16);
}

.article-media figcaption {
  width: 100%;
  max-width: none;
  margin: 10px 0 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
}

@media (max-width: 760px) {
  .article-media,
  .section .content-narrow .article-media,
  .section.section-soft .article-media {
    width: 100%;
    margin: 22px auto 20px;
    border-radius: 18px;
  }

  .article-media img,
  .article-media--wide img,
  .article-media--square img {
    border-radius: 18px;
    clip-path: inset(0 round 18px);
  }
}
