:root {
  --site-font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --shell-site-max: 1100px;
  --shell-content-max: 1080px;
  --shell-profile-max: 1100px;
  --shell-auth-max: 560px;
  --shell-dialog-max: 460px;
  --shell-gutter-site: 2rem;
  --shell-gutter-content: 1.5rem;
  --shell-gutter-mobile: 1rem;
  --shell-gutter-header-mobile: 1.2rem;
}

.site-shell,
.content-shell,
.profile-shell,
.narrow-shell {
  margin-left: auto !important;
  margin-right: auto !important;
}

.site-shell {
  width: min(100% - var(--shell-gutter-site), var(--shell-site-max)) !important;
}

.content-shell {
  width: min(100% - var(--shell-gutter-content), var(--shell-content-max)) !important;
}

.profile-shell {
  width: min(100% - var(--shell-gutter-content), var(--shell-profile-max)) !important;
}

.narrow-shell {
  width: min(100% - var(--shell-gutter-content), var(--shell-auth-max)) !important;
}

html {
  -webkit-text-size-adjust: 100%;
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  font-family: var(--site-font-family);
}

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.7rem;
  color: #111827;
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  font-size: 1.85rem;
}

h2 {
  font-size: 1.55rem;
}

h3 {
  font-size: 1.32rem;
}

h4 {
  font-size: 1.12rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.9rem;
}

p {
  margin: 0 0 0.95rem;
  color: #374151;
  font-size: 0.9375rem;
  line-height: 1.65;
}

a {
  color: #084298;
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

a:hover,
a:focus {
  color: #052c65;
  text-decoration: underline;
}

.site-header-nav {
  z-index: 1200;
  margin-bottom: 1rem;
  padding: 0.88rem 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(75, 38, 255, 0.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(18, 25, 73, 0.08);
}

.site-header-nav.site-header-nav-auth {
  background:
    radial-gradient(circle at top left, rgba(251, 191, 36, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(14, 23, 38, 0.94) 0%, rgba(13, 78, 107, 0.9) 100%);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.2);
}

.site-header-nav.site-header-nav-auth .site-header-link,
.site-header-nav.site-header-nav-auth .site-header-drawer-link,
.site-header-nav.site-header-nav-auth .site-header-drawer-title {
  color: #f8fafc;
}

.site-header-nav.site-header-nav-auth .site-header-link:hover,
.site-header-nav.site-header-nav-auth .site-header-link:focus {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.site-header-nav.site-header-nav-auth .site-header-link.is-active,
.site-header-nav.site-header-nav-auth .site-header-drawer-link.is-active {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.site-header-nav.site-header-nav-auth .site-header-btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff !important;
  box-shadow: none;
}

.site-header-nav.site-header-nav-auth .site-header-btn-secondary:hover,
.site-header-nav.site-header-nav-auth .site-header-btn-secondary:focus {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
}

.site-header-nav.site-header-nav-auth .site-header-toggle,
.site-header-nav.site-header-nav-auth .site-header-close {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  box-shadow: none;
}

.site-header-nav.site-header-nav-auth .site-header-close::before,
.site-header-nav.site-header-nav-auth .site-header-close::after {
  background: #ffffff;
}

.site-header-shell {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-header-brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  padding-right: 0.35rem;
  text-decoration: none !important;
}

.site-header-logo {
  display: block;
  width: auto;
  max-width: 224px;
  height: auto;
}

.site-header-desktop {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-left: auto;
  min-width: 0;
}

.site-header-desktop.is-guest {
  justify-content: center;
}

.site-header-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.site-header-link,
.site-header-drawer-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  color: #334155;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none !important;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.site-header-link:hover,
.site-header-link:focus,
.site-header-drawer-link:hover,
.site-header-drawer-link:focus {
  background: rgba(75, 38, 255, 0.08);
  color: #121949;
  text-decoration: none !important;
}

.site-header-link.is-active,
.site-header-drawer-link.is-active {
  background: rgba(75, 38, 255, 0.12);
  color: #4b26ff;
  box-shadow: inset 0 0 0 1px rgba(75, 38, 255, 0.1);
}

.site-header-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
  font-size: 0;
}

.site-header-actions.is-guest {
  justify-content: center;
}

.site-header-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  flex: 0 0 auto;
  height: 2.7rem;
  min-height: 0;
  padding: 0 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  white-space: nowrap;
  color: #ffffff !important;
  text-decoration: none;
  line-height: 1.2;
  font-size: 0;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.site-header-btn-label {
  font-size: 0.92rem;
  line-height: 1.2;
}

.site-header-btn:hover,
.site-header-btn:focus {
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-1px);
}

.site-header-btn-secondary {
  border-color: rgba(18, 25, 73, 0.12);
  background: #ffffff;
  color: #121949 !important;
  box-shadow: 0 12px 24px rgba(18, 25, 73, 0.06);
}

.site-header-btn-secondary:hover,
.site-header-btn-secondary:focus {
  background: #f7f5ff;
  border-color: rgba(75, 38, 255, 0.22);
  color: #121949 !important;
}

.site-header-btn-primary {
  border-color: #4b26ff;
  background: linear-gradient(135deg, #4b26ff 0%, #7e2dff 100%);
  color: #ffffff !important;
  box-shadow: 0 16px 28px rgba(75, 38, 255, 0.24);
}

.site-header-btn-primary:hover,
.site-header-btn-primary:focus {
  border-color: #4121de;
  background: linear-gradient(135deg, #4121de 0%, #6720d9 100%);
  color: #ffffff !important;
}

.site-header-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.24rem;
  width: 2.95rem;
  height: 2.95rem;
  padding: 0;
  border: 1px solid rgba(18, 25, 73, 0.1);
  border-radius: 1rem;
  background: #ffffff;
  color: #121949;
  box-shadow: 0 12px 24px rgba(18, 25, 73, 0.08);
  cursor: pointer;
}

.site-header-toggle-line {
  display: block;
  width: 1.05rem;
  height: 0.13rem;
  border-radius: 999px;
  background: currentColor;
}

.site-header-menu-open {
  overflow: hidden;
}

.site-header-drawer-wrap {
  position: fixed;
  inset: 0;
  z-index: 1300;
}

.site-header-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 23, 42, 0.48);
  opacity: 0;
  transition: opacity 0.28s ease;
  cursor: pointer;
}

.site-header-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 380px);
  height: 100%;
  padding: 1rem;
  background:
    radial-gradient(circle at top right, rgba(186, 230, 253, 0.42), transparent 38%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: -24px 0 48px rgba(15, 23, 42, 0.18);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-header-drawer-wrap.is-open .site-header-backdrop {
  opacity: 1;
}

.site-header-drawer-wrap.is-open .site-header-drawer {
  transform: translateX(0);
}

.site-header-drawer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.site-header-drawer-brand {
  min-width: 0;
}

.site-header-drawer-eyebrow {
  display: inline-block;
  margin-bottom: 0.3rem;
  color: #0f766e;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-header-drawer-title {
  display: block;
  color: #0f172a;
  font-size: 1.15rem;
  line-height: 1.2;
}

.site-header-close {
  position: relative;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 0.95rem;
  background: #ffffff;
  cursor: pointer;
  flex: 0 0 auto;
}

.site-header-close::before,
.site-header-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1rem;
  height: 0.13rem;
  border-radius: 999px;
  background: #0f172a;
}

.site-header-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.site-header-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.site-header-drawer-links {
  display: grid;
  gap: 0.45rem;
}

.site-header-drawer-link {
  justify-content: flex-start;
  min-height: 3rem;
  padding-inline: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
}

.site-header-drawer-actions {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.25rem;
  font-size: 0;
}

.site-header-drawer-actions.is-guest {
  justify-items: center;
}

.site-header-drawer-actions .site-header-btn {
  width: 100%;
  height: 2.9rem;
  min-height: 0;
}

.site-header-drawer-actions.is-guest .site-header-btn {
  max-width: 18rem;
}

@media (max-width: 991.98px) {
  .site-header-nav {
    padding: 0.72rem 0;
  }

  .site-header-desktop {
    display: none;
  }

  .site-header-toggle {
    display: inline-flex;
    margin-left: auto;
  }
}

.site-footer {
  margin-top: 3rem;
  padding: 1.1rem 0;
  background: #0b1220;
}

.site-footer-shell {
  width: 100%;
  margin: 0 auto;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(2, minmax(0, 0.8fr));
  gap: 1.5rem;
  align-items: start;
}

.site-footer-col {
  min-width: 0;
}

.site-footer-col-brand {
  max-width: 26rem;
}

.site-footer-brand-name {
  margin: 0 0 0.7rem;
  color: #ffffff;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.08;
}

.site-footer-brand-copy {
  margin: 0;
  color: #dbe7f3;
  max-width: 22rem;
}

.site-footer-brand-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.site-footer-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
}

.site-footer-badge-alert {
  color: #ffd3d3;
}

.site-footer-brand-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
  margin-top: 1rem;
}

.site-footer-brand-links a,
.site-footer-link-list a {
  color: #f8fbff !important;
}

.site-footer-brand-links a:hover,
.site-footer-brand-links a:focus,
.site-footer-link-list a:hover,
.site-footer-link-list a:focus {
  color: #9fe7de !important;
  text-decoration: underline !important;
}

.site-footer-heading {
  margin: 0 0 0.85rem;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.2;
}

.site-footer-link-list {
  display: grid;
  gap: 0.6rem;
}

.site-footer-divider {
  border-color: rgba(255, 255, 255, 0.22);
  border-style: solid;
  border-width: 1px 0 0;
  margin: 1rem 0 0.75rem;
}

.site-footer-copy {
  margin: 0;
  color: #eef5fb;
  text-align: center;
}

.site-footer-separator {
  color: rgba(255, 255, 255, 0.45);
}

.user-page-shell {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.consent-lock {
  overflow: hidden;
}

.age-consent-overlay {
  position: fixed;
  inset: 0;
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(4px);
}

.age-consent-overlay.is-hidden {
  display: none !important;
}

.age-consent-modal {
  width: min(100%, var(--shell-dialog-max));
  border: 1px solid rgba(8, 145, 178, 0.16);
  border-radius: 1.5rem;
  padding: 1.35rem;
  background:
    radial-gradient(circle at top left, rgba(186, 230, 253, 0.48), transparent 40%),
    linear-gradient(180deg, #ffffff 0%, #f8fdff 100%);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.24);
}

.age-consent-modal:focus {
  outline: none;
}

.age-consent-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: #0f172a;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.age-consent-title {
  margin: 0 0 0.55rem;
  color: #0f172a;
  font-size: 1.38rem;
  line-height: 1.2;
}

.age-consent-copy {
  margin: 0 0 0.95rem;
  color: #475569;
}

.age-consent-note {
  margin: 0 0 1rem;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 600;
}

.age-consent-check {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0 0 1rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
}

.age-consent-check input {
  margin-top: 0.18rem;
  flex: 0 0 auto;
}

.age-consent-check label {
  margin: 0;
  color: #334155;
  font-size: 0.88rem;
  line-height: 1.5;
}

.age-consent-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.age-consent-btn {
  flex: 1 1 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.7rem 1rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.age-consent-btn:hover,
.age-consent-btn:focus {
  text-decoration: none;
}

.age-consent-btn:focus-visible,
.age-consent-check input:focus-visible,
.age-consent-legal a:focus-visible,
.age-consent-check a:focus-visible {
  outline: 3px solid rgba(29, 78, 216, 0.26);
  outline-offset: 3px;
}

.age-consent-btn-primary {
  background: #0f766e;
  border-color: #0f766e;
  color: #ffffff !important;
}

.age-consent-btn-primary:hover,
.age-consent-btn-primary:focus {
  background: #0d675f;
  border-color: #0d675f;
  color: #ffffff !important;
}

.age-consent-btn-secondary {
  background: #ffffff;
  border-color: rgba(15, 23, 42, 0.16);
  color: #0f172a !important;
}

.age-consent-btn-secondary:hover,
.age-consent-btn-secondary:focus {
  background: #f8fafc;
  color: #0f172a !important;
}

.age-consent-btn:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  filter: grayscale(0.08);
}

.age-consent-legal {
  margin-top: 0.9rem;
  color: #64748b;
  font-size: 0.8rem;
  line-height: 1.5;
}

.age-consent-legal a {
  font-weight: 600;
}

.location-discovery-section {
  margin: 1rem 0;
}

.location-discovery-shell {
  border: 1px solid rgba(14, 116, 144, 0.12);
  border-radius: 1.4rem;
  padding: 0.9rem;
  background:
    radial-gradient(circle at top left, rgba(186, 230, 253, 0.45), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.06);
}

.location-discovery-block + .location-discovery-block,
.location-discovery-block-top {
  margin-top: 1rem;
}

.location-discovery-block-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  margin-bottom: 0.95rem;
  text-align: center;
}

.location-discovery-heading-wrap {
  flex: 1;
  min-width: 0;
}

.location-discovery-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 0.38rem 0.78rem;
  border-radius: 999px;
  background: #083344;
  color: #ecfeff;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
}

.location-discovery-block-title {
  margin: 0;
  color: #0f172a;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.25;
}

.location-discovery-block-text {
  margin: 0.32rem 0 0;
  color: #475569;
  font-size: 0.88rem;
  line-height: 1.5;
}

.location-discovery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
  gap: 0.72rem;
}

.location-discovery-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 4rem;
  padding: 0.72rem 0.8rem;
  border: 1px solid rgba(14, 116, 144, 0.14);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(14, 116, 144, 0.06);
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.location-discovery-link:hover,
.location-discovery-link:focus {
  background: #f0fdfa;
  border-color: rgba(8, 145, 178, 0.34);
  color: #0f172a;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(8, 145, 178, 0.12);
}

.location-discovery-link-city {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
}

.location-discovery-link-meta {
  display: block;
  margin-top: 0.24rem;
  color: #64748b;
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

@media (max-width: 575.98px) {
  .site-shell,
  .content-shell,
  .profile-shell,
  .narrow-shell {
    width: min(100% - var(--shell-gutter-mobile), 100%) !important;
  }

  .site-shell {
    max-width: var(--shell-site-max) !important;
  }

  .content-shell {
    max-width: var(--shell-content-max) !important;
  }

  .profile-shell {
    max-width: var(--shell-profile-max) !important;
  }

  .narrow-shell {
    max-width: var(--shell-auth-max) !important;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  h4 {
    font-size: 1.05rem;
  }

  h5 {
    font-size: 0.96rem;
  }

  h6 {
    font-size: 0.88rem;
  }

  p {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .site-header-shell {
    width: 100%;
    gap: 0.8rem;
  }

  .site-header-logo {
    max-width: 174px;
  }

  .site-header-drawer {
    width: min(90vw, 340px);
    padding: 0.9rem;
    justify-content: flex-start;
  }

  .site-header-drawer-top,
  .site-header-drawer-links,
  .site-header-drawer-actions {
    align-items: center;
  }

  .site-header-drawer-links {
    width: 100%;
    margin-top: 0.9rem;
  }

  .site-header-drawer-link {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .site-header-drawer-actions {
    width: 100%;
    margin-top: 0.7rem;
    margin-bottom: 0;
  }

  .age-consent-modal {
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
    padding: 1.1rem;
    border-radius: 1.2rem;
  }

  .age-consent-title {
    font-size: 1.2rem;
  }

  .age-consent-copy,
  .age-consent-note,
  .age-consent-legal,
  .age-consent-check label {
    font-size: 0.85rem;
  }

  .age-consent-actions {
    flex-direction: column;
  }

  .age-consent-btn {
    width: 100%;
    flex-basis: auto;
  }

  .site-header-link,
  .site-header-drawer-link,
  .site-header-btn {
    font-size: 0.88rem;
  }

  .location-discovery-shell {
    padding: 0.95rem;
    border-radius: 1.15rem;
  }

  .location-discovery-block-header {
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 0.8rem;
  }

  .location-discovery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .location-discovery-link {
    min-height: 3.9rem;
    padding: 0.72rem 0.78rem;
    border-radius: 0.9rem;
  }

  .location-discovery-link-city {
    font-size: 0.9rem;
  }

  .location-discovery-link-meta {
    font-size: 0.68rem;
  }

  .site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.1rem;
  }

  .site-footer-col-brand {
    grid-column: 1 / -1;
    max-width: none;
  }

  .site-footer-brand-copy {
    max-width: none;
  }

  .site-footer-heading {
    margin-bottom: 0.7rem;
  }

  .site-footer-separator {
    opacity: 0.5;
  }

  .location-discovery-shell {
    padding: 0.875rem;
  }

  .location-discovery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.425rem;
  }

  .location-discovery-link {
    min-height: 2.5rem;
    padding: 0.4rem 0.5rem;
    font-size: 0.75rem;
  }
}
