/* Shared rules stay in public/global.css; route-specific rules live in this page CSS. */
:root {
  color-scheme: light;
  --font-sans: var(--font-ibm-plex-sans, "IBM Plex Sans"), -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-mono: var(--font-ibm-plex-mono, "IBM Plex Mono"), "SFMono-Regular", Consolas, monospace;
  --ink: #081014;
  --body: #20292d;
  --muted: #4b5a60;
  --quiet: #738086;
  --page: #fff;
  --panel: rgba(255, 255, 255, 0.92);
  --panel-soft: #f1f5f5;
  --line: rgba(133, 150, 156, 0.24);
  --line-strong: rgba(98, 119, 127, 0.34);
  --nav: rgba(248, 251, 251, 0.12);
  --nav-solid: #eef3f4;
  --ice: #72c4e6;
  --ice-soft: #dcebf0;
  --teal: #1f6576;
  --teal-deep: #123f4d;
  --button-bg: var(--teal-deep);
  --button-hover: #0d3440;
  --steel: #edf2f2;
  --green: #0a7b4b;
  --red: #b83248;
  --amber: #8b6508;
  --shadow: 0 18px 42px rgba(11, 30, 38, 0.08);
  --glass-shadow: 0 18px 48px rgba(16, 31, 38, 0.12);
  --surface-shadow: 0 14px 36px rgba(15, 39, 48, 0.07);
  --radius-lg: 20px;
  --radius-md: 15px;
  --radius-sm: 11px;
}

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

@media (max-width: 760px) {
  input,
select,
textarea {
    font-size: 16px;
  }
}

* {
  box-sizing: border-box;
}

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

body {
  overflow-x: clip;
  min-width: 320px;
  margin: 0;
  color: var(--body);
  background: #fff;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

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

a:hover {
  color: var(--teal);
  text-decoration: underline;
}

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

button {
  cursor: pointer;
}

.frosted-glass {
  background: rgba(255, 255, 255, 0.34);
  box-shadow: none;
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
}

.app-shell {
  width: min(1536px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 64px) 56px;
}

.site-footer {
  margin-top: clamp(28px, 5vw, 72px);
  padding-top: clamp(12px, 1.5vw, 16px);
  border-top: 1px solid var(--line);
  color: var(--quiet);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(150px, max-content) minmax(0, 50%);
  gap: 10px clamp(20px, 4vw, 56px);
  justify-content: space-between;
  align-items: start;
}

.site-footer p {
  margin: 0;
}

.site-footer-brand {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  white-space: nowrap;
}

.site-footer-disclaimer {
  width: 100%;
  justify-self: end;
  color: rgba(82, 94, 99, 0.68);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  text-align: right;
}

.site-footer-disclaimer .ahr-chart-attribution {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: none;
}

.site-footer-disclaimer .ahr-chart-attribution:hover,
.site-footer-disclaimer .ahr-chart-attribution:focus-visible {
  color: inherit;
  text-decoration: none;
}

.site-footer-content {
  display: grid;
  gap: 8px;
  justify-items: end;
}

.site-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 16px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.site-footer-links a {
  text-decoration: none;
}

.site-footer-links a:hover,
.site-footer-links a:focus-visible {
  color: var(--teal);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .site-footer-disclaimer {
    justify-self: start;
    text-align: left;
  }

  .site-footer-content {
    justify-items: start;
  }

  .site-footer-links {
    justify-content: flex-start;
  }
}

.topbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr minmax(120px, 154px) auto;
  align-items: center;
  column-gap: 28px;
  min-height: 64px;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  padding-inline: max(clamp(16px, 4vw, 64px), calc((100vw - 1536px) / 2 + clamp(16px, 4vw, 64px)));
  color: var(--ink);
  border-bottom: 1px solid rgb(241, 244, 245);
  overflow: visible;
}

.topbar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: none;
  pointer-events: none;
}

.brand,
.nav,
.language-select,
.toolbar-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 11px;
  justify-self: start;
  line-height: 1;
  white-space: nowrap;
  width: fit-content;
}

.brand-logo {
  display: block;
  width: 104px;
  height: auto;
}

.toolbar-actions {
  justify-content: flex-end;
  gap: clamp(24px, 3vw, 42px);
  padding-right: clamp(4px, 0.8vw, 12px);
}

.toolbar-search {
  position: relative;
  display: flex;
  align-items: center;
  justify-self: end;
  width: min(154px, 17vw);
  min-width: 120px;
  height: 42px;
  border: 1px solid rgba(139, 158, 165, 0.42);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.toolbar-search:focus-within {
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.toolbar-search input {
  width: 100%;
  min-width: 0;
  height: 40px;
  padding: 0 15px;
  border: 0;
  color: var(--ink);
  background: transparent;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  outline: 0;
  text-transform: uppercase;
}

.symbol-autocomplete {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  z-index: 80;
  display: grid;
  width: min(320px, calc(100vw - 32px));
  max-height: min(360px, calc(100vh - 86px));
  overflow: auto;
  padding: 7px;
  border: 1px solid rgba(139, 158, 165, 0.3);
  border-radius: 16px;
  background: #fff;
}

.symbol-autocomplete[hidden] {
  display: none;
}

.symbol-option,
.symbol-message {
  min-height: 40px;
  padding: 8px 10px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  text-align: left;
}

.symbol-option {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3px;
  align-items: start;
  color: var(--body);
}

.symbol-option:hover,
.symbol-option:focus-visible {
  color: var(--ink);
  background: rgb(245, 245, 245);
  outline: 0;
}

.symbol-option:hover strong,
.symbol-option:focus-visible strong {
  color: var(--ink);
}

.symbol-option:hover span,
.symbol-option:focus-visible span {
}

.symbol-option strong {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.15;
}

.symbol-option span,
.symbol-message {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.symbol-message {
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

.menu-toggle:focus-visible {
  outline: 0;
  color: #fff;
  background: var(--button-hover);
}

.topbar.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.topbar.is-menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brand:hover {
  text-decoration: none;
}

.nav {
  justify-content: center;
  gap: clamp(22px, 3vw, 44px);
  color: #2e3a3f;
  font-size: 15.5px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav a,
.nav-tools > button {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  border-bottom: 3px solid transparent;
}

.nav a:hover,
.nav-tools > button:hover {
  color: var(--quiet);
  border-bottom-color: transparent;
  text-decoration: none;
}

.nav-tools > button:focus-visible {
  outline: 2px solid #d7dee1;
  outline-offset: 4px;
}

.nav-tools {
  position: relative;
  display: inline-flex;
  align-items: stretch;
}

.nav-tools > button {
  padding: 0;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  color: inherit;
  background: transparent;
  font-size: inherit;
  font-weight: inherit;
  text-transform: inherit;
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  width: max-content;
  min-width: 210px;
  max-width: calc(100vw - 32px);
  overflow-x: auto;
  padding: 8px;
  border: 1px solid rgba(139, 158, 165, 0.3);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(16, 31, 38, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.nav-tools:hover .nav-menu,
.nav-tools.is-open .nav-menu,
.nav-tools:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.nav-menu a {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  justify-content: flex-start;
  white-space: nowrap;
  min-height: 42px;
  padding: 0 12px;
  color: var(--body);
  border-bottom: 0;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 650;
  line-height: 1.15;
  text-transform: none;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--ink);
  background: rgb(245, 245, 245);
  outline: 0;
}

.language-select {
  position: relative;
  z-index: 40;
  gap: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
}

.language-select.is-open {
  z-index: 100;
}

.language-select select {
  appearance: none;
  min-height: 38px;
  min-width: 142px;
  max-width: 170px;
  padding: 7px 38px 7px 13px;
  border: 1px solid rgba(154, 168, 173, 0.72);
  border-radius: 6px;
  color: var(--ink);
  background:
    linear-gradient(45deg, transparent 50%, #aebbc0 50%) calc(100% - 18px) 16px / 6px 6px no-repeat,
    linear-gradient(135deg, #aebbc0 50%, transparent 50%) calc(100% - 14px) 16px / 6px 6px no-repeat,
    linear-gradient(#fff, #fff);
  outline: none;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.86), 0 8px 22px rgba(16, 31, 38, 0.06);
}

.language-select.is-enhanced select {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.language-select select option {
  color: var(--ink);
  background: #fff;
}

.language-select select:focus {
  border-color: #aebbc0;
  box-shadow: 0 0 0 3px rgba(172, 184, 188, 0.28), 0 8px 22px rgba(16, 31, 38, 0.08);
}

.language-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  line-height: 1;
}

.language-trigger-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.globe-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
}

.globe-icon svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.language-select.is-open .language-trigger,
.language-trigger:focus-visible {
  outline: 0;
  background: rgb(245, 245, 245);
  box-shadow: none;
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  display: grid;
  width: max-content;
  min-width: 232px;
  max-width: calc(100vw - 24px);
  max-height: var(--language-menu-max-height, min(360px, calc(100vh - 128px)));
  overflow-y: auto;
  overflow-x: auto;
  overscroll-behavior: contain;
  padding: 8px;
  border: 1px solid rgba(139, 158, 165, 0.3);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(16, 31, 38, 0.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top right;
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.language-select.is-open .language-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.language-option {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: 40px;
  padding: 0 11px 0 12px;
  border: 0;
  border-radius: 9px;
  color: var(--body);
  background: transparent;
  font-size: 14.5px;
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
}

.language-option:hover,
.language-option:focus-visible {
  color: var(--ink);
  background: rgb(245, 245, 245);
  outline: 0;
}

.language-option.is-selected {
  color: var(--ink);
  background: rgb(229, 229, 229);
}

.language-option.is-selected::after {
  content: "";
  width: 6px;
  height: 10px;
  border-right: 2px solid #aebbc0;
  border-bottom: 2px solid #aebbc0;
  transform: rotate(42deg);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(38px, 4.7vw, 64px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.page-h1 {
  color: var(--ink);
  font-size: clamp(28px, 3.1vw, 38px);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: 0;
}

.page-eyebrow {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

html[dir="rtl"] {
  direction: rtl;
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .brand,
html[dir="rtl"] .language-select {
  flex-direction: row-reverse;
}

html[dir="rtl"] .language-menu {
  right: auto;
  left: 0;
  transform-origin: top left;
}

html[dir="rtl"] .symbol-autocomplete {
  right: auto;
  left: 0;
}

html[dir="rtl"] .symbol-option,
html[dir="rtl"] .symbol-message {
  text-align: right;
}

html[dir="rtl"] .language-option {
  grid-template-columns: auto 1fr;
  text-align: right;
}

html[dir="rtl"] .toolbar-actions {
  padding-right: 0;
  padding-left: clamp(4px, 0.8vw, 12px);
}

html[dir="rtl"] .nav-menu a {
  justify-content: flex-end;
  text-align: right;
}

.range-toolbar-theme {
  --range-toolbar-border: rgb(241, 244, 245);
  --range-toolbar-bg: rgba(229, 229, 229, 0.34);
  --range-toolbar-item-color: var(--muted);
  --range-toolbar-hover-color: var(--ink);
  --range-toolbar-hover-bg: rgb(229, 229, 229);
  --range-toolbar-active-color: #fff;
  --range-toolbar-active-border: var(--button-bg);
  --range-toolbar-active-bg: var(--button-bg);
  border-color: var(--range-toolbar-border);
  background: var(--range-toolbar-bg);
}

.range-toolbar-theme > button,
.range-toolbar-theme > a,
.range-toolbar-theme > .range-toolbar-label {
  color: var(--range-toolbar-item-color);
  background: transparent;
}

.range-toolbar-theme > button:hover,
.range-toolbar-theme > a:hover {
  color: var(--range-toolbar-hover-color);
  background: var(--range-toolbar-hover-bg);
}

.range-toolbar-theme > button.is-active,
.range-toolbar-theme > a.is-active {
  color: var(--range-toolbar-active-color);
  border-color: var(--range-toolbar-active-border);
  background: var(--range-toolbar-active-bg);
  box-shadow: none;
}

.text-quiet {
  color: var(--quiet);
}

.symbol-thesis-panel {
  margin-bottom: 0;
}

@media (max-width: 1040px) {
  .topbar {
    min-height: 58px;
  }

  .brand-logo {
    width: 94px;
  }

  .toolbar-search {
    height: 38px;
  }

  .toolbar-search input {
    height: 36px;
    padding-inline: 13.5px;
    font-size: 14.5px;
  }

  .symbol-autocomplete {
    --symbol-autocomplete-gutter: clamp(16px, 4vw, 64px);
    position: fixed;
    top: 55px;
    right: auto;
    left: var(--symbol-autocomplete-left, 50%);
    width: calc(var(--symbol-autocomplete-viewport-width, 100vw) - var(--symbol-autocomplete-gutter) - var(--symbol-autocomplete-gutter));
    max-height: min(330px, calc(100vh - 78px));
    transform: translateX(-50%);
  }

  html[dir="rtl"] .symbol-autocomplete {
    right: auto;
    left: var(--symbol-autocomplete-left, 50%);
  }

  .language-trigger {
    width: 41px;
    height: 41px;
    min-width: 41px;
    min-height: 41px;
  }

  .globe-icon,
.globe-icon svg {
    width: 22px;
    height: 22px;
  }

  .nav {
    order: 3;
    justify-content: flex-start;
    overflow: visible;
    padding-bottom: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    min-height: 44px;
  }

  .nav-tools > button {
    min-height: 44px;
  }
}

@media (max-width: 680px) {
  .app-shell {
    padding-inline: 12px;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .site-footer-disclaimer {
    justify-self: start;
    text-align: left;
  }

  .site-footer-content {
    justify-items: start;
  }

  .site-footer-links {
    justify-content: flex-start;
  }

  .topbar {
    margin-inline: -12px;
    padding-inline: 12px;
  }

  .topbar {
    grid-template-columns: minmax(70px, 1fr) minmax(96px, 27vw) auto auto;
    gap: 8px;
    min-height: 58px;
    padding-block: 8px;
  }

  .brand-logo {
    width: 94px;
  }

  .toolbar-search {
    width: 100%;
    min-width: 0;
    height: 36px;
  }

  .toolbar-search input {
    height: 34px;
    padding: 0 9px;
    font-size: 14.5px;
  }

  .symbol-autocomplete {
    --symbol-autocomplete-gutter: 12px;
  }

  html[dir="rtl"] .symbol-autocomplete {
    right: auto;
    left: var(--symbol-autocomplete-left, 50%);
  }

  .language-trigger {
    width: 41px;
    height: 41px;
    min-width: 41px;
    min-height: 41px;
  }

  .globe-icon,
.globe-icon svg {
    width: 22px;
    height: 22px;
  }

  .menu-toggle {
    position: relative;
    z-index: 120;
    display: inline-flex;
    justify-self: end;
    width: 41px;
    height: 41px;
    gap: 4.5px;
  }

  .menu-toggle span {
    width: 16px;
  }

  .topbar.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .topbar.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .toolbar-actions {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 110;
    display: flex;
    width: min(340px, 86vw);
    height: 100dvh;
    align-items: stretch;
    justify-content: flex-start;
    gap: 22px;
    flex-direction: column;
    padding: 70px 12px 24px;
    border-left: 1px solid rgba(172, 184, 188, 0.32);
    background: #fff;
    box-shadow: none;
    transform: translateX(104%);
    transition: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  html[dir="rtl"] .toolbar-actions {
    right: auto;
    left: 0;
    border-right: 1px solid rgba(172, 184, 188, 0.32);
    border-left: 0;
    transform: translateX(-104%);
  }

  .topbar.is-menu-animating .toolbar-actions {
    transition: transform 0.22s ease;
  }

  .topbar.is-menu-open .toolbar-actions {
    box-shadow: -28px 0 70px rgba(16, 31, 38, 0.18);
    transform: translateX(0);
  }

  html[dir="rtl"] .topbar.is-menu-open .toolbar-actions {
    box-shadow: 28px 0 70px rgba(16, 31, 38, 0.18);
  }

  .nav {
    order: initial;
    display: grid;
    gap: 8px;
    width: 100%;
    justify-content: stretch;
    overflow: visible;
    font-size: 16px;
    text-transform: none;
  }

  .nav-tools > button {
    width: 100%;
    justify-content: flex-start;
    min-height: 24px;
    border-bottom: 0;
    color: var(--quiet);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  html[dir="rtl"] .nav-tools > button {
    padding-inline-start: 12px;
    text-align: right;
  }

  .nav-tools {
    display: grid;
    gap: 10px;
    width: 100%;
    justify-self: stretch;
    align-items: start;
    padding: 0;
    border: 0;
    border-radius: 16px;
    background: transparent;
    box-shadow: none;
  }

  .nav-menu {
    display: grid;
    gap: 2px;
    position: static;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding: 0;
    padding-inline-end: 12px;
    border: 0;
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    transition: none;
  }

  .nav-tools:hover .nav-menu,
.nav-tools.is-open .nav-menu,
.nav-tools:focus-within .nav-menu {
    transform: none;
  }

  .nav-menu a {
    width: 100%;
    min-height: 40px;
    align-items: center;
    padding: 0 12px;
    border: 0;
    border-radius: 9px;
    color: var(--body);
    background: transparent;
    box-shadow: none;
    font-size: 14.5px;
    font-weight: 600;
  }

  .nav-menu a:hover,
.nav-menu a:focus-visible {
    color: var(--ink);
    background: rgb(245, 245, 245);
    box-shadow: none;
    outline: 0;
  }

  .language-select {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .language-trigger {
    width: 41px;
    min-width: 41px;
  }

  .language-menu {
    z-index: 60;
    right: 0;
    left: auto;
    width: max-content;
    min-width: 220px;
    max-width: calc(100vw - 24px);
    transform-origin: top right;
    background: #fff;
  }

  html[dir="rtl"] .language-menu {
    right: auto;
    left: 0;
    transform-origin: top left;
  }

  h1 {
    font-size: clamp(34px, 9vw, 38px);
    line-height: 1.06;
  }

  .page-eyebrow {
    font-size: 11px;
    line-height: 1.42;
  }
}

@media (max-width: 1040px) {

  .page-h1 {
    font-size: clamp(26px, 3vw, 32px);
  }
}

@media (max-width: 760px) {

  .page-h1 {
    font-size: clamp(20px, 5.6vw, 25px);
    line-height: 1.02;
  }
}

@media (max-width: 420px) {

  .page-h1 {
    font-size: clamp(19px, 5.2vw, 23px);
  }
}

@media (max-width: 760px) {
  input:not([type="hidden"]),
select,
textarea {
    font-size: 16px;
  }
}
