@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400&family=Libre+Caslon+Display&display=swap');

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

header .nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: inherit;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: 8px;
  cursor: pointer;
}

header .nav-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
}

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

header .locale-selector,
body > header:not(.site-header) .locale-selector {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  color: inherit;
  border: 0;
  border-radius: 0;
}

header .locale-selector a,
body > header:not(.site-header) .locale-selector a {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  color: inherit;
  text-decoration: none;
  text-shadow: none;
  -webkit-text-stroke: 0;
  border-radius: 999px;
}

header .locale-selector a::after,
body > header:not(.site-header) .locale-selector a::after {
  display: none;
}

header .locale-selector a[aria-current='page'],
body > header:not(.site-header) .locale-selector a[aria-current='page'] {
  color: #17120c;
  background: #fff8e8;
}

@media (min-width: 861px) and (max-width: 1540px) {
  body > header.site-header {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  body > header.site-header .primary-nav {
    order: 3;
    flex-basis: 100%;
    justify-content: center;
  }

  body > header.site-header .locale-selector {
    margin-left: auto;
  }
}

@media (max-width: 860px) {
  body > header {
    --mobile-menu-top: 116px;
    position: relative;
  }

  body > header .nav-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  body > header .primary-nav {
    display: none !important;
    position: absolute;
    z-index: 1000;
    top: calc(var(--mobile-menu-top) + 8px);
    right: 16px;
    left: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    background: #17120c;
    color: #fff8e8;
    border: 1px solid rgba(255, 248, 232, 0.24);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  }

  body > header .primary-nav.is-open {
    display: flex !important;
  }

  body > header .primary-nav a {
    display: block;
    padding: 12px 14px;
    color: inherit;
  }

  body > header .locale-selector {
    grid-column: 1 / -1;
    justify-self: start;
  }
}


/* Page flow controls */

.page-flow-nav {
  position: relative;
  z-index: 5;
  display: flex;
  width: min(1180px, calc(100% - 40px));
  margin: 14px auto;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
}

.page-flow-nav button,
.page-flow-nav a:not(#hoppy-interior-text) {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  color: #fff2cf !important;
  -webkit-text-fill-color: #fff2cf !important;
  background: rgba(33, 22, 13, 0.88) !important;
  border: 1px solid rgba(227, 181, 83, 0.9);
  border-radius: 999px;
  box-shadow: none;
  font: 700 14px/1.2 Arial, sans-serif;
  text-decoration: none;
  text-shadow: none !important;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.page-flow-nav button:hover,
.page-flow-nav a:not(#hoppy-interior-text):hover,
.page-flow-nav button:focus-visible,
.page-flow-nav a:not(#hoppy-interior-text):focus-visible {
  border-color: #ffd673;
  box-shadow: 0 0 22px 6px rgba(233, 165, 43, 0.62);
  filter: brightness(1.08);
  outline: 0;
}

@media (max-width: 600px) {
  .page-flow-nav {
    display: grid;
    width: calc(100% - 24px);
    grid-template-columns: 1fr;
  }

  .page-flow-nav button,
  .page-flow-nav a:not(#hoppy-interior-text) {
    width: 100%;
    text-align: center;
  }
}


/* Keep every page fixed while a native form dialog is open. */
html:has(dialog[open]),
body:has(dialog[open]) {
  overflow: hidden !important;
  overscroll-behavior: none;
}


/* Shared internal slider for every form and information dialog. */
dialog[open] {
  max-height: calc(100dvh - 30px) !important;
  overflow-x: hidden !important;
  overflow-y: scroll !important;
  overscroll-behavior-y: contain;
  scrollbar-gutter: stable;
  scrollbar-color: #d9a44a #21160d;
}

dialog[open] > .battle-dialog-frame,
dialog[open] > .flyer-dialog-panel {
  max-height: none !important;
  overflow: visible !important;
}

dialog[open]::-webkit-scrollbar {
  width: 16px;
}

dialog[open]::-webkit-scrollbar-track {
  background: #21160d;
  border-left: 1px solid rgba(231, 184, 88, 0.55);
}

dialog[open]::-webkit-scrollbar-thumb {
  min-height: 48px;
  background: #d9a44a;
  border: 3px solid #21160d;
  border-radius: 999px;
}

dialog[open]::-webkit-scrollbar-button:single-button {
  display: block;
  height: 16px;
  background: #d9a44a;
}


/* Keep directory page-flow actions together as one centered group. */
body:has(#directory) > .page-flow-nav {
  justify-content: center;
}

body:has(#directory) > .page-flow-nav > :is(button, a) {
  margin-inline: 0;
}

@media (max-width: 600px) {
  body:has(#directory) > .page-flow-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  body:has(#directory) > .page-flow-nav > :is(button, a) {
    width: auto;
    flex: 0 1 auto;
  }
}


/* Persistent audience paths and audience hubs */
.audience-paths {
  position: static;
  display: flex;
  flex: 1 0 100%;
  grid-column: 1 / -1;
  order: 10;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin: 8px auto 0;
}
.audience-paths a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  color: #fff2cf;
  background: rgba(33, 22, 13, .94);
  border: 1px solid rgba(227, 181, 83, .9);
  border-radius: 999px;
  font: 700 14px/1.2 Arial, sans-serif;
  text-decoration: none;
}
.audience-paths a[aria-current='page'] {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

/* Lock the homepage's primary visitor choice into a clear two-step stack. */
body.home-page > header.site-header .audience-paths {
  flex-direction: column;
  display: flex !important;
  align-items: center;
  gap: 8px;
}

body.home-page > header.site-header .audience-paths a {
  width: min(100%, 360px);
}
.audience-paths a:hover,
.audience-paths a:focus-visible,
.audience-card-grid a:focus-visible {
  outline: 3px solid #ffd673;
  outline-offset: 3px;
}
.audience-hub {
  width: min(1120px, calc(100% - 32px));
  margin: 48px auto;
}
.audience-hub__hero {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}
.audience-hub__primary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.audience-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: 18px;
}
.audience-card-grid a {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  padding: 22px;
  color: inherit;
  background: rgba(33, 22, 13, .88);
  border: 1px solid rgba(227, 181, 83, .65);
  border-radius: 16px;
  text-decoration: none;
}
.audience-card-grid strong { color: #ffd673; }
.audience-card-grid span { line-height: 1.5; }
@media (max-width: 650px) {
  .audience-paths { padding-inline: 12px; }
  .audience-paths a { flex: 1 1 100%; }
  .audience-hub { margin-block: 28px; }
}
@media (orientation: landscape) and (max-height: 650px) {
  .audience-paths { position: static !important; }
}
@media (prefers-reduced-motion: reduce) {
  .audience-paths a,
  .audience-card-grid a { transition: none !important; }
}


/* Center the main experience path link beneath the header controls. */
body.home-page main > .page-primary-action {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin: 14px auto 18px;
  text-align: center;
}

body.home-page main > .page-primary-action > .button {
  margin-inline: auto;
  text-align: center;
}


/* Center every line and link in the main experience footer. */
body.home-page > footer.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

body.home-page > footer.site-footer > p {
  width: 100%;
  margin-inline: auto;
  text-align: center;
}

body.home-page > footer.site-footer > nav {
  width: 100%;
  justify-content: center;
  margin-inline: auto;
  text-align: center;
}


/* Compact mobile header: language first, then Monthly + both audience paths. */
@media (max-width: 860px) {
  body > header.site-header {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    width: calc(100% - 24px) !important;
    padding: 16px 12px 18px !important;
    box-sizing: border-box;
    row-gap: 6px;
  }

  body > header.site-header > nav.nav {
    display: contents;
  }

  body > header.site-header .brand {
    grid-column: 1 / -1;
    order: 1;
    justify-self: center;
    text-align: center;
  }

  body > header.site-header .nav-toggle {
    grid-column: 1 / -1;
    order: 2;
    justify-self: center;
    margin-top: 2px;
  }

  body > header.site-header .locale-selector {
    grid-column: 1 / -1;
    order: 3;
    justify-self: center;
    margin: 2px auto 0;
  }

  body > header.site-header .issue-shell {
    grid-column: 1 / -1;
    order: 4;
    width: 100%;
    margin: 0;
  }

  body > header.site-header .issue-shell select {
    padding-inline: 2.65rem;
    text-align: center;
    text-align-last: center;
  }

  body > header.site-header .audience-paths {
    grid-column: 1 / -1;
    order: 5;
    width: 100%;
    margin: 0;
    padding: 0;
    gap: 6px;
  }

  body > header.site-header > .page-flow-nav {
    grid-column: 1 / -1;
    order: 6;
    width: 100%;
    margin: 0;
  }

  body > header.site-header > :is(.audience-paths, .page-flow-nav) {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  body > header.site-header :is(.audience-paths a, .page-flow-nav button, .page-flow-nav a) {
    max-width: 100%;
    white-space: normal;
    overflow-wrap: anywhere;
    box-sizing: border-box;
  }

  body > header.site-header .audience-paths a {
    width: 100%;
    flex: 1 1 100%;
  }
}


/* Site-wide balanced alignment system
   Centers structural frames and compact controls while preserving readable content. */
:root {
  --site-balance-max: 1180px;
  --site-balance-gutter: clamp(12px, 3vw, 32px);
  --site-balance-gap: clamp(12px, 2vw, 24px);
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

body:not(.cover-page) > :is(header, main, footer),
body:not(.cover-page) > .page-flow-nav {
  width: min(calc(100% - (2 * var(--site-balance-gutter))), var(--site-balance-max));
  min-width: 0;
  margin-inline: auto;
}

body:not(.cover-page) main > :is(section, article, aside, figure),
body:not(.cover-page) main > .page-primary-action {
  min-width: 0;
  margin-inline: auto;
}

:where(
  .page-primary-action,
  .actions,
  .button-row,
  .button-group,
  .cta-row,
  .battle-actions,
  .battle-trust-links,
  .battle-detail-actions,
  .advertising-jump,
  .card-actions,
  .pagination,
  .page-flow-nav,
  .locale-selector,
  .audience-paths
) {
  align-items: center;
  justify-content: center;
  gap: var(--site-balance-gap);
  text-align: center;
}

.page-primary-action {
  display: flex;
  width: 100%;
}

:where(
  .audience-card-grid,
  .checkout-grid,
  .product-grid,
  .gallery-grid,
  .community-gallery,
  .card-grid,
  .battle-card-grid,
  .battle-entry-steps,
  .battle-scoring-grid,
  .battle-rules-grid,
  .process-grid
) {
  width: 100%;
  min-width: 0;
  margin-inline: auto;
  justify-content: center;
  justify-items: stretch;
  gap: var(--site-balance-gap);
}

:where(
  .audience-card-grid,
  .checkout-grid,
  .product-grid,
  .gallery-grid,
  .community-gallery,
  .card-grid,
  .battle-card-grid
) > * {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

:where(
  .button,
  .trail-button,
  .battle-kit-link,
  .battle-card-purchase,
  .audience-hub__primary
) {
  align-items: center;
  justify-content: center;
  text-align: center;
}

body > footer,
.site-footer,
.battle-page > footer {
  align-items: center;
  justify-content: center;
  text-align: center;
}

body > footer > :is(p, nav, .footer-brand),
.site-footer > :is(p, nav, .footer-brand),
.battle-page > footer > :is(p, nav, .footer-brand) {
  margin-inline: auto;
  text-align: center;
}

body > footer > nav,
.site-footer > nav,
.battle-page > footer > nav {
  justify-content: center;
}

/* Short presentation copy is centered; reading and data-entry copy stays readable. */
:is(
  .hero,
  .experience-intro,
  .audience-hub__hero,
  .battle-hero,
  .battle-hall,
  .results-heading,
  .partner-heading,
  .trust-section
) > :is(.kicker, h1, h2, .status-label) {
  text-align: center;
}

:is(form, .legal-page, .directory-card, .battle-card)
  :is(p, ul, ol, address, label, input, select, textarea),
.brewery-card :is(p, address),
.photo-form :is(label, input, textarea),
.search-panel :is(label, input, select) {
  text-align: left;
}

/* Keep specialized working surfaces centered without disturbing their internals. */
.battle-discovery,
.battle-selected,
.search-panel,
.directory-layout,
.photo-layout,
.issue,
.page-frame {
  min-width: 0;
  margin-inline: auto;
}

.battle-hero,
.battle-hall {
  align-items: center;
  text-align: center;
}

.battle-winner-announcement {
  justify-content: center;
  text-align: center;
}

.magazine-page .actions,
.issue .actions {
  justify-content: center;
}

@media (max-width: 720px) {
  :root {
    --site-balance-gutter: 12px;
    --site-balance-gap: 12px;
  }

  :where(
    .audience-card-grid,
    .checkout-grid,
    .product-grid,
    .gallery-grid,
    .community-gallery,
    .card-grid,
    .battle-card-grid
  ) {
    grid-template-columns: minmax(0, 1fr);
  }

  :where(
    .page-primary-action,
    .actions,
    .button-row,
    .button-group,
    .cta-row,
    .battle-actions,
    .battle-trust-links,
    .battle-detail-actions,
    .advertising-jump,
    .card-actions,
    .pagination,
    .page-flow-nav
  ) {
    flex-wrap: wrap;
    justify-content: center;
  }

  :where(
    .page-primary-action,
    .actions,
    .button-row,
    .button-group,
    .cta-row
  ) > :is(a, button, [role='button']) {
    max-width: 100%;
    margin-inline: auto;
  }
}


/* Cross-page audit corrections: keep repeated navigation and footer groups balanced. */
body > header:has(.audience-paths) {
  flex-wrap: wrap;
}

body > header:has(.locale-selector) {
  flex-wrap: wrap;
}

body > header .audience-paths {
  flex: 0 0 100%;
  width: 100%;
  max-width: 100%;
  margin-inline: auto;
}

body > footer,
.site-footer,
.battle-page > footer {
  flex-direction: column;
  gap: 14px;
}

.pagination,
.issue .actions,
.magazine-page .actions {
  width: 100%;
  margin-inline: auto;
}


/* Keep the language choice centered above the shared visitor paths on every screen. */
body > header .locale-selector {
  display: flex;
  flex: 0 0 100%;
  grid-column: 1 / -1;
  justify-content: center;
  justify-self: center !important;
  align-self: center;
  width: 100%;
  margin-inline: auto !important;
}


/* One reciprocal language button appears on every localized public page. */
body > header .locale-selector a:only-child {
  min-width: 7rem;
}

/* Homepage website-review dropdown */
.site-review-panel {
  width: min(760px, calc(100% - 32px));
  margin: 30px auto 48px;
  overflow: hidden;
  color: #fff8e8;
  background: rgba(23, 18, 12, .96);
  border: 1px solid rgba(227, 181, 83, .88);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
}
.site-review-panel summary {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
}
.site-review-panel summary::-webkit-details-marker { display: none; }
.site-review-panel summary span { display: grid; gap: 4px; }
.site-review-panel summary small {
  color: #d9a44a;
  font: 700 12px/1.2 Arial, sans-serif;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.site-review-panel summary strong { font: 700 20px/1.25 Arial, sans-serif; }
.site-review-panel summary svg {
  width: 24px;
  flex: 0 0 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 180ms ease;
}
.site-review-panel[open] summary svg { transform: rotate(180deg); }
.site-review-panel summary:focus-visible { outline: 3px solid #ffd673; outline-offset: -4px; }
.site-review-content { padding: 0 22px 24px; border-top: 1px solid rgba(227, 181, 83, .3); }
.site-review-content > p { max-width: 620px; margin: 20px 0; line-height: 1.55; }
#site-review-form { display: grid; gap: 14px; }
#site-review-form fieldset { padding: 0; margin: 0; border: 0; }
#site-review-form legend,
.review-comment { margin-bottom: 8px; font: 700 15px/1.3 Arial, sans-serif; }
.review-stars { display: flex; width: max-content; max-width: 100%; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; }
.review-stars input { position: absolute; opacity: 0; pointer-events: none; }
.review-stars label {
  padding: 2px;
  color: #75664f !important;
  -webkit-text-fill-color: #75664f !important;
  font-size: clamp(32px, 8vw, 42px);
  line-height: 1;
  cursor: pointer;
}
.review-stars label:hover,
.review-stars label:hover ~ label,
.review-stars input:checked ~ label {
  color: #f3bd4f !important;
  -webkit-text-fill-color: #f3bd4f !important;
}
.review-stars input:focus-visible + label { border-radius: 4px; outline: 3px solid #ffd673; outline-offset: 2px; }
#site-review-form textarea {
  width: 100%;
  min-height: 132px;
  box-sizing: border-box;
  padding: 13px 14px;
  resize: vertical;
  color: #17120c;
  background: #fff8e8;
  border: 2px solid transparent;
  border-radius: 10px;
  font: 16px/1.5 Arial, sans-serif;
}
#site-review-form textarea:focus { border-color: #d9a44a; outline: 3px solid rgba(255, 214, 115, .38); }
.review-honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.review-note { margin: 0; color: #d8c9ae; font: 13px/1.5 Arial, sans-serif; }
#site-review-form .trail-button { width: min(100%, 300px); min-height: 48px; }
#site-review-form .trail-button:disabled { cursor: wait; opacity: .65; }
.review-status { min-height: 1.5em; margin: 0; font: 700 14px/1.5 Arial, sans-serif; }
.review-status[data-state='success'] { color: #bdebb9; }
.review-status[data-state='error'] { color: #ffb8ad; }
@media (max-width: 640px) {
  .site-review-panel { width: calc(100% - 24px); margin-block: 24px 34px; border-radius: 14px; }
  .site-review-panel summary { min-height: 68px; padding: 15px 16px; }
  .site-review-panel summary strong { font-size: 17px; }
  .site-review-content { padding: 0 16px 20px; }
  #site-review-form .trail-button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
  .site-review-panel summary svg { transition: none; }
}

/* Third competition polish: balanced titles, reliable keyboard focus, calm motion. */
:where(h1, h2, h3, .brand-copy strong) {
  text-wrap: balance;
}

:where(a, button, select, summary, input, textarea):focus-visible {
  outline: 3px solid #ffd673;
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Fourth competition polish: comfortable touch targets for compact navigation. */
:where(body > header, .site-header) nav a,
:where(body > footer, .site-footer, .battle-page > footer) nav a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding-block: 10px;
  -webkit-tap-highlight-color: rgba(255, 214, 115, .24);
}

/* Keep the Fair Play Rule legible over its photographic backdrop. */
body:has(#battle-fair-play-title) .battle-fair-play > p:not(.kicker) {
  color: #fff8e8 !important;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(0, 0, 0, .72) !important;
}

.battle-fair-play strong {
  font-weight: 800;
}

/* Override the global interior-text rule on the review star glyph itself. */
body #site-review-form .review-stars label,
body #site-review-form .review-stars label span[aria-hidden='true'] {
  color: #75664f !important;
  -webkit-text-fill-color: #75664f !important;
}

body #site-review-form .review-stars label:hover,
body #site-review-form .review-stars label:hover span[aria-hidden='true'],
body #site-review-form .review-stars label:hover ~ label,
body #site-review-form .review-stars label:hover ~ label span[aria-hidden='true'],
body #site-review-form .review-stars input:checked ~ label,
body #site-review-form .review-stars input:checked ~ label span[aria-hidden='true'] {
  color: #f3bd4f !important;
  -webkit-text-fill-color: #f3bd4f !important;
}


/* Unified Hoppy Trails header logo — matches the Brewery Directory reference. */
body > header .brand {
  display: inline-flex !important;
  flex: 0 0 auto;
  align-items: center !important;
  gap: .75rem !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  text-decoration: none !important;
  text-shadow: none !important;
  -webkit-text-stroke: 0 !important;
  filter: none !important;
  white-space: nowrap;
  cursor: default;
  user-select: none;
}

body > header .brand-mark {
  display: grid !important;
  width: 46px !important;
  height: 46px !important;
  flex: 0 0 46px;
  place-items: center !important;
  color: #d3a83f !important;
  -webkit-text-fill-color: #d3a83f !important;
  border: 2px solid #d3a83f !important;
  border-radius: 50% !important;
  background: #174b2c !important;
  font-family: "Libre Caslon Display", Georgia, "Times New Roman", serif !important;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-shadow: none !important;
  -webkit-text-stroke: 0 !important;
}

body > header .brand > span:last-child {
  display: block;
  text-align: left;
}

body > header .brand strong {
  display: block;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-family: "Libre Caslon Display", Georgia, "Times New Roman", serif !important;
  font-size: 1.35rem !important;
  font-weight: 400 !important;
  line-height: 1.1 !important;
  letter-spacing: .01em !important;
  text-transform: none !important;
  text-shadow: none !important;
  -webkit-text-stroke: 0 !important;
}

body > header .brand small {
  display: block;
  margin-top: .12rem !important;
  color: #f2e4b9 !important;
  -webkit-text-fill-color: #f2e4b9 !important;
  font-family: "DM Sans", Arial, sans-serif !important;
  font-size: .65rem !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  letter-spacing: .13em !important;
  text-transform: uppercase !important;
  text-shadow: none !important;
  -webkit-text-stroke: 0 !important;
}


/* Competition device polish: stable phone and tablet composition. */
@media (max-width: 860px) {
  body > header.site-header .brand {
    max-width: calc(100% - 24px);
  }

  body > header.site-header .brand > span:last-child {
    min-width: 0;
  }

  body > header.site-header .brand strong {
    font-size: clamp(1.05rem, 5vw, 1.35rem) !important;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  body > header.site-header .brand small {
    letter-spacing: clamp(.055em, .8vw, .13em) !important;
  }

  body > header .primary-nav {
    max-height: calc(100dvh - var(--mobile-menu-top) - 20px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 720px) {
  dialog[open] {
    width: calc(100% - 24px);
    margin: max(12px, env(safe-area-inset-top)) auto;
  }

  .flyer-dialog-header,
  .flyer-dialog-actions {
    gap: 12px;
    padding-inline: 14px;
  }
}

@media (min-width: 721px) and (max-width: 1024px) {
  .site-review-panel {
    width: min(760px, calc(100% - 40px));
  }

  .audience-paths a {
    min-width: min(100%, 15rem);
  }
}
