@font-face{font-family:'Oswald';font-style:normal;font-weight:400 700;font-display:optional;src:url(fonts/oswald.woff2) format('woff2');}
:root {
  --bg: #0a1219;
  --bg-deep: #0e1822;
  --panel: #13202c;
  --panel-soft: rgba(19, 32, 44, 0.94);
  --text: #eef3f7;
  --muted: #9aabba;
  --soft: #6d7f90;
  --fire: #2eb8a0;
  --ember: #1f8f7b;
  --amber: #7fd4c4;
  --line: rgba(255, 255, 255, 0.09);
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
  --fire-grad: #2eb8a0;
  --max: 1180px;
  --radius: 2px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

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

.content-band {
  padding: 88px 0;
}

.content-band-compact {
  padding: 64px 0;
}

.masthead-heading,
.forge-heading,
.nav-link,
.brand-text,
.fire-button,
.outline-button,
.modal-title,
.footer-nav a,
.fact-value,
.tiny-label {
  font-family: "Oswald", sans-serif;
  font-weight: 600;
}

.brand-mark-sm {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 4px;
}

.brand-mark-sm--center {
  display: block;
  margin: 0 auto 16px;
}

.brand-mark-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: #081018;
  border-bottom: 1px solid rgba(46, 184, 160, 0.22);
}

.compliance-banner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 10px 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: #7fd4c4;
  background: rgba(14, 24, 34, 0.98);
  border-bottom: 1px solid rgba(46, 184, 160, 0.35);
}

.compliance-banner .brand-mark-sm {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.compliance-banner > span {
  max-width: 42rem;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 50px;
  height: 50px;
  border-radius: 4px;
}

.brand-text {
  font-size: 1.15rem;
  line-height: 1;
  text-transform: uppercase;
}

.brand-tag {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

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

.nav-link {
  position: relative;
  font-size: 1.15rem;
  text-transform: uppercase;
  padding: 8px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  background: var(--fire-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber);
}

.header-actions,
.auth-guest,
.auth-user {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.outline-button,
.fire-button,
.auth-pill {
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-transform: uppercase;
  transition: color 0.16s ease, border-color 0.16s ease, background-color 0.16s ease;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 12px 18px;
  font-size: 1.02rem;
}

.outline-button:hover {
  color: var(--amber);
  border-color: rgba(127, 212, 196, 0.46);
}

.fire-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--fire-grad);
  color: #fff;
  padding: 14px 26px;
  min-height: 52px;
  font-size: 1.15rem;
  box-shadow: none;
}

.fire-button:hover {
  background: var(--ember);
}

.auth-pill {
  padding: 10px 16px;
  background: rgba(127, 212, 196, 0.08);
  border: 1px solid rgba(127, 212, 196, 0.2);
  color: var(--amber);
  font-size: 1rem;
}

.auth-pill.ghost {
  background: transparent;
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.14);
}

.forge-masthead {
  position: relative;
  padding: 110px 0 92px;
}

.masthead-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 34px;
  align-items: center;
}

.masthead-copy {
  position: relative;
  z-index: 2;
}

.flame-halo {
  display: none;
}

.masthead-heading {
  position: relative;
  margin: 18px 0 12px;
  font-size: clamp(2.9rem, 6.2vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  text-shadow: none;
  overflow-wrap: anywhere;
}

.masthead-subtitle {
  position: relative;
  margin: 0 0 18px;
  color: var(--amber);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.masthead-text {
  position: relative;
  margin: 0 0 28px;
  max-width: 640px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.masthead-note {
  margin-top: 16px;
  color: var(--soft);
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.game-preview,
.editorial-panel,
.game-attribute,
.player-quote,
.game-entry,
.policy-clause,
.contact-block,
.question-entry,
.dialog-panel,
.demo-feature,
.store-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.game-preview {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.shot-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.shot-stack img,
.slider-stage img,
.thumb-strip img,
.game-media img,
.demo-media img {
  width: 100%;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.forge-heading-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 12px 18px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.forge-heading-row > img {
  flex: 0 0 auto;
}

.forge-heading-row > div {
  flex: 1 1 auto;
  min-width: 0;
}

.forge-heading {
  margin: 4px 0 0;
  font-size: clamp(1.9rem, 3vw, 2.9rem);
  text-transform: uppercase;
}

.forge-summary {
  flex: 1 1 100%;
  width: 100%;
  max-width: none;
  margin: -12px 0 24px;
  color: var(--muted);
  line-height: 1.7;
}

.demo-feature .forge-summary,
.store-panel .forge-summary {
  margin: 0 0 18px;
}

.content-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 26px;
}

.editorial-panel {
  padding: 28px;
}

.editorial-panel p,
.policy-clause p,
.contact-block p,
.player-quote p,
.game-entry p,
.question-copy {
  color: var(--muted);
  line-height: 1.8;
}

.benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.benefit-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.benefit-mark {
  display: none;
}

.facts-list {
  display: grid;
  gap: 14px;
}

.fact-row {
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.fact-value {
  display: block;
  font-size: 2rem;
  color: var(--amber);
}

.fact-label {
  color: var(--soft);
  text-transform: uppercase;
  font-size: 0.88rem;
}

.slider-shell {
  position: relative;
}

.slider-stage {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.18);
  box-shadow: none;
}

.slide {
  display: none;
}

.slide.active {
  display: block;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 3px;
  border: 1px solid var(--line);
  background: rgba(8, 16, 24, 0.82);
  color: var(--amber);
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 2;
  box-shadow: none;
}

.slider-arrow.prev {
  left: 18px;
}

.slider-arrow.next {
  right: 18px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 0;
  border: none;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.18);
}

.slider-dot.active {
  background: var(--amber);
  box-shadow: none;
}

.editorial-list,
.split-layout {
  display: grid;
  gap: 22px;
}

.editorial-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.split-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.game-attribute,
.player-quote,
.game-entry,
.policy-clause,
.contact-block,
.demo-feature,
.store-panel {
  padding: 26px;
  transition: border-color 0.16s ease, background-color 0.16s ease;
}

.game-attribute:hover,
.player-quote:hover,
.game-entry:hover,
.policy-clause:hover,
.contact-block:hover,
.demo-feature:hover {
  border-color: rgba(127, 212, 196, 0.35);
}

.attribute-mark,
.tiny-label {
  color: var(--amber);
}

.attribute-mark {
  display: none;
}

.attribute-title,
.game-title,
.review-name,
.question-title,
.intro-heading {
  font-family: "Oswald", sans-serif;
}

.attribute-title,
.game-title,
.review-name {
  margin: 14px 0 10px;
  font-size: 1.75rem;
}

.review-stars {
  color: var(--amber);
  font-size: 0.95rem;
}

.review-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.game-entry {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.game-media {
  overflow: hidden;
  border-radius: 3px;
}

.thumb-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.demo-feature {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.store-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.store-panel img {
  height: 72px;
  width: auto;
}

.questions-list {
  display: grid;
  gap: 16px;
}

.question-entry {
  padding: 0;
  overflow: hidden;
}

.question-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: none;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  padding: 22px 24px;
}

.question-title {
  font-size: 1.4rem;
  text-align: left;
}

.question-answer {
  display: none;
  padding: 0 24px 22px;
}

.question-entry.open .question-answer {
  display: block;
}

.page-intro {
  padding: 92px 0 48px;
}

.intro-heading {
  margin: 16px 0 12px;
  font-size: clamp(2.3rem, 4.6vw, 3.7rem);
  text-transform: uppercase;
}

.subpage-copy {
  max-width: 820px;
  color: var(--muted);
  line-height: 1.8;
}

.legal-stack,
.contact-stack {
  display: grid;
  gap: 18px;
}

.policy-clause h2,
.contact-block h2,
.modal-title {
  margin: 0 0 12px;
  font-size: 1.85rem;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 14px;
}

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

.field span {
  font-size: 0.9rem;
  color: var(--soft);
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 15px 16px;
}

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

.iframe-shell {
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.site-footer {
  padding: 42px 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 8, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
  align-items: center;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.footer-nav a {
  font-size: 1.12rem;
  text-transform: uppercase;
}

.footer-meta {
  margin-top: 14px;
  color: var(--soft);
  line-height: 1.7;
  font-size: 0.92rem;
}

.footer-play {
  margin-top: 18px;
}

.overlay-root {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9997;
}

#ck-banner,
#age-gate,
.auth-modal,
.toast {
  pointer-events: auto;
}

#ck-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
  padding: 14px 20px;
  background: #0e1822;
  color: #eef3f7;
  font-size: 13px;
  line-height: 1.4;
  border-top: 3px solid #2eb8a0;
}

#ck-banner .ck-copy {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 220px;
  min-width: 0;
}

#ck-banner .ck-copy img {
  flex-shrink: 0;
}

#ck-banner .ck-copy a {
  color: #7fd4c4;
}

#ck-banner .ck-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 0 0 auto;
}

#ck-banner .ck-accept,
#ck-banner .ck-decline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  padding: 8px 18px;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

#ck-banner .ck-accept {
  background: #2eb8a0;
  color: #fff;
}

#ck-banner .ck-decline {
  background: transparent;
  color: #eef3f7;
  border: 1px solid #555;
  font-weight: 500;
  font-size: 14px;
  text-transform: none;
}

.auth-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(10, 8, 8, 0.72);
  z-index: 99996;
}

.auth-modal.open {
  display: flex;
}

.dialog-panel {
  width: min(520px, 100%);
  padding: 28px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 3px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.modal-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.modal-tab {
  flex: 1;
}

.modal-desc {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.modal-message {
  min-height: 24px;
  margin-top: 12px;
  color: var(--amber);
}

.toast {
  position: fixed;
  right: 20px;
  bottom: 90px;
  max-width: min(420px, calc(100% - 40px));
  padding: 16px 18px;
  border-radius: 3px;
  background: #16110d;
  border-top: 3px solid var(--fire);
  color: var(--text);
  box-shadow: none;
  display: none;
  z-index: 99997;
}

.toast.show {
  display: block;
}

.spark-field {
  position: absolute;
  inset: auto 0 0;
  height: 220px;
  overflow: hidden;
  pointer-events: none;
}

.spark {
  position: absolute;
  bottom: -10px;
  width: 12px;
  height: 12px;
  background: #7fd4c4;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  filter: drop-shadow(0 0 3px rgba(127, 212, 196, 0.85));
  opacity: 0.65;
  animation: floatSpark linear infinite;
}

@keyframes floatSpark {
  0% {
    transform: translate3d(0, 0, 0) scale(0.8) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.85;
  }
  100% {
    transform: translate3d(var(--drift, 0px), -230px, 0) scale(1.2) rotate(200deg);
    opacity: 0;
  }
}

@media (max-width: 1080px) {
  .masthead-layout,
  .content-grid,
  .demo-feature,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile header stack: brand → wrapped nav → full-width CTAs */
  .header-row {
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 14px;
    padding: 14px 0 16px;
    min-height: 0;
  }

  .brand {
    grid-column: 1;
    min-width: 0;
    width: 100%;
  }

  .main-nav {
    grid-column: 1;
    width: 100%;
    justify-content: center;
    gap: 8px 20px;
    flex-wrap: wrap;
    overflow: visible;
    padding: 0;
  }

  .nav-link {
    flex: 0 0 auto;
    font-size: 1.05rem;
    padding: 6px 2px;
    border: none;
    background: transparent;
  }

  .nav-link::after {
    display: block;
  }

  .nav-link.active,
  .nav-link:hover {
    color: var(--amber);
  }

  .header-actions {
    grid-column: 1;
    width: 100%;
    justify-content: stretch;
  }

  .header-actions .auth-guest,
  .header-actions .auth-user {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .header-actions .fire-button,
  .header-actions .outline-button,
  .auth-guest .fire-button,
  .auth-guest .outline-button,
  .auth-user .fire-button,
  .auth-user .auth-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .header-actions .outline-button {
    border-color: rgba(46, 184, 160, 0.55);
    min-height: 48px;
  }

  .header-actions .fire-button {
    min-height: 52px;
  }
}

@media (max-width: 860px) {
  .editorial-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .store-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .masthead-heading {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

  .intro-heading {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .masthead-subtitle {
    font-size: 1.05rem;
  }

  .container {
    width: min(var(--max), calc(100% - 24px));
  }
}

@media (max-width: 640px) {
  .compliance-banner {
    justify-content: flex-start;
    font-size: 11px;
    padding: 10px 12px;
    text-align: left;
  }

  .compliance-banner .brand-mark-sm {
    display: block;
  }

  .header-row {
    gap: 12px;
    padding: 12px 0 14px;
  }

  .brand {
    gap: 12px;
  }

  .brand > span {
    min-width: 0;
  }

  .brand img {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .brand-text {
    font-size: 1.05rem;
    letter-spacing: 0.02em;
  }

  .brand-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
  }

  .main-nav {
    gap: 6px 16px;
  }

  .nav-link {
    font-size: 1rem;
  }

  .header-actions .fire-button,
  .header-actions .outline-button,
  .auth-guest .fire-button,
  .auth-guest .outline-button {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .auth-user .auth-pill:not(.ghost) {
    max-width: none;
    overflow: visible;
    white-space: normal;
  }

  #ck-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 14px calc(14px + env(safe-area-inset-bottom, 0px));
    gap: 12px;
  }

  #ck-banner .ck-copy {
    flex: 1 1 auto;
    align-items: flex-start;
  }

  #ck-banner .ck-copy img {
    width: 32px;
    height: 32px;
  }

  #ck-banner .ck-actions {
    width: 100%;
  }

  #ck-banner .ck-accept,
  #ck-banner .ck-decline {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    text-align: center;
  }

  .content-band,
  .forge-masthead,
  .page-intro {
    padding: 48px 0 36px;
  }

  .forge-heading {
    font-size: clamp(1.7rem, 7vw, 2.4rem);
  }

  .forge-heading-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .forge-heading-row > div {
    width: 100%;
  }

  .forge-summary {
    width: 100%;
    font-size: 0.95rem;
  }

  .game-preview,
  .editorial-panel,
  .game-attribute,
  .player-quote,
  .game-entry,
  .policy-clause,
  .contact-block,
  .demo-feature,
  .store-panel {
    padding: 18px;
    min-width: 0;
    max-width: 100%;
  }

  .player-quote p {
    overflow-wrap: anywhere;
  }

  .review-name {
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 10px;
    font-size: 1.25rem;
    margin: 0 0 10px;
  }

  .review-name > span:first-child {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .review-stars {
    flex: 0 0 auto;
    letter-spacing: 0.02em;
  }

  .shot-stack {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .editorial-list,
  .split-layout {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .thumb-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.35rem;
  }

  .slider-arrow.prev {
    left: 8px;
  }

  .slider-arrow.next {
    right: 8px;
  }

  /* Full-width CTAs only in page content, not in the sticky header */
  main .fire-button,
  main .outline-button {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    gap: 20px;
  }

  .footer-nav {
    justify-content: flex-start;
    gap: 12px 16px;
  }

  .modal-tabs {
    flex-direction: column;
  }

  .modal-card {
    padding: 20px;
  }

  .question-toggle {
    padding: 16px;
  }

  .question-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 420px) {
  .masthead-heading {
    font-size: clamp(2rem, 12vw, 2.6rem);
  }

  .intro-heading {
    font-size: clamp(1.9rem, 11vw, 2.5rem);
  }

  .brand-text {
    font-size: 0.98rem;
  }

  .editorial-list {
    grid-template-columns: 1fr;
  }
}
