@font-face {
  font-family: "Mulish";
  src: url("/themes/sayzek/assets/fonts/Mulish/Mulish-VariableFont_wght.ttf") format("truetype");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #111827;
  --ink-soft: #2f3a4a;
  --muted: #667085;
  --line: #e5e9f0;
  --line-strong: #d4dbe7;
  --paper: #ffffff;
  --soft: #f6f8fb;
  --soft-2: #eef3f9;
  --blue: #123f8c;
  --blue-dark: #0b2f6d;
  --cyan: #0b7ea3;
  --orange: #d65d36;
  --shadow: 0 18px 42px rgba(17, 24, 39, 0.08);
  --container: 1240px;
  --radius: 8px;
}

html[data-color-mode="dark"] {
  color-scheme: dark;
  --ink: #f4f7fb;
  --ink-soft: #cbd5e1;
  --muted: #98a5b8;
  --line: rgba(148, 163, 184, 0.22);
  --line-strong: rgba(148, 163, 184, 0.34);
  --paper: #08111f;
  --soft: #0d1726;
  --soft-2: #142235;
  --blue: #83b6ff;
  --blue-dark: #a8ceff;
  --cyan: #67d7f7;
  --orange: #ff916d;
  --shadow: 0 22px 52px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--paper);
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

html.is-home {
  overflow-y: auto;
  scroll-padding-top: 0;
  scroll-snap-type: y proximity;
  overscroll-behavior-y: auto;
}

body.is-home {
  overflow-y: visible;
  scroll-padding-top: 0;
  scroll-snap-type: none;
  overscroll-behavior-y: auto;
}

html.is-home.is-macos {
  scroll-snap-type: y proximity;
}

html.is-home.is-windows {
  scroll-snap-type: y proximity;
}

html.is-home.is-fast-section-scroll {
  scroll-snap-type: y proximity;
  overscroll-behavior-y: auto;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Mulish", system-ui, sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
  overflow-x: hidden;
}

@supports not (overflow: clip) {
  html {
    overflow-x: hidden;
  }
}

[hidden] {
  display: none !important;
}

html.has-open-panel,
body.has-open-panel {
  height: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

iconify-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  vertical-align: middle;
  flex: 0 0 auto;
}

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

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

.main-content {
  background: var(--paper);
}

.site-header {
  position: fixed;
  z-index: 120;
  top: 0;
  left: 0;
  right: 0;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.js .site-header {
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.js .site-header.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.site-header__inner {
  width: min(1360px, calc(100% - 48px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.site-header__brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-mark {
  width: auto;
  height: 52px;
  object-fit: contain;
}

.site-header--home:not(.is-scrolled) {
  color: #ffffff;
}

.site-header--home:not(.is-scrolled) .brand-mark {
  filter: brightness(0) invert(1);
}

.site-header.is-scrolled,
.site-header:not(.site-header--home) {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(17, 24, 39, 0.06);
  color: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}

.site-nav__link,
.site-nav__summary,
.site-header__actions>* {
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.js .site-nav__link,
.js .site-nav__summary,
.js .site-header__actions>* {
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 380ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 460ms cubic-bezier(0.22, 1, 0.36, 1),
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.js .site-header.is-ready .site-nav__link,
.js .site-header.is-ready .site-nav__summary,
.js .site-header.is-ready .site-header__actions>* {
  opacity: 1;
  transform: translateY(0);
}

.site-nav__item:nth-child(1) .site-nav__link,
.site-nav__item:nth-child(1) .site-nav__summary {
  transition-delay: 40ms;
}

.site-nav__item:nth-child(2) .site-nav__link,
.site-nav__item:nth-child(2) .site-nav__summary {
  transition-delay: 80ms;
}

.site-nav__item:nth-child(3) .site-nav__link,
.site-nav__item:nth-child(3) .site-nav__summary {
  transition-delay: 120ms;
}

.site-nav__item:nth-child(4) .site-nav__link,
.site-nav__item:nth-child(4) .site-nav__summary {
  transition-delay: 160ms;
}

.site-nav__item:nth-child(5) .site-nav__link,
.site-nav__item:nth-child(5) .site-nav__summary {
  transition-delay: 200ms;
}

.site-header__actions>*:nth-child(1) {
  transition-delay: 220ms;
}

.site-header__actions>*:nth-child(2) {
  transition-delay: 250ms;
}

.site-header__actions>*:nth-child(3) {
  transition-delay: 280ms;
}

.site-header__actions>*:nth-child(4) {
  transition-delay: 310ms;
}

.site-nav__link,
.site-nav__summary {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0;
  list-style: none;
}

.site-nav__summary::-webkit-details-marker {
  display: none;
}

.site-nav__summary::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: 0.72;
}

.site-nav__item {
  position: relative;
}

.site-nav__item[open] .site-nav__summary,
.site-nav__link:hover,
.site-nav__summary:hover {
  color: var(--blue);
}

.site-header--home:not(.is-scrolled) .site-nav__item[open] .site-nav__summary,
.site-header--home:not(.is-scrolled) .site-nav__link:hover,
.site-header--home:not(.is-scrolled) .site-nav__summary:hover {
  color: #ffffff;
}

.site-nav__mega {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: block;
  width: min(270px, calc(100vw - 48px));
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px) scale(0.985);
  transform-origin: top center;
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav__item[open] .site-nav__mega {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.site-nav__mega-links {
  display: grid;
  gap: 2px;
}

.site-nav__mega-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 0 12px;
  border-bottom: 0;
  border-radius: 6px;
  color: var(--ink);
  transition:
    background 160ms ease,
    color 160ms ease;
}

.site-nav__mega-links strong {
  display: block;
  margin-bottom: 0;
  font-size: 14px;
}

.site-nav__mega-links a iconify-icon {
  width: 15px;
  height: 15px;
  color: var(--muted);
}

.site-nav__mega-links a:hover,
.site-nav__mega-links a:focus-visible {
  background: var(--soft);
  color: var(--blue);
  outline: none;
}

.site-nav__mega-links a:hover strong,
.site-nav__mega-links a:focus-visible strong,
.site-nav__mega-links a:hover iconify-icon,
.site-nav__mega-links a:focus-visible iconify-icon {
  color: var(--blue);
}

.site-header__actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex: 0 0 auto;
  min-height: 42px;
}

.header-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  line-height: 1;
  transition: color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.header-action:hover,
.header-action:focus-visible {
  color: var(--blue);
  outline: none;
  transform: translateY(-1px);
}

.site-header--home:not(.is-scrolled) .header-action:hover,
.site-header--home:not(.is-scrolled) .header-action:focus-visible {
  color: #ffffff;
  opacity: 0.78;
}

.header-action iconify-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin: auto;
  font-size: 22px;
  line-height: 0;
}

.header-action iconify-icon svg {
  display: block;
}

.header-theme {
  color: inherit;
}

.header-language {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.header-auth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
  transition:
    opacity 380ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 460ms cubic-bezier(0.22, 1, 0.36, 1),
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.header-auth--login {
  color: inherit;
}

.header-auth--login:hover {
  color: var(--blue);
}

.header-auth--register {
  padding: 0 18px;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #ffffff;
}

.header-auth--register:hover {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
}

.site-header--home:not(.is-scrolled) .header-auth--login:hover {
  color: #ffffff;
  opacity: 0.78;
}

.site-header--home:not(.is-scrolled) .header-auth--register {
  border-color: #ffffff;
  background: #ffffff;
  color: var(--blue-dark);
}

.site-header--home:not(.is-scrolled) .header-auth--register:hover {
  background: var(--soft-2);
}

.site-header__menu-button {
  display: none;
}

.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  max-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  overflow: hidden;
  isolation: isolate;
  background: #111827;
  color: #ffffff;
}

.hero__bg,
.hero__shade,
.hero-network,
.page-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__bg {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 13, 28, 0.78), rgba(5, 13, 28, 0.36) 44%, rgba(5, 13, 28, 0.08)),
    linear-gradient(180deg, rgba(5, 13, 28, 0.32), rgba(5, 13, 28, 0.52));
}

.hero-network,
.page-network {
  z-index: -1;
  pointer-events: none;
  opacity: 0.86;
  mix-blend-mode: screen;
}

.page-network {
  z-index: -1;
  opacity: 0.48;
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 82px;
}

.hero__content {
  width: min(540px, 100%);
  padding: 48px 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(52px, 8vw, 116px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
}

.hero p {
  max-width: 430px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.4;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-scroll {
  position: absolute;
  z-index: 5;
  left: 50%;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  transform: translateX(-50%);
}

.hero-scroll iconify-icon {
  width: 17px;
  height: 17px;
}

.hero-scroll:hover {
  border-color: #ffffff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  font-size: 14px;
  font-weight: 820;
  letter-spacing: 0;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

.button--primary:hover {
  background: var(--blue-dark);
}

.back-to-top {
  position: fixed;
  right: auto;
  left: clamp(18px, 2.4vw, 34px);
  bottom: 96px;
  z-index: 130;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.12);
  transition: opacity 160ms ease, transform 160ms ease, color 160ms ease, border-color 160ms ease;
}

.back-to-top[hidden] {
  display: none;
}

.back-to-top:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-1px);
}

.back-to-top iconify-icon {
  width: 20px;
  height: 20px;
}

.button--plain {
  border-color: rgba(255, 255, 255, 0.66);
  background: transparent;
  color: #ffffff;
}

.button--plain:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.hero-social {
  position: absolute;
  z-index: 3;
  left: clamp(18px, 3vw, 44px);
  top: 50%;
  display: grid;
  gap: 18px;
  --social-icon-size: 21px;
  --social-image-size: 16px;
  transform: translateY(-50%);
}

.hero-social a,
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.hero-social a {
  color: #ffffff;
  opacity: 0.86;
}

.hero-social a:hover,
.footer-social a:hover {
  color: var(--cyan);
  opacity: 1;
}

.hero-social iconify-icon,
.footer-social iconify-icon,
.hero-social svg,
.footer-social svg,
.social-icon {
  width: var(--social-icon-size, 21px);
  height: var(--social-icon-size, 21px);
}

.social-icon {
  display: inline-grid;
  place-items: center;
  color: currentColor;
  line-height: 1;
}

.social-icon iconify-icon,
.social-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  color: currentColor;
}

.social-icon svg,
.social-icon svg [fill]:not([fill="none"]) {
  fill: currentColor;
}

.social-icon svg [stroke]:not([stroke="none"]) {
  stroke: currentColor;
}

.social-icon-image {
  display: inline-block;
  background: currentColor;
  -webkit-mask: var(--social-icon-url) center / var(--social-image-size, 16px) var(--social-image-size, 16px) no-repeat;
  mask: var(--social-icon-url) center / var(--social-image-size, 16px) var(--social-image-size, 16px) no-repeat;
  vertical-align: middle;
}

.section-selector {
  --selector-fg: var(--ink);
  --selector-line: rgba(17, 24, 39, 0.24);
  position: fixed;
  z-index: 115;
  right: clamp(16px, 2.4vw, 34px);
  top: 50%;
  display: grid;
  gap: 11px;
  padding: 0;
  color: var(--selector-fg);
  transform: translateY(-50%);
  transition: color 180ms ease, filter 180ms ease;
  will-change: color;
}

.section-selector.is-on-dark {
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.28));
}

.section-selector::before {
  content: "";
  position: absolute;
  top: 11px;
  bottom: 11px;
  left: 50%;
  width: 1px;
  background: var(--selector-line);
  transform: translateX(-50%);
  transition: background 160ms ease;
}

.section-selector__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: currentColor;
  box-shadow: none;
  line-height: 1;
}

.section-selector__item span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.section-selector__item::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: currentColor;
  opacity: 0.72;
}

.section-selector__item em {
  position: absolute;
  right: 34px;
  top: 50%;
  min-width: max-content;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(17, 24, 39, 0.11);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.section-selector__item em::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -5px;
  width: 8px;
  height: 8px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  background: #ffffff;
  transform: translateY(-50%) rotate(45deg);
}

.section-selector__item:hover em,
.section-selector__item:focus-visible em {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.section-selector.is-navigating .section-selector__item:hover em {
  opacity: 0;
  transform: translateY(-50%) translateX(8px);
}

.section-selector__item.is-active {
  border-color: currentColor;
  color: currentColor;
}

.section-selector__item.is-active::before {
  width: 8px;
  height: 8px;
  opacity: 1;
}

.home-section {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: clamp(82px, 10vw, 132px) 0;
  background: #ffffff;
}

.home-section--soft {
  background: var(--soft);
}

.section-frame {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
}

.section-side {
  display: flex;
  align-items: center;
  flex-direction: column;
  border-right: 1px solid var(--line);
  color: var(--muted);
}

.section-side span,
.section-side a {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.section-side span {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.section-side a {
  margin-top: 28px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.section-main {
  min-width: 0;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

.section-head--stack {
  align-items: flex-start;
}

.section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 850;
  line-height: 1.02;
  letter-spacing: 0;
}

.section-controls {
  display: flex;
  gap: 8px;
}

.section-head__actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.section-all-link {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  white-space: nowrap;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease;
}

.section-all-link:hover,
.section-all-link:focus-visible {
  color: var(--blue-dark);
  outline: none;
}

.section-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
}

.section-controls button:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.card-row,
.article-row {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
  padding: 2px 0 18px;
}

.card-row::-webkit-scrollbar,
.article-row::-webkit-scrollbar {
  display: none;
}

.content-card {
  flex: 0 0 min(390px, 86vw);
  scroll-snap-align: start;
}

.content-card>a {
  display: flex;
  height: 100%;
  flex-direction: column;
  color: inherit;
}

.content-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft-2);
}

.content-card__media img,
.content-card__placeholder {
  width: 100%;
  height: 100%;
}

.content-card__media img {
  object-fit: cover;
  transition: transform 700ms ease;
}

.content-card:hover .content-card__media img {
  transform: scale(1.045);
}

.content-card__placeholder {
  display: grid;
  place-items: center;
  color: var(--muted);
}

.content-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px 4px 0;
}

.content-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  min-height: 22px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
}

.content-card__meta span {
  color: var(--blue);
}

.content-card__title {
  display: -webkit-box;
  min-height: 0;
  max-height: calc(1.28em * 2);
  overflow: hidden;
  color: var(--ink);
  font-size: 21px;
  font-weight: 850;
  line-height: 1.28;
  letter-spacing: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.content-card__text {
  display: -webkit-box;
  margin-top: 12px;
  overflow: hidden;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.content-card__action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  margin-top: 22px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
}

.content-card:hover .content-card__title,
.content-card:hover .content-card__action {
  color: var(--blue);
}

.content-card--article {
  flex-basis: min(360px, 84vw);
}

.content-card--article>a,
.content-card--text>a {
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.content-card--article .content-card__body,
.content-card--text .content-card__body {
  padding: 0;
}

.content-card--article .content-card__title {
  max-height: calc(1.18em * 3);
  font-size: 23px;
  line-height: 1.18;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.content-card--text .content-card__title {
  max-height: calc(1.24em * 3);
  line-height: 1.24;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.content-card__action iconify-icon,
.breadcrumb iconify-icon,
.detail-meta iconify-icon,
.page-header__meta iconify-icon,
.archive-filter iconify-icon,
.archive-page-arrow iconify-icon {
  display: inline-grid;
  place-items: center;
  align-self: center;
  flex: 0 0 auto;
  line-height: 0;
  vertical-align: middle;
}

.content-card--archive {
  flex: initial;
}

.dictionary-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: min(480px, 100%);
  min-height: 48px;
  padding: 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--muted);
}

.dictionary-search input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.dictionary-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  min-height: 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: var(--blue);
  line-height: 0;
  transition: color 160ms ease, transform 160ms ease;
}

.dictionary-search button:hover,
.dictionary-search button:focus-visible {
  color: var(--blue-dark);
  outline: none;
  transform: translateY(-1px);
}

.dictionary-search>iconify-icon,
.dictionary-search button iconify-icon {
  width: 16px;
  height: 16px;
}

.letter-filter {
  display: flex;
  flex-wrap: nowrap;
  gap: 2px;
  max-width: 100%;
  margin-bottom: 28px;
  overflow-x: auto;
  padding: 0 0 8px;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.letter-filter::-webkit-scrollbar {
  display: none;
}

.letter-filter button {
  flex: 0 0 auto;
  min-width: 30px;
  min-height: 34px;
  padding: 0 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition:
    color 160ms ease,
    box-shadow 160ms ease;
}

.letter-filter button:hover,
.letter-filter button.is-active {
  color: var(--blue);
  box-shadow: inset 0 -2px 0 currentColor;
}

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

.term-card {
  display: block;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.term-card:hover,
.term-card:focus-visible {
  border-color: rgba(18, 63, 140, 0.22);
  box-shadow: 0 18px 42px rgba(17, 24, 39, 0.07);
  outline: none;
  transform: translateY(-2px);
}

.term-card>span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--blue);
  font-weight: 900;
}

.term-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 850;
  line-height: 1.25;
}

.term-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.home-banner {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: clamp(58px, 8vw, 104px) 0;
  background: #ffffff;
}

.home-banner__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  padding: clamp(34px, 5vw, 56px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.home-banner span {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.home-banner h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 850;
  line-height: 1.08;
}

.home-banner p {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.site-footer {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  background: var(--soft);
  border-top: 1px solid var(--line);
  padding: 54px 0 28px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto) minmax(0, 1fr);
  align-items: center;
  gap: 14px 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.footer-top>.footer-logo:first-child {
  justify-self: start;
}

.footer-top>.footer-logo--ssb {
  justify-self: center;
}

.footer-logo img {
  width: auto;
  max-width: 210px;
  height: 58px;
  object-fit: contain;
}

.footer-logo--ssb img {
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: 18px;
  justify-self: end;
  --social-icon-size: 21px;
  --social-image-size: 16px;
  color: var(--ink);
}

.footer-social a,
.hero-social a {
  display: inline-grid;
  place-items: center;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding: 36px 0;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.footer-grid a {
  display: block;
  width: fit-content;
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
}

.footer-link--external {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.35;
}

.footer-grid .footer-link--external {
  display: flex;
  width: fit-content;
}

.footer-link--external iconify-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: currentColor;
  transform: translateY(1px);
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: var(--muted);
  font-size: 13px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--ink);
  font-weight: 850;
}

.footer-project {
  grid-column: 2;
  justify-self: center;
  max-width: 420px;
  margin: 0;
  color: var(--ink-soft);
  font-weight: 820;
  text-align: center;
}

.page-header {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 306px;
  padding: 116px 0 58px;
  background: var(--ink);
  color: #ffffff;
}

.page-header--compact {
  min-height: 238px;
  padding: 104px 0 42px;
}

.page-header__media,
.page-header__media img,
.page-header__shade,
.page-network {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-header__media {
  z-index: -3;
}

.page-header__media img {
  object-fit: cover;
  object-position: center;
}

.page-header__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 13, 28, 0.82), rgba(5, 13, 28, 0.5) 48%, rgba(5, 13, 28, 0.18)),
    linear-gradient(180deg, rgba(5, 13, 28, 0.18), rgba(5, 13, 28, 0.58));
}

.page-header__inner {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: 960px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 760;
  line-height: 1;
}

.breadcrumb a,
.breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb iconify-icon {
  width: 17px;
  height: 17px;
  display: block;
}

.page-header__title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.page-header h1 {
  max-width: 1020px;
  margin: 0;
  font-size: clamp(34px, 4.4vw, 60px);
  font-weight: 880;
  line-height: 1.08;
}

.page-header--compact h1 {
  max-width: 900px;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.14;
}

.page-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding-bottom: 4px;
}

.page-header__actions button {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  transition: border-color 160ms ease, background 160ms ease, opacity 160ms ease;
}

.page-header__actions button:hover,
.page-header__actions button:focus-visible {
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.14);
  outline: none;
}

.page-header__actions button:disabled {
  cursor: default;
  opacity: 0.42;
}

.page-header__actions iconify-icon {
  width: 18px;
  height: 18px;
}

.page-header p {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.65;
}

.page-header__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.page-header__meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 18px;
}

.page-header__meta iconify-icon {
  width: 16px;
  height: 16px;
  color: #ffffff;
}

.corporate-identity {
  padding: 68px 0 118px;
  background: var(--paper);
}

.corporate-identity__intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.corporate-identity__intro>div {
  max-width: 760px;
}

.corporate-identity__kicker {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.corporate-identity h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 3.6vw, 50px);
  font-weight: 900;
  line-height: 1.08;
}

.corporate-identity__intro p,
.corporate-identity__copy {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.corporate-identity__copy p {
  margin: 0;
}

.corporate-identity__copy p+p {
  margin-top: 10px;
}

.corporate-identity__layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
  gap: 56px;
  margin-top: 34px;
}

.corporate-identity__content {
  min-width: 0;
}

.corporate-identity__layout .brand-matrix {
  margin-top: 0;
}

.brand-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: #ffffff;
  font-size: 14px;
  font-weight: 880;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.brand-download:hover,
.brand-download:focus-visible {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  color: #ffffff;
  outline: none;
  transform: translateY(-1px);
}

.brand-download iconify-icon {
  width: 18px;
  height: 18px;
}

.brand-matrix {
  display: grid;
  grid-template-columns: minmax(140px, 0.68fr) repeat(3, minmax(0, 1fr));
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}

.brand-matrix__row {
  display: contents;
}

.brand-matrix__corner,
.brand-matrix__head,
.brand-matrix__row-label,
.brand-matrix__cell {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-matrix__corner,
.brand-matrix__head {
  min-height: 62px;
  background: var(--soft);
}

.brand-matrix__head {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.brand-matrix__row-label {
  display: flex;
  align-items: center;
  padding: 22px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  background: linear-gradient(90deg, var(--paper), var(--soft));
}

.brand-matrix__cell {
  min-width: 0;
  padding: 16px;
}

.brand-matrix__row> :last-child {
  border-right: 0;
}

.brand-matrix__row:last-child>* {
  border-bottom: 0;
}

.brand-matrix__mobile-label {
  display: none;
}

.brand-logo-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  overflow: hidden;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.brand-logo-card:hover,
.brand-logo-card:focus-visible {
  border-color: var(--blue);
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(17, 24, 39, 0.08);
}

.brand-logo-card--dark {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    #071426;
  color: #ffffff;
}

.brand-logo-card.is-empty {
  border-style: dashed;
  background: var(--soft);
}

.brand-logo-card img {
  display: block;
  width: auto;
  max-width: min(100%, 260px);
  max-height: 118px;
  object-fit: contain;
}

.brand-logo-card__caption {
  position: absolute;
  inset: auto 12px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(148, 163, 184, 0.24);
  color: inherit;
  font-size: 11px;
  line-height: 1.2;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.brand-logo-card:hover .brand-logo-card__caption,
.brand-logo-card:focus-visible .brand-logo-card__caption {
  opacity: 1;
  transform: translateY(0);
}

.brand-logo-card__caption strong {
  font-weight: 880;
}

.brand-logo-card__caption span {
  color: var(--blue);
  font-weight: 850;
}

.brand-logo-card--dark .brand-logo-card__caption span {
  color: #b8d8ff;
}

.brand-logo-card__missing {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.archive-section {
  padding: 70px 0 110px;
}

.archive-filter {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.archive-filter__search {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  color: var(--muted);
}

.archive-filter__search input {
  width: 100%;
  min-width: 0;
  min-height: 48px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.archive-filter__search iconify-icon {
  width: 18px;
  height: 18px;
}

.archive-filter__clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 0 20px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
}

.archive-filter__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--blue);
  line-height: 0;
  transition: color 160ms ease, transform 160ms ease;
}

.archive-filter__submit iconify-icon {
  width: 18px;
  height: 18px;
}

.archive-filter__clear:hover,
.archive-filter__submit:hover {
  color: var(--blue-dark);
  transform: translateY(-1px);
}

.archive-filter__submit:hover,
.archive-filter__submit:focus-visible {
  outline: none;
}

.archive-dictionary-filter {
  margin: -10px 0 28px;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--line);
}

.archive-dictionary-filter .letter-filter {
  margin-bottom: 0;
}

.archive-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}

.archive-toolbar__meta {
  display: grid;
  gap: 3px;
}

.archive-count {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.archive-range {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.archive-page-size {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.archive-page-size select {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 0 32px 0 12px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.search-page-section {
  padding: 58px 0 20px;
}

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

.archive-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 32px;
  color: var(--muted);
}

.archive-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  gap: 4px;
  margin: clamp(30px, 4vw, 48px) auto 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 4px;
  box-shadow: 0 14px 34px rgba(17, 24, 39, 0.055);
}

.archive-page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2px;
  min-height: 40px;
}

.archive-page-number,
.archive-page-ellipsis,
.archive-page-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  border-radius: calc(var(--radius) - 2px);
  font-size: 13px;
  font-weight: 850;
  line-height: 1;
}

.archive-page-number,
.archive-page-ellipsis {
  min-width: 38px;
}

.archive-page-arrow {
  width: 40px;
  min-width: 40px;
  color: var(--blue);
  line-height: 0;
}

.archive-page-arrow,
.archive-page-number {
  border: 1px solid transparent;
  background: transparent;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.archive-page-arrow:hover,
.archive-page-arrow:focus-visible,
.archive-page-number:hover,
.archive-page-number:focus-visible {
  border-color: rgba(18, 63, 140, 0.16);
  background: rgba(18, 63, 140, 0.07);
  color: var(--blue);
  outline: none;
}

.archive-page-number[aria-current="page"] {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

.archive-page-arrow[aria-disabled="true"] {
  pointer-events: none;
  color: rgba(102, 112, 133, 0.48);
}

.archive-page-arrow iconify-icon {
  width: 18px;
  height: 18px;
}

.content-card--type-yz-terimleri-sozlugu.content-card--archive>a {
  min-height: 250px;
}

.content-card--type-yz-terimleri-sozlugu .content-card__text {
  -webkit-line-clamp: 4;
  line-clamp: 4;
}

.archive-page-ellipsis {
  color: var(--muted);
}

.page-search {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: min(720px, 100%);
  min-height: 48px;
  margin-top: 34px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  box-shadow: none;
}

.page-search input {
  min-width: 0;
  min-height: 48px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}

.page-search button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  min-height: 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: var(--blue);
  line-height: 0;
  transition: color 160ms ease, transform 160ms ease;
}

.page-search button:hover,
.page-search button:focus-visible {
  color: var(--blue-dark);
  outline: none;
  transform: translateY(-1px);
}

.page-search>iconify-icon,
.page-search button iconify-icon {
  width: 16px;
  height: 16px;
}

.detail-cover {
  margin-top: 30px;
}

.detail-cover img {
  width: 100%;
  height: auto;
  max-height: none;
  border-radius: var(--radius);
  object-fit: contain;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 860px) 320px;
  align-items: start;
  gap: 64px;
  padding: 56px 0 110px;
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 22px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 780;
  line-height: 1.2;
}

.detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 18px;
  line-height: 1.2;
}

.detail-meta iconify-icon {
  width: 16px;
  height: 16px;
  color: var(--blue);
}

.detail-content {
  max-width: 860px;
  color: var(--ink-soft);
  font-size: calc(17px * var(--detail-text-scale, 1));
  line-height: 1.82;
  text-align: justify;
  text-justify: inter-word;
}

.detail-content p,
.detail-content li {
  text-align: justify;
}

.detail-content :where(p, li, span) {
  font-family: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
}

.detail-content :where(p, ul, ol, blockquote) {
  margin-top: 0;
  margin-bottom: 1.15em;
}

.detail-content :where(ul, ol) {
  padding-left: 1.35em;
}

.detail-content li+li {
  margin-top: 0.45em;
}

.detail-content a {
  color: var(--blue);
  font-weight: 820;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.detail-content a:hover,
.detail-content a:focus-visible {
  color: var(--blue-dark);
  outline: none;
}

.detail-content table {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 28px 0;
  overflow-x: auto;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: calc(15px * var(--detail-text-scale, 1));
  line-height: 1.55;
  text-align: left;
}

.detail-content :where(th, td) {
  border: 1px solid var(--line);
  padding: 12px 14px;
  vertical-align: top;
}

.detail-content th {
  background: var(--soft);
  color: var(--ink);
  font-weight: 850;
}

.detail-content blockquote {
  border-left: 3px solid var(--blue);
  padding-left: 18px;
  color: var(--ink);
  font-weight: 720;
  text-align: left;
}

.detail-content :where(h2, h3, h4, h5, h6) {
  margin: 1.55em 0 0.65em;
  color: var(--ink);
  font-weight: 880;
  line-height: 1.22;
  text-align: left;
}

.detail-content h2 {
  font-size: calc(27px * var(--detail-text-scale, 1));
}

.detail-content h3 {
  font-size: calc(22px * var(--detail-text-scale, 1));
}

.detail-content h4 {
  font-size: calc(20px * var(--detail-text-scale, 1));
}

.detail-content h5,
.detail-content h6 {
  font-size: calc(18px * var(--detail-text-scale, 1));
  line-height: 1.45;
}

.detail-content h6 a {
  display: inline-block;
  margin-top: 3px;
  overflow-wrap: anywhere;
}

.detail-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.detail-sidebar {
  position: sticky;
  top: 112px;
  border-left: 1px solid var(--line);
  padding-left: 28px;
}

.detail-sidebar h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 900;
}

.detail-sidebar__list {
  display: grid;
  gap: 0;
}

.detail-sidebar__list a {
  display: grid;
  gap: 8px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.detail-sidebar__list a:hover strong {
  color: var(--blue);
}

.detail-sidebar__list strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.detail-sidebar__list span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.corporate-side-menu {
  position: sticky;
  top: 112px;
  align-self: start;
}

.corporate-side-menu__inner {
  border-right: 1px solid rgba(18, 63, 140, 0.1);
  padding: 0 26px 0 0;
}

.corporate-side-menu__eyebrow {
  display: block;
  margin-bottom: 16px;
  padding: 0 0 17px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.corporate-side-menu__nav {
  display: grid;
  gap: 2px;
}

.corporate-side-menu__link {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 680;
  line-height: 1.25;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.corporate-side-menu__link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  border-radius: 999px;
  background: transparent;
  transform: scaleY(0.45);
  opacity: 0;
  transition: background 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.corporate-side-menu__link iconify-icon {
  display: none;
}

.corporate-side-menu__link:hover,
.corporate-side-menu__link:focus-visible {
  background: var(--soft-2);
  color: var(--ink);
  outline: none;
  transform: none;
}

.corporate-side-menu__link:hover::before,
.corporate-side-menu__link:focus-visible::before {
  background: var(--blue);
  opacity: 0.54;
  transform: scaleY(0.88);
}

.corporate-side-menu__link.is-active {
  border-color: transparent;
  background: rgba(11, 126, 163, 0.1);
  color: var(--blue-dark);
  font-weight: 880;
}

.corporate-side-menu__link.is-active::before {
  background: var(--cyan);
  opacity: 1;
  transform: scaleY(1);
}

.detail-layout--with-menu {
  grid-template-columns: 280px minmax(0, 860px);
  justify-content: start;
  gap: 56px;
}

.contact-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
  gap: 56px;
  padding: 58px 0 112px;
}

.contact-main {
  min-width: 0;
}

.contact-overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: start;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.contact-overview__copy {
  display: block;
  max-width: 680px;
}

.contact-overview__copy span,
.contact-form__head span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-overview__copy h2 {
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  line-height: 1.16;
}

.contact-overview__copy p {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.65;
}

.contact-channel-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 12px;
  border-top: 0;
}

.contact-channel {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 92px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.contact-channel:hover strong,
.contact-channel:focus-visible strong {
  color: var(--blue);
}

.contact-channel:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--blue) 34%, transparent);
  outline-offset: 5px;
}

.contact-channel__icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--blue);
}

.contact-channel__icon iconify-icon {
  width: 17px;
  height: 17px;
}

.contact-channel__body {
  display: grid;
  gap: 5px;
}

.contact-channel small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.contact-channel strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.4;
  transition: color 160ms ease;
}

.contact-channel--phone strong {
  white-space: nowrap;
}

.contact-channel--email strong {
  overflow-wrap: anywhere;
}

.contact-social {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  --social-icon-size: 18px;
  --social-image-size: 15px;
  color: var(--ink);
}

.contact-social a {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: currentColor;
  opacity: 0.9;
  transition: color 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.contact-social a:hover,
.contact-social a:focus-visible {
  color: var(--blue);
  opacity: 1;
  outline: none;
  transform: translateY(-1px);
}

.contact-social iconify-icon,
.contact-social svg,
.contact-social .social-icon {
  width: var(--social-icon-size, 18px);
  height: var(--social-icon-size, 18px);
}

.contact-workspace {
  padding-top: 42px;
}

.contact-workspace__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--paper);
  box-shadow: none;
}

.contact-form__head {
  max-width: 620px;
  margin-bottom: 4px;
}

.contact-form__head h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.12;
}

.contact-form__head p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

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

.contact-field {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.contact-field span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.2;
}

.contact-field b {
  margin-left: 2px;
  color: var(--blue);
  font-weight: 900;
}

.contact-field input,
.contact-field textarea {
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-field input {
  min-height: 46px;
  padding: 0;
}

.contact-field textarea {
  min-height: 150px;
  max-height: 260px;
  resize: vertical;
  padding: 10px 0;
  line-height: 1.6;
}

.contact-field__counter,
.contact-field__help {
  justify-self: end;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
  line-height: 1.2;
}

.contact-field__help {
  justify-self: start;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: var(--blue);
  box-shadow: none;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: fit-content;
  min-width: 190px;
  min-height: 44px;
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  background: var(--blue);
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.contact-submit iconify-icon {
  width: 17px;
  height: 17px;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  outline: none;
  transform: translateY(-1px);
}

.contact-submit[disabled] {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.contact-form__message {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 760;
}

.contact-form__message.is-success {
  border-color: rgba(18, 130, 88, 0.28);
  background: rgba(18, 130, 88, 0.08);
  color: #127a54;
}

.contact-form__message.is-error {
  border-color: rgba(191, 58, 42, 0.28);
  background: rgba(191, 58, 42, 0.08);
  color: #a83d30;
}

.site-toast-region {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 12000;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 32px));
  pointer-events: none;
}

.site-toast {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 18px 45px rgba(18, 31, 58, 0.16);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: auto;
}

.site-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-toast iconify-icon {
  width: 20px;
  height: 20px;
  margin-top: 1px;
}

.site-toast--success {
  border-color: rgba(18, 130, 88, 0.24);
}

.site-toast--success iconify-icon {
  color: #127a54;
}

.site-toast--error {
  border-color: rgba(191, 58, 42, 0.24);
}

.site-toast--error iconify-icon {
  color: #a83d30;
}

.contact-location {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 20px;
  border-left: 1px solid var(--line);
  padding-left: clamp(22px, 3vw, 34px);
}

.contact-location__head {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
}

.contact-location__icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--blue);
}

.contact-location__icon iconify-icon {
  width: 18px;
  height: 18px;
}

.contact-location h2 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 900;
}

.contact-location p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.6;
}

.contact-map {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.92);
}

.detail-media-block {
  padding: 0 0 88px;
}

.detail-media-block--inline {
  margin-top: 38px;
  padding: 32px 0 0;
  border-top: 1px solid var(--line);
}

.detail-media-block h2 {
  margin: 0 0 22px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 900;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 180px));
  justify-content: start;
  gap: 14px;
}

.detail-gallery__item {
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  width: 100%;
  max-width: 180px;
  border: 0;
  border-radius: var(--radius);
  background: var(--soft);
  padding: 0;
  line-height: 0;
}

.detail-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.detail-gallery__item:hover img {
  transform: scale(1.035);
}

.detail-gallery__item.is-active {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

.gallery-dialog {
  width: 100vw;
  max-width: none;
  height: 100dvh;
  max-height: none;
  margin: 0;
  border: 0;
  background: transparent;
  color: #ffffff;
  padding: 0;
}

.gallery-dialog:not([open]) {
  display: none;
}

.gallery-dialog::backdrop {
  background: rgba(4, 8, 18, 0.94);
}

.gallery-dialog__panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100dvh;
  padding: clamp(52px, 6vw, 76px) clamp(16px, 5vw, 64px);
  overflow: hidden;
  background: #050913;
}

.gallery-dialog__media {
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  place-items: center;
  padding: 0;
}

.gallery-dialog__media img {
  width: auto;
  height: auto;
  max-width: 82vw;
  max-height: 82dvh;
  object-fit: contain;
  object-position: center;
}

.gallery-dialog__bar {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 20px;
  left: clamp(18px, 5vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
}

.gallery-dialog__caption {
  margin: 0;
  font-size: 14px;
  font-weight: 760;
}

.gallery-dialog__counter {
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 850;
}

.gallery-dialog__close,
.gallery-dialog__arrow {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #ffffff;
  line-height: 1;
  opacity: 0.86;
  transition: opacity 160ms ease, transform 160ms ease;
}

.gallery-dialog__close:hover,
.gallery-dialog__close:focus-visible,
.gallery-dialog__arrow:hover,
.gallery-dialog__arrow:focus-visible {
  opacity: 1;
  outline: none;
}

.gallery-dialog__close {
  top: 18px;
  right: 22px;
  width: 48px;
  height: 48px;
  font-size: 34px;
  font-weight: 300;
}

.gallery-dialog__arrow {
  top: 50%;
  width: 68px;
  height: 84px;
  font-size: clamp(46px, 6vw, 76px);
  font-weight: 200;
  transform: translateY(-50%);
}

.gallery-dialog__arrow:hover,
.gallery-dialog__arrow:focus-visible {
  transform: translateY(-50%) scale(1.04);
}

.gallery-dialog__arrow--prev {
  left: 18px;
}

.gallery-dialog__arrow--next {
  right: 18px;
}

.detail-media-block--files {
  padding-bottom: 0;
}

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

.detail-file {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.detail-file:hover {
  border-color: rgba(14, 58, 58, 0.36);
  box-shadow: 0 14px 30px rgba(17, 24, 39, 0.08);
  transform: translateY(-1px);
}

.detail-file__icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--soft);
  color: var(--blue);
}

.detail-file__icon iconify-icon {
  width: 19px;
  height: 19px;
}

.detail-file__body {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.detail-file__body strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-file__body small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.detail-back-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 34px;
  border-bottom: 1px solid currentColor;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.detail-back-link:hover {
  color: var(--blue);
}

.text-link {
  color: var(--blue);
  font-weight: 850;
}

.empty-state {
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  background: #ffffff;
  padding: 30px;
  color: var(--muted);
}

.not-found {
  min-height: 70vh;
  padding: 180px 0 90px;
  display: grid;
  align-items: center;
  background: #ffffff;
}

.not-found span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.not-found h1 {
  margin: 10px 0;
  font-size: clamp(38px, 5vw, 70px);
}

.not-found p {
  max-width: 520px;
  color: var(--muted);
}

.search-dialog,
.mobile-panel {
  position: fixed;
  z-index: 200;
  inset: 0;
}

.search-dialog[hidden],
.mobile-panel[hidden] {
  display: none;
}

.search-dialog__backdrop,
.mobile-panel__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 24, 39, 0.46);
}

.search-dialog__panel {
  position: relative;
  width: min(760px, calc(100% - 36px));
  margin: 110px auto 0;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.search-dialog__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 26px;
  border-bottom: 1px solid var(--line);
}

.search-dialog__top h2 {
  margin: 0;
  font-size: 22px;
}

.search-form {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  margin: 18px 26px 0;
  padding: 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--muted);
}

.search-form input {
  min-width: 0;
  min-height: 48px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 18px;
}

.search-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  min-height: 34px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: var(--blue);
  line-height: 0;
  transition: color 160ms ease, transform 160ms ease;
}

.search-form button:hover,
.search-form button:focus-visible {
  color: var(--blue-dark);
  outline: none;
  transform: translateY(-1px);
}

.search-form>iconify-icon,
.search-form button iconify-icon {
  width: 16px;
  height: 16px;
}

.search-dialog__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 14px 26px 26px;
}

.search-dialog__links a {
  position: relative;
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease;
}

.search-dialog__links a:hover,
.search-dialog__links a:focus-visible {
  color: var(--blue);
  text-decoration-color: currentColor;
}

.search-dialog__links a:focus-visible {
  outline: 2px solid color-mix(in srgb, var(--blue) 36%, transparent);
  outline-offset: 5px;
}

.mobile-panel__sheet {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100vw;
  height: 100%;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  background: #ffffff;
  color: var(--ink);
  -webkit-overflow-scrolling: touch;
}

.mobile-panel__top {
  flex: 0 0 auto;
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  padding: max(16px, env(safe-area-inset-top)) max(24px, env(safe-area-inset-right)) 16px max(24px, env(safe-area-inset-left));
  border-bottom: 1px solid var(--line);
  background: #ffffff;
}

.mobile-panel__top .brand-mark {
  height: 44px;
}

.mobile-panel__nav {
  flex: 0 0 auto;
  display: grid;
  align-content: start;
  gap: 0;
  min-height: auto;
  overflow: visible;
  padding: 20px max(24px, env(safe-area-inset-right)) 8px max(24px, env(safe-area-inset-left));
  background: #ffffff;
}

.mobile-panel__section {
  display: grid;
  overflow: hidden;
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

.mobile-panel__section:first-child {
  padding-top: 0;
}

.mobile-panel__section-label {
  display: flex;
  align-items: center;
  min-height: auto;
  padding: 0 0 7px;
  border-bottom: 0;
  background: transparent;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.mobile-panel__section--compact {
  box-shadow: none;
}

.mobile-panel__nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
  min-height: 40px;
  padding: 8px 0;
  border-bottom: 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.mobile-panel__nav a:last-child {
  border-bottom: 0;
}

.mobile-panel__nav a:hover,
.mobile-panel__nav a:focus-visible {
  color: var(--blue);
  outline: none;
}

.mobile-panel__nav a span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.mobile-panel__nav a iconify-icon {
  width: 18px;
  height: 18px;
  color: var(--muted);
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.mobile-panel__nav a:hover iconify-icon,
.mobile-panel__nav a:focus-visible iconify-icon {
  color: var(--blue);
  transform: translateY(-1px);
}

.mobile-panel__tools {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 2px max(24px, env(safe-area-inset-right)) 12px max(24px, env(safe-area-inset-left));
  border-top: 0;
  background: #ffffff;
}

.mobile-panel__tool {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 9px;
  min-width: 0;
  min-height: 42px;
  padding: 8px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
  text-align: left;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.mobile-panel__tool:hover,
.mobile-panel__tool:focus-visible {
  color: var(--blue);
  outline: none;
}

.mobile-panel__tool iconify-icon {
  width: 18px;
  height: 18px;
}

.mobile-panel__tool--lang {
  padding: 8px 0;
  color: var(--blue);
  font-weight: 900;
}

.mobile-panel__auth {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 max(24px, env(safe-area-inset-right)) max(18px, env(safe-area-inset-bottom)) max(24px, env(safe-area-inset-left));
  background: #ffffff;
}

.mobile-panel__auth a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.mobile-panel__auth a:last-child {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

.mobile-panel__auth a:hover,
.mobile-panel__auth a:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
  outline: none;
}

.mobile-panel__auth a:last-child:hover,
.mobile-panel__auth a:last-child:focus-visible {
  background: var(--blue-dark);
  color: #ffffff;
}

html[data-color-mode="dark"] .site-header.is-scrolled,
html[data-color-mode="dark"] .site-header:not(.site-header--home),
html[data-color-mode="dark"] .site-nav__mega,
html[data-color-mode="dark"] .section-selector__item em,
html[data-color-mode="dark"] .home-section:not(.home-section--soft),
html[data-color-mode="dark"] .home-banner,
html[data-color-mode="dark"] .section-controls button,
html[data-color-mode="dark"] .content-card--article>a,
html[data-color-mode="dark"] .content-card--text>a,
html[data-color-mode="dark"] .letter-filter button,
html[data-color-mode="dark"] .term-card,
html[data-color-mode="dark"] .archive-filter__clear,
html[data-color-mode="dark"] .archive-page-size select,
html[data-color-mode="dark"] .archive-pagination,
html[data-color-mode="dark"] .brand-matrix,
html[data-color-mode="dark"] .brand-logo-card,
html[data-color-mode="dark"] .detail-file,
html[data-color-mode="dark"] .empty-state,
html[data-color-mode="dark"] .not-found,
html[data-color-mode="dark"] .search-dialog__panel,
html[data-color-mode="dark"] .mobile-panel__sheet,
html[data-color-mode="dark"] .mobile-panel__top,
html[data-color-mode="dark"] .mobile-panel__tools,
html[data-color-mode="dark"] .mobile-panel__auth,
html[data-color-mode="dark"] .mobile-panel__section,
html[data-color-mode="dark"] .mobile-panel__tool,
html[data-color-mode="dark"] .mobile-panel__auth a {
  border-color: var(--line);
  background: var(--paper);
  color: var(--ink);
}

html[data-color-mode="dark"] .site-header.is-scrolled,
html[data-color-mode="dark"] .site-header:not(.site-header--home) {
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32);
}

html[data-color-mode="dark"] .brand-mark,
html[data-color-mode="dark"] .footer-logo:not(.footer-logo--ssb) img {
  filter: brightness(0) invert(1);
}

html[data-color-mode="dark"] .site-header--home:not(.is-scrolled) .brand-mark {
  filter: brightness(0) invert(1);
}

html[data-color-mode="dark"] .section-selector__item em::after {
  border-color: var(--line);
  background: var(--paper);
}

html[data-color-mode="dark"] .home-section--soft,
html[data-color-mode="dark"] .site-footer,
html[data-color-mode="dark"] .content-card__media,
html[data-color-mode="dark"] .content-card__placeholder,
html[data-color-mode="dark"] .term-card>span,
html[data-color-mode="dark"] .contact-channel__icon,
html[data-color-mode="dark"] .contact-location__icon,
html[data-color-mode="dark"] .contact-map,
html[data-color-mode="dark"] .brand-matrix__corner,
html[data-color-mode="dark"] .brand-matrix__head,
html[data-color-mode="dark"] .brand-logo-card.is-empty,
html[data-color-mode="dark"] .detail-gallery__item,
html[data-color-mode="dark"] .detail-file__icon,
html[data-color-mode="dark"] .mobile-panel__tool:hover,
html[data-color-mode="dark"] .mobile-panel__tool:focus-visible {
  background: var(--soft);
}

html[data-color-mode="dark"] .corporate-side-menu__link:hover,
html[data-color-mode="dark"] .corporate-side-menu__link:focus-visible {
  background: var(--soft);
}

html[data-color-mode="dark"] .corporate-side-menu__link:hover::before,
html[data-color-mode="dark"] .corporate-side-menu__link:focus-visible::before {
  background: var(--blue);
  opacity: 0.7;
}

html[data-color-mode="dark"] .corporate-side-menu__link.is-active {
  border-color: transparent;
  background: rgba(103, 215, 247, 0.14);
  color: var(--blue);
}

html[data-color-mode="dark"] .brand-matrix__row-label {
  background: linear-gradient(90deg, var(--paper), var(--soft));
}

html[data-color-mode="dark"] .brand-logo-card:not(.brand-logo-card--dark) img {
  filter: none;
}

html[data-color-mode="dark"] .button--primary,
html[data-color-mode="dark"] .header-auth--register,
html[data-color-mode="dark"] .letter-filter button.is-active,
html[data-color-mode="dark"] .archive-page-number[aria-current="page"],
html[data-color-mode="dark"] .mobile-panel__auth a:last-child {
  border-color: #1d5fbf;
  background: #1d5fbf;
  color: #ffffff;
}

html[data-color-mode="dark"] .button--primary:hover,
html[data-color-mode="dark"] .header-auth--register:hover,
html[data-color-mode="dark"] .mobile-panel__auth a:last-child:hover {
  border-color: #2c74de;
  background: #2c74de;
}

html[data-color-mode="dark"] .archive-filter__submit {
  background: transparent;
  color: var(--blue);
}

html[data-color-mode="dark"] .contact-field input,
html[data-color-mode="dark"] .contact-field textarea {
  border-color: var(--line-strong);
  background: var(--soft);
}

html[data-color-mode="dark"] .contact-form__message.is-success {
  color: #71e6b4;
}

html[data-color-mode="dark"] .contact-form__message.is-error {
  color: #ffad9e;
}

html[data-color-mode="dark"] .site-toast {
  border-color: var(--line);
  background: var(--paper);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
}

html[data-color-mode="dark"] input,
html[data-color-mode="dark"] select,
html[data-color-mode="dark"] textarea {
  color: var(--ink);
}

html[data-color-mode="dark"] input::placeholder,
html[data-color-mode="dark"] textarea::placeholder {
  color: var(--muted);
}

#dyno-popup-root,
.dyno-popup-root {
  font-family: var(--font-body);
}

.dyno-popup-shell {
  border-radius: 8px;
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(17, 24, 39, 0.24);
}

.dyno-popup-modal.dyno-popup-large {
  width: min(94vw, 840px);
}

.dyno-popup-close {
  color: var(--ink);
}

.dyno-popup-primary,
.dyno-popup-secondary {
  min-height: 42px;
  border-radius: 6px;
  font-weight: 850;
}

.dyno-popup-primary {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
}

.dyno-popup-primary:hover,
.dyno-popup-primary:focus-visible {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  color: #ffffff;
}

.dyno-popup-secondary {
  border-color: var(--line);
  color: var(--ink);
}

.dyno-popup-secondary:hover,
.dyno-popup-secondary:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}

.dyno-popup-field input,
.dyno-popup-field textarea,
.dyno-popup-field select {
  border-color: var(--line);
  border-radius: 6px;
  color: var(--ink);
}

.dyno-popup-field input:focus,
.dyno-popup-field textarea:focus,
.dyno-popup-field select:focus {
  border-color: var(--blue);
  outline: none;
}

#accessibility-widget,
.accessibility-widget,
[data-accessibility-widget],
[data-a11y-widget],
#a11y-trigger,
#a11y-panel {
  z-index: 2147483000 !important;
}

html body #a11y-trigger {
  min-width: 44px !important;
  min-height: 44px !important;
  box-sizing: border-box !important;
  touch-action: manipulation;
}

#cookie-banner,
#cookie-settings-modal {
  z-index: 2147482000 !important;
}

.section-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  html.is-home,
  body.is-home {
    scroll-snap-type: none;
    overscroll-behavior-y: auto;
  }

  .section-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .content-card__media img,
  .hero-network,
  .page-network,
  .button,
  .site-header,
  .site-nav__link,
  .site-nav__summary,
  .site-header__actions>* {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-network,
  .page-network {
    display: none;
  }
}

@media (max-width: 1180px) {
  .site-nav {
    display: none;
  }

  .header-auth {
    display: none;
  }

  .site-header__menu-button {
    display: inline-flex;
  }

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

  .brand-matrix {
    grid-template-columns: minmax(120px, 0.58fr) repeat(3, minmax(0, 1fr));
  }

  .brand-logo-card {
    min-height: 170px;
    padding: 22px;
  }

  .brand-logo-card img {
    max-width: min(100%, 210px);
    max-height: 104px;
  }

  .contact-workspace__grid {
    grid-template-columns: 1fr;
  }

  .contact-location {
    position: static;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 30px 0 0;
  }

  .contact-map {
    min-height: 360px;
  }
}

@media (max-width: 1023px) {

  html.is-home,
  body.is-home,
  html.is-home.is-macos,
  html.is-macos body.is-home,
  html.is-home.is-windows,
  html.is-windows body.is-home {
    scroll-snap-type: none;
    scroll-behavior: auto;
    overscroll-behavior-y: auto;
  }

  html.is-home .hero,
  html.is-home .home-section,
  html.is-home .home-banner,
  html.is-home .site-footer,
  body.is-home .hero,
  body.is-home .home-section,
  body.is-home .home-banner,
  body.is-home .site-footer {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }
}

@media (max-width: 900px) {

  .container,
  .site-header__inner {
    width: min(100% - 32px, var(--container));
  }

  .site-header__inner {
    gap: 16px;
  }

  .site-header__actions {
    gap: 10px;
  }

  .section-selector {
    display: none;
  }

  .corporate-identity {
    padding: 48px 0 86px;
  }

  .corporate-identity__intro {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    padding-bottom: 24px;
  }

  .corporate-identity__layout {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
  }

  .corporate-identity__layout .corporate-side-menu {
    order: -1;
  }

  .brand-download {
    width: 100%;
  }

  .brand-matrix {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
  }

  .brand-matrix__corner,
  .brand-matrix__head,
  .brand-matrix__row-label {
    display: none;
  }

  .brand-matrix__cell {
    padding: 0;
    border: 0;
  }

  .brand-matrix__mobile-label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 860;
  }

  .brand-logo-card {
    flex-direction: column;
    min-height: 164px;
  }

  .brand-logo-card__caption {
    position: static;
    width: 100%;
    margin-top: 18px;
    opacity: 1;
    transform: none;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 0 86px;
  }

  .contact-shell .corporate-side-menu {
    order: -1;
  }

  .contact-overview,
  .contact-workspace__grid {
    grid-template-columns: 1fr;
  }

  .contact-overview__copy {
    max-width: none;
  }

  .contact-channel-list {
    grid-template-columns: 1fr;
    gap: 10px;
    border-top: 0;
  }

  .contact-channel,
  .contact-channel:first-child,
  .contact-channel:last-child {
    min-height: 0;
    padding: 16px;
    border: 1px solid var(--line);
  }

  .contact-channel:last-child {
    border-bottom: 1px solid var(--line);
  }

  .contact-location {
    position: static;
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 28px 0 0;
  }

  .contact-map {
    min-height: 380px;
  }

  .hero-social {
    top: 86px;
    right: auto;
    bottom: auto;
    left: 50%;
    display: flex;
    justify-content: center;
    width: min(280px, calc(100% - 32px));
    transform: translateX(-50%);
  }

  .section-frame {
    grid-template-columns: 1fr;
  }

  .section-side {
    display: none;
  }

  .section-all-link {
    display: inline-flex;
  }

  .section-head {
    align-items: flex-end;
  }

  .card-row,
  .article-row {
    gap: 20px;
    margin-right: -16px;
    padding-right: 16px;
    scroll-padding-left: 0;
  }

  .term-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .page-header {
    min-height: 270px;
    padding: 104px 0 44px;
  }

  .page-header--compact {
    min-height: 218px;
    padding: 96px 0 36px;
  }

  .detail-layout {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px 0 84px;
  }

  .detail-layout--with-menu {
    gap: 28px;
  }

  .detail-layout--with-menu .corporate-side-menu {
    order: -1;
  }

  .detail-gallery,
  .detail-files {
    grid-template-columns: 1fr;
  }

  .detail-media-block--inline .detail-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-sidebar {
    position: static;
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 28px 0 0;
  }

  .corporate-side-menu {
    position: static;
    width: 100%;
  }

  .corporate-side-menu__inner {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    background: var(--paper);
  }

  .corporate-side-menu__nav {
    grid-template-columns: 1fr;
  }

  .home-banner__inner,
  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-top {
    justify-items: start;
  }

  .footer-top>.footer-logo--ssb,
  .footer-social,
  .footer-project {
    justify-self: start;
  }

  .footer-project {
    grid-column: auto;
    text-align: left;
  }

  .home-banner__inner {
    padding: 32px 0;
  }

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

@media (max-width: 640px) {
  .site-toast-region {
    top: 14px;
    right: auto;
    left: 50%;
    width: min(360px, calc(100vw - 24px));
    transform: translateX(-50%);
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand-mark {
    height: 42px;
  }

  .site-header__actions {
    gap: 6px;
  }

  .header-action {
    width: 38px;
    height: 38px;
  }

  .header-action iconify-icon {
    width: 20px;
    height: 20px;
    font-size: 20px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 66px);
    line-height: 0.94;
  }

  .hero p {
    max-width: 330px;
    margin-top: 18px;
    font-size: 17px;
    line-height: 1.42;
  }

  .hero {
    min-height: 100svh;
    max-height: none;
  }

  .hero__bg {
    object-position: 58% center;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(5, 13, 28, 0.82), rgba(5, 13, 28, 0.44) 62%, rgba(5, 13, 28, 0.18)),
      linear-gradient(180deg, rgba(5, 13, 28, 0.42), rgba(5, 13, 28, 0.44));
  }

  .hero__inner {
    min-height: 100svh;
    align-items: center;
    padding-top: 72px;
    padding-bottom: 86px;
  }

  .hero__content {
    padding: 48px 0 34px;
  }

  .hero-social {
    top: 82px;
    left: 50%;
    bottom: auto;
    gap: 16px;
    transform: translateX(-50%);
  }

  .hero-scroll {
    bottom: 24px;
  }

  .section-controls {
    display: none;
  }

  .hero__actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: min(320px, 100%);
    gap: 10px;
    margin-top: 26px;
  }

  .hero__actions .button {
    width: 100%;
    min-height: 44px;
  }

  .page-header__title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .page-header__actions {
    padding-bottom: 0;
  }

  .contact-shell {
    padding-bottom: 72px;
  }

  .contact-overview {
    gap: 28px;
    padding-bottom: 34px;
  }

  .contact-overview__copy h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .contact-workspace {
    padding-top: 34px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-field textarea {
    min-height: 132px;
    max-height: 220px;
  }

  .home-section {
    padding: 58px 0;
  }

  .section-head,
  .section-head--stack {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px 18px;
    margin-bottom: 26px;
  }

  .section-head__actions {
    width: auto;
    justify-content: flex-end;
    margin-left: auto;
  }

  .section-head h2 {
    min-width: 0;
    flex: 1 1 auto;
  }

  .section-head--stack .dictionary-search {
    order: 3;
    flex: 1 0 100%;
  }

  .archive-filter {
    grid-template-columns: 1fr;
  }

  .archive-filter__clear {
    width: 100%;
  }

  .archive-filter__submit {
    flex-basis: 34px;
    width: 34px;
    height: 34px;
    min-height: 34px;
  }

  .page-search,
  .search-form {
    grid-template-columns: auto minmax(0, 1fr) auto;
  }

  .archive-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head h2 {
    font-size: clamp(30px, 10vw, 38px);
    line-height: 1.08;
  }

  .card-row,
  .article-row {
    gap: 16px;
    margin: 0 -16px;
    padding: 2px 16px 18px;
    scroll-padding-left: 16px;
  }

  .content-card,
  .content-card--article {
    flex-basis: calc(100vw - 46px);
  }

  .content-card__body {
    padding-top: 18px;
  }

  .content-card--article>a,
  .content-card--text>a {
    min-height: 286px;
    padding: 22px;
  }

  .content-card__title {
    font-size: 19px;
  }

  .content-card--article .content-card__title {
    font-size: 20px;
  }

  .dictionary-search {
    width: 100%;
  }

  .letter-filter {
    flex-wrap: nowrap;
    gap: 4px;
    margin: 0 0 22px;
    overflow-x: auto;
    padding: 0 0 8px;
    scrollbar-width: none;
  }

  .letter-filter::-webkit-scrollbar {
    display: none;
  }

  .term-card {
    min-height: 0;
    padding: 22px;
  }

  .home-banner {
    padding: 44px 0;
  }

  .home-banner__inner {
    gap: 22px;
    padding: 28px 0;
  }

  .home-banner h2 {
    font-size: clamp(28px, 9vw, 36px);
  }

  .home-banner .button {
    width: 100%;
  }

  .search-form {
    grid-template-columns: auto minmax(0, 1fr) auto;
    margin: 16px 20px 0;
  }

  .search-form button {
    width: 34px;
    padding: 0;
  }

  .search-dialog__links {
    padding: 14px 20px 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 30px 0;
  }

  .site-footer {
    padding: 42px 0 24px;
  }

  .footer-top,
  .footer-bottom {
    align-items: center;
    text-align: center;
  }

  .footer-top {
    justify-items: center;
  }

  .footer-top>.footer-logo:first-child,
  .footer-top>.footer-logo--ssb,
  .footer-social,
  .footer-project {
    justify-self: center;
    text-align: center;
  }

  .footer-logo img {
    max-width: min(210px, 72vw);
    height: auto;
    max-height: 58px;
  }

  .footer-logo--ssb img {
    max-width: min(250px, 82vw);
  }

  .footer-social {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer-social a {
    width: 38px;
    height: 38px;
  }

  .footer-grid nav {
    text-align: center;
  }

  .footer-grid a {
    width: auto;
    margin: 9px auto 0;
  }

  .footer-bottom {
    gap: 12px;
  }

  .contact-map {
    min-height: 320px;
  }

  .gallery-dialog__media {
    padding: 0;
  }

  .gallery-dialog__arrow {
    width: 48px;
    height: 64px;
    font-size: 44px;
  }

  .gallery-dialog__arrow--prev {
    left: 6px;
  }

  .gallery-dialog__arrow--next {
    right: 6px;
  }

  .gallery-dialog__bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .back-to-top {
    right: auto;
    left: 18px;
    bottom: 92px;
  }
}

@media (max-width: 460px) {

  .container,
  .site-header__inner {
    width: min(100% - 28px, var(--container));
  }

  .contact-channel,
  .contact-location__head {
    grid-template-columns: 30px minmax(0, 1fr);
  }

  .contact-channel__icon,
  .contact-location__icon {
    width: 30px;
    height: 30px;
  }

  .contact-submit {
    width: 100%;
  }

  .header-language {
    display: none;
  }

  .brand-mark {
    max-width: 142px;
  }

  .mobile-panel__top {
    min-height: 72px;
    padding-right: max(16px, env(safe-area-inset-right));
    padding-left: max(16px, env(safe-area-inset-left));
  }

  .mobile-panel__top .brand-mark {
    height: 40px;
  }

  .mobile-panel__nav {
    gap: 0;
    padding-top: 16px;
    padding-right: max(16px, env(safe-area-inset-right));
    padding-left: max(16px, env(safe-area-inset-left));
  }

  .mobile-panel__nav a {
    min-height: 38px;
    padding: 7px 0;
    font-size: 15px;
  }

  .mobile-panel__tools {
    grid-template-columns: 1fr;
    gap: 0;
    padding-right: max(16px, env(safe-area-inset-right));
    padding-left: max(16px, env(safe-area-inset-left));
  }

  .mobile-panel__tool {
    min-height: 40px;
    padding: 7px 0;
    font-size: 13px;
  }

  .mobile-panel__auth {
    grid-template-columns: 1fr;
    padding-right: max(16px, env(safe-area-inset-right));
    padding-left: max(16px, env(safe-area-inset-left));
  }
}