:root {
  font-family: "Microsoft YaHei", "Segoe UI", Arial, sans-serif;
  color: #434343;
  background: #ffffff;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --navy: #2b435e;
  --navy-deep: #21364e;
  --blue: #00499d;
  --blue-bright: #1688e8;
  --blue-pale: #d7ecf9;
  --red: #f25149;
  --gold: #c69834;
  --ink: #24374a;
  --muted: #6c7885;
  --line: #dce3ea;
  --wash: #f4f7fa;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background: #fff;
  color: #434343;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

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

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

.shell {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.shell-wide {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 50;
  background: #fff;
}

.masthead {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  width: 350px;
  height: 88px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.masthead-contact {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  column-gap: 28px;
  row-gap: 7px;
  color: var(--navy);
  font-size: 14px;
}

.contact-line,
.office-hours {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.contact-line svg {
  color: var(--red);
}

.office-hours {
  grid-column: 1 / -1;
  justify-self: end;
  color: #77828d;
  font-size: 12px;
}

.nav-bar {
  height: 72px;
  background: var(--navy);
  border-bottom: 3px solid #20364d;
  box-shadow: 0 4px 12px rgba(16, 38, 62, 0.15);
}

.nav-shell {
  position: relative;
  height: 69px;
  display: flex;
  align-items: stretch;
}

.main-nav {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  height: 69px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  min-width: 0;
  position: static;
  border-left: 1px solid rgba(255, 255, 255, 0.09);
  transition: background 180ms ease;
}

.nav-item:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.nav-item-head::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: -3px;
  height: 3px;
  background: var(--red);
  transition: left 180ms ease, right 180ms ease;
}

.nav-item:hover,
.nav-item:focus-within,
.nav-item.is-active,
.nav-item.is-expanded {
  background: rgba(255, 255, 255, 0.07);
}

.nav-item:hover .nav-item-head::after,
.nav-item:focus-within .nav-item-head::after,
.nav-item.is-active .nav-item-head::after,
.nav-item.is-expanded .nav-item-head::after {
  left: 0;
  right: 0;
}

.nav-item-head {
  position: relative;
  height: 69px;
  display: flex;
  align-items: stretch;
}

.nav-primary-link {
  min-width: 0;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 5px 8px 12px;
  color: rgba(255, 255, 255, 0.94);
  text-align: center;
}

.nav-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  max-width: 100%;
}

.nav-external-link {
  padding-right: 12px;
}

.nav-external-link svg {
  flex: 0 0 auto;
  color: #9fc7e6;
}

.submenu-toggle {
  width: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.66);
}

.submenu-toggle:hover,
.submenu-toggle:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.submenu-toggle svg {
  transition: transform 180ms ease;
}

.nav-item.is-expanded .submenu-toggle svg {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  z-index: 30;
  top: 69px;
  left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 2.4fr);
  gap: 34px;
  padding: 30px 34px 32px;
  border-top: 3px solid var(--red);
  background: #fff;
  color: var(--ink);
  box-shadow: 0 20px 36px rgba(17, 39, 60, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 100ms ease, transform 100ms ease;
}

.nav-item.is-expanded .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.mega-menu-intro {
  padding-right: 30px;
  border-right: 1px solid var(--line);
}

.mega-menu-intro strong {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.35;
}

.mega-menu-intro p {
  margin: 0;
  color: #6f7d8a;
  font-size: 14px;
  line-height: 1.75;
}

.mega-menu-columns {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 34px;
}

.mega-menu-columns.columns-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.mega-menu-column h2 {
  margin: 0 0 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid #dce8f2;
  color: var(--blue);
  font-size: 15px;
  line-height: 1.4;
}

.mega-menu-column a {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  padding: 6px 0;
  color: #516476;
  font-size: 14px;
  line-height: 1.5;
  transition: color 160ms ease, transform 160ms ease;
}

.mega-menu-column a:hover,
.mega-menu-column a:focus-visible {
  color: var(--blue);
  transform: translateX(3px);
}

.mega-menu-column a svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--red);
}

.nav-actions {
  flex: 0 0 128px;
  display: flex;
  align-items: stretch;
}

.language-btn,
.search-btn,
.mobile-menu-btn {
  border: 0;
  color: #fff;
  background: transparent;
}

.language-btn {
  width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
}

.language-btn:hover,
.search-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.search-btn {
  width: 56px;
  display: grid;
  place-items: center;
  background: #243b55;
}

.mobile-menu-btn {
  display: none;
}

.search-layer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: start center;
  padding-top: 170px;
}

.search-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(13, 29, 45, 0.76);
  backdrop-filter: blur(3px);
}

.search-panel {
  position: relative;
  width: min(760px, calc(100% - 40px));
  padding: 30px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

.search-panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.search-panel-heading > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.search-panel-heading span {
  color: var(--red);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.search-panel-heading strong {
  color: var(--navy);
  font-size: 24px;
}

.search-panel-heading button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--navy);
}

.search-panel form {
  height: 58px;
  display: flex;
  align-items: center;
  border: 2px solid var(--navy);
}

.search-panel form > svg {
  flex: 0 0 auto;
  margin-inline: 18px 10px;
  color: #8b96a2;
}

.search-panel input {
  min-width: 0;
  flex: 1;
  height: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  font-size: 16px;
}

.search-panel form button {
  align-self: stretch;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-inline: 23px;
  border: 0;
  background: var(--red);
  color: #fff;
  font-weight: 600;
}

.search-message {
  margin: 18px 0 0;
  color: #6e7882;
  font-size: 14px;
}

.hero {
  position: relative;
  height: 500px;
  margin-top: 25px;
  overflow: hidden;
  border-radius: 14px;
  background: var(--navy-deep);
  box-shadow: 0 15px 34px rgba(30, 61, 91, 0.18);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background: linear-gradient(90deg, rgba(17, 45, 72, 0.9) 0%, rgba(20, 55, 87, 0.72) 38%, rgba(16, 45, 72, 0.15) 72%, rgba(11, 34, 58, 0.08) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 56%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 42px 0 50px 66px;
  color: #fff;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 17px;
  color: #a8d6f5;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.hero-eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  max-width: 615px;
  margin: 0;
  font-size: clamp(38px, 4vw, 54px);
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -0.035em;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.hero-content > p {
  max-width: 590px;
  margin: 22px 0 29px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 22px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button-red {
  background: var(--red);
  color: #fff;
}

.button-red:hover {
  background: #df443d;
}

.button-outline {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  backdrop-filter: blur(4px);
}

.button-outline:hover {
  background: #fff;
  color: var(--navy);
}

.hero-dots {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 19px;
  display: flex;
  gap: 9px;
}

.hero-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.65);
}

.hero-dots i.active {
  width: 26px;
  border-radius: 8px;
  background: var(--red);
}

.institution-scope {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 30px;
  align-items: stretch;
  margin-top: 24px;
  padding: 25px 28px;
  border: 1px solid #d7e1e9;
  background: #fff;
  box-shadow: 0 10px 28px rgba(38, 72, 101, 0.07);
}

.institution-scope-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.institution-scope-heading > span {
  margin-bottom: 7px;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.institution-scope-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.38;
}

.institution-scope-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.institution-scope-item {
  min-width: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  padding: 5px 18px;
  border-left: 1px solid var(--line);
}

.institution-scope-item:first-child {
  border-left: 0;
}

.institution-scope-item > strong {
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
}

.institution-scope-item h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.35;
}

.institution-scope-item p {
  margin: 0;
  color: #72808d;
  font-size: 14px;
  line-height: 1.55;
}

.institution-scope-item > svg {
  margin-top: 3px;
  color: #9aaab8;
  transition: color 180ms ease, transform 180ms ease;
}

.institution-scope-item:hover > svg {
  color: var(--red);
  transform: translateX(3px);
}

.programs {
  padding-block: 50px 58px;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.section-heading > div > span,
.advantage-title > span,
.partners > div > span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.section-heading h2,
.advantage-title h2 {
  margin: 0;
  color: var(--navy);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
}

.section-note {
  max-width: 850px;
  margin: 17px 0 28px;
  color: #7c8690;
  font-size: 14px;
  line-height: 1.75;
}

.program-layout {
  display: grid;
  grid-template-columns: 1fr 270px;
  gap: 18px;
  align-items: stretch;
}

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

.program-card {
  min-width: 0;
  min-height: 286px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  background: #fff;
  color: inherit;
  border: 1px solid #d7e1e9;
  box-shadow: 0 8px 22px rgba(38, 72, 101, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.program-card:hover {
  transform: translateY(-4px);
  border-color: #b9d3e5;
  box-shadow: 0 15px 30px rgba(32, 70, 104, 0.16);
}

.program-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.program-card:hover::after {
  transform: scaleX(1);
}

.program-media {
  position: relative;
  height: 150px;
  flex: 0 0 auto;
  overflow: hidden;
  background: #123d68;
}

.program-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 29, 54, 0.03), rgba(5, 29, 54, 0.34));
  pointer-events: none;
}

.program-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.program-card:hover .program-media img {
  transform: scale(1.045);
}

.program-icon {
  position: absolute;
  z-index: 1;
  right: 13px;
  bottom: 11px;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: var(--blue);
  box-shadow: 0 6px 16px rgba(8, 38, 65, 0.24);
}

.program-copy {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 18px 17px;
}

.program-code {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.program-card h3 {
  margin: 0 0 8px;
  color: #123f70;
  font-size: 17px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.program-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: #687a89;
  font-size: 14px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.program-action {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 4px;
  margin-top: auto;
  padding-top: 13px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
}

.program-card--utility .program-code {
  color: #1688e8;
}

.forum-card {
  position: relative;
  min-height: 316px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px;
  overflow: hidden;
  border: 0;
  background: #244e77 url("/temp/afmvn/images/quicknav-side-bg.png") center / cover no-repeat;
  color: #fff;
  text-align: left;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.forum-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(23, 59, 91, 0.96), rgba(23, 59, 91, 0.38));
}

.forum-card > * {
  position: relative;
}

.forum-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(31, 71, 107, 0.24);
}

.forum-card > span {
  order: 1;
  color: #9dd6ff;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.forum-card > svg {
  order: 0;
  margin-bottom: auto;
  color: rgba(255, 255, 255, 0.84);
}

.forum-card h3 {
  order: 2;
  margin: 11px 0 9px;
  font-size: 21px;
  line-height: 1.35;
}

.forum-card p {
  order: 3;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.65;
}

.forum-card i {
  position: absolute;
  top: 28px;
  right: 25px;
  display: grid;
  place-items: center;
  color: #fff;
  font-style: normal;
}

.news-section {
  padding-block: 46px 53px;
  background: #f2f5f7;
  border-block: 1px solid #e4e9ed;
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid #ced7df;
  background: #fff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.text-action:hover {
  border-color: var(--red);
  color: var(--red);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 28px;
}

.news-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-right: 20px;
}

.news-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 1px;
  height: 100%;
  background: #d5dde4;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 13px;
}

.news-meta .news-source {
  padding-left: 0;
  border-left: 0;
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.news-meta .news-type {
  padding-left: 10px;
  border-left: 1px solid #c6ced5;
  color: #87919b;
  font-size: 12px;
  text-transform: uppercase;
}

.news-card h3 {
  min-height: 48px;
  margin: 0 0 10px;
  color: #33485d;
  font-size: 16px;
  line-height: 1.5;
}

.news-card p {
  margin: 0 0 16px;
  color: #7a858e;
  font-size: 14px;
  line-height: 1.65;
}

.news-card > button,
.news-card__action {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: auto;
  border: 1px solid #c9d3db;
  background: transparent;
  color: var(--navy);
}

.news-card > button:hover,
.news-card__action:hover {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.message-section {
  min-height: 408px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: stretch;
  padding-block: 50px;
}

.message-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.message-copy .section-heading {
  margin-bottom: 22px;
}

.message-copy > p {
  margin: 0 0 13px;
  color: #626f7b;
  font-size: 15px;
  line-height: 1.95;
}

.signature {
  display: flex;
  flex-direction: column;
  margin: 4px 0 21px;
  padding-left: 15px;
  border-left: 3px solid var(--red);
}

.signature span {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.signature small {
  margin-top: 3px;
  color: #8a949d;
  font-size: 12px;
}

.message-copy .button {
  align-self: flex-start;
}

.message-visual {
  position: relative;
  min-height: 308px;
  overflow: hidden;
  background: var(--navy);
}

.message-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% center;
}

.message-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 12px solid rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

.message-brand {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
}

.message-brand img {
  width: 190px;
}

.message-brand span {
  color: var(--navy);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.advantages {
  color: #fff;
  background: var(--navy);
}

.advantages > .shell {
  min-height: 190px;
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: stretch;
}

.advantage-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.advantage-title > span {
  color: #8eb9d8;
}

.advantage-title h2 {
  color: #fff;
  font-size: 26px;
}

.advantage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.advantage-card {
  min-width: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px 18px;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.advantage-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: translateY(100%);
  transition: transform 220ms ease;
}

.advantage-card:hover::before {
  transform: translateY(0);
}

.advantage-card > * {
  position: relative;
}

.advantage-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  flex: 0 0 auto;
}

.advantage-card h3 {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.35;
}

.advantage-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.65;
}

.advantage-card:hover p {
  color: rgba(255, 255, 255, 0.88);
}

.regional-section {
  padding-block: 65px 58px;
  background: #f4f5f7 url("/temp/afmvn/images/section-texture-bg.png") center / cover no-repeat;
}

.regional-shell {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 70px;
  align-items: center;
}

.regional-intro {
  max-width: 650px;
  margin: 20px 0 25px;
  color: #6e7883;
  font-size: 15px;
  line-height: 1.8;
}

.region-tabs {
  display: flex;
  margin-bottom: 20px;
  border-bottom: 1px solid #cfd8e0;
}

.region-tabs button {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 118px;
  padding: 13px 16px;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: #77828d;
  font-size: 14px;
}

.region-tabs button.active {
  border-bottom-color: var(--red);
  color: var(--blue);
  font-weight: 700;
}

.region-content {
  min-height: 96px;
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  background: #fff;
  border-left: 3px solid var(--blue);
  box-shadow: 0 9px 25px rgba(44, 68, 90, 0.08);
}

.region-content > span {
  align-self: start;
  padding: 7px 10px;
  background: #edf5fb;
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.region-content p {
  margin: 0;
  color: #5f6c78;
  font-size: 15px;
  line-height: 1.75;
}

.regional-footnote {
  display: block;
  margin-top: 13px;
  color: #8b949c;
  font-size: 12px;
}

.region-map {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  background: #2b75b2;
  box-shadow: 0 20px 40px rgba(30, 82, 122, 0.22);
}

.region-map > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.region-labels {
  position: relative;
  z-index: 1;
  height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 8px;
  padding: 28px;
  background: linear-gradient(0deg, rgba(32, 65, 96, 0.78), rgba(31, 82, 126, 0.05) 68%);
}

.region-labels span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 125px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--navy);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.region-labels span.active {
  background: var(--red);
  color: #fff;
}

.partners {
  min-height: 175px;
  display: grid;
  grid-template-columns: 78px 1fr auto;
  align-items: center;
  gap: 26px;
}

.partners-mark {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf5fb;
  color: var(--blue);
}

.partners > div > span {
  margin-bottom: 6px;
}

.partners h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 22px;
}

.partners p {
  margin: 0;
  color: #808a94;
  font-size: 14px;
}

.site-footer {
  background: var(--navy);
  color: #fff;
}

.footer-main {
  min-height: 255px;
  display: grid;
  grid-template-columns: 1.55fr repeat(3, 0.65fr);
  gap: 58px;
  padding-block: 44px 35px;
}

.footer-brand .brand {
  width: 270px;
  height: 69px;
  padding: 7px 12px;
  background: #fff;
}

.footer-brand > p {
  max-width: 340px;
  margin: 15px 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.7;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.footer-contact a,
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-contact svg {
  color: #8ab9da;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-column h3 {
  position: relative;
  margin: 5px 0 12px;
  padding-bottom: 12px;
  font-size: 14px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24px;
  height: 2px;
  background: var(--red);
}

.footer-column a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.footer-column a svg {
  flex: 0 0 auto;
}

.footer-column a:hover {
  color: #fff;
}

.verification-note {
  background: #243a52;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.verification-note > .shell {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  line-height: 1.5;
}

.verification-note svg {
  flex: 0 0 auto;
  color: #85b7da;
}

.copyright {
  background: #20364d;
}

.copyright > .shell {
  min-height: 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.42);
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.02em;
}

/* About page */
.about-hero {
  min-height: 250px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #1688e8 url("/temp/afmvn/images/about-banner-bg.png") center / cover no-repeat;
  color: #fff;
}

.about-hero > .shell {
  padding-left: 250px;
}

.about-hero span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.about-hero h1 {
  display: inline-block;
  margin: 0 13px 6px 0;
  font-size: 37px;
  line-height: 1.15;
}

.about-hero strong {
  font-family: Arial, sans-serif;
  font-size: 17px;
  font-weight: 500;
}

.about-hero p {
  max-width: 620px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.breadcrumb-bar {
  height: 57px;
  background: #fff;
  box-shadow: 0 6px 20px rgba(31, 58, 82, 0.08);
}

.breadcrumb {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 250px;
  color: #9aa2a9;
  font-size: 12px;
}

.breadcrumb a:hover {
  color: var(--blue);
}

.breadcrumb span {
  color: var(--navy);
}

.about-main {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 40px;
  align-items: start;
  padding-bottom: 70px;
}

.about-sidebar {
  position: sticky;
  top: 15px;
  z-index: 3;
  margin-top: -250px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(31, 63, 92, 0.15);
}

.sidebar-logo {
  height: 193px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 20px;
  background: rgba(255, 255, 255, 0.96);
}

.sidebar-logo img {
  width: 160px;
}

.about-sidebar nav {
  display: flex;
  flex-direction: column;
}

.about-sidebar nav button {
  min-height: 58px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 0;
  border-top: 1px solid #e4eaf0;
  background: #f1f5f9;
  color: #526577;
  text-align: left;
  font-size: 14px;
  line-height: 1.4;
}

.about-sidebar nav button.active,
.about-sidebar nav button:hover {
  background: var(--blue);
  color: #fff;
}

.about-content {
  min-width: 0;
  padding-top: 52px;
}

.about-content section {
  scroll-margin-top: 24px;
}

.about-overview .section-heading {
  margin-bottom: 25px;
}

.about-overview > p {
  margin: 0 0 17px;
  color: #576674;
  font-size: 15px;
  line-height: 2;
}

.about-overview > p.lead {
  padding-left: 20px;
  border-left: 3px solid var(--red);
  color: #34495d;
  font-size: 15px;
  font-weight: 600;
}

.about-brand-panel {
  min-height: 130px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  margin-top: 30px;
  padding: 28px 35px;
  background: #eef7fd url("/temp/afmvn/images/quicknav-card-bg.png") center / cover no-repeat;
  border: 1px solid #d5eaf8;
}

.about-brand-panel img {
  width: 330px;
}

.about-brand-panel > div {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
}

.about-brand-panel span {
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.about-brand-panel strong {
  color: var(--navy);
  font-family: Georgia, serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 500;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 58px;
}

.mission-grid > article {
  min-height: 255px;
  position: relative;
  padding: 36px 36px 30px;
  overflow: hidden;
  background: var(--navy);
  color: #fff;
}

.mission-grid > article:nth-child(2) {
  background: var(--blue);
}

.mission-grid svg {
  color: #9fd4f4;
}

.mission-grid h2 {
  position: relative;
  margin: 22px 0 13px;
  font-size: 22px;
}

.mission-grid p {
  position: relative;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.85;
}

.values-section,
.roadmap-section {
  margin-top: 62px;
}

.values-section .section-heading,
.roadmap-section .section-heading {
  margin-bottom: 27px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.values-grid article {
  min-height: 190px;
  position: relative;
  padding: 27px 18px 22px;
  border-right: 1px solid var(--line);
  background: #fff;
}

.values-grid article:last-child {
  border-right: 0;
}

.values-grid svg {
  color: var(--blue);
}

.values-grid h3 {
  margin: 22px 0 10px;
  color: var(--navy);
  font-size: 14px;
}

.values-grid p {
  margin: 0;
  color: #7c8791;
  font-size: 15px;
  line-height: 1.7;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: #cfd8df;
}

.timeline article {
  display: grid;
  grid-template-columns: 38px 85px minmax(0, 1fr);
  gap: 19px;
  align-items: start;
  position: relative;
  padding-block: 16px;
}

.timeline time {
  padding-top: 5px;
  color: var(--red);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

.timeline-marker {
  position: relative;
  z-index: 1;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 0 1px #bfd0dd;
}

.timeline-marker span {
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.timeline article > div:last-child {
  padding: 2px 0 18px 8px;
  border-bottom: 1px solid var(--line);
}

.timeline h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 15px;
}

.timeline p {
  margin: 0;
  color: #76828d;
  font-size: 15px;
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .masthead-contact {
    column-gap: 15px;
  }

  .main-nav span {
    font-size: 14px;
  }

  .nav-actions {
    flex-basis: 110px;
  }

  .language-btn {
    width: 60px;
  }

  .search-btn {
    width: 50px;
  }

  .program-layout {
    grid-template-columns: 1fr;
  }

  .institution-scope {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .institution-scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 20px;
  }

  .institution-scope-item:nth-child(3) {
    border-left: 0;
  }

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

  .program-media {
    height: clamp(150px, 18vw, 180px);
  }

  .forum-card {
    min-height: 260px;
  }

  .advantages > .shell {
    grid-template-columns: 220px 1fr;
  }

  .advantage-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .regional-shell {
    gap: 40px;
  }

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

  .values-grid article:nth-child(3) {
    border-right: 0;
  }

  .values-grid article:nth-child(n + 4) {
    border-top: 1px solid var(--line);
  }
}

@media (min-width: 821px) and (max-width: 1023px) {
  .nav-bar {
    height: 58px;
  }

  .nav-shell {
    height: 55px;
    justify-content: space-between;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .main-nav {
    position: absolute;
    z-index: 20;
    top: 55px;
    left: 0;
    right: 0;
    height: auto;
    display: none;
    grid-template-columns: 1fr;
    background: var(--navy);
    box-shadow: 0 15px 25px rgba(14, 34, 54, 0.25);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav > a {
    min-height: 59px;
    align-items: flex-start;
    padding: 0 20px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav > a::after {
    inset: 0 auto 0 0;
    width: 3px;
    height: auto;
    transform: scaleY(0);
  }

  .main-nav > a:hover::after,
  .main-nav > a.active::after {
    transform: scaleY(1);
  }

  .main-nav span {
    max-width: 100%;
    font-size: 14px;
  }

  .nav-actions {
    flex: 0 0 auto;
    margin-right: -20px;
  }
}

@media (max-width: 820px) {
  .shell,
  .shell-wide {
    width: min(100% - 32px, 720px);
  }

  .masthead {
    min-height: 78px;
  }

  .brand {
    width: min(290px, 58vw);
    height: 70px;
  }

  .masthead-contact {
    display: none;
  }

  .nav-bar {
    height: 58px;
  }

  .nav-shell {
    height: 55px;
    justify-content: space-between;
  }

  .mobile-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .main-nav {
    position: absolute;
    z-index: 20;
    top: 55px;
    left: 0;
    right: 0;
    height: auto;
    display: none;
    grid-template-columns: 1fr;
    background: var(--navy);
    box-shadow: 0 15px 25px rgba(14, 34, 54, 0.25);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav > a {
    min-height: 59px;
    align-items: flex-start;
    padding: 0 48px 0 20px;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .main-nav > a::after {
    inset: 0 auto 0 0;
    width: 3px;
    height: auto;
    transform: scaleY(0);
  }

  .main-nav > a:hover::after,
  .main-nav > a.active::after {
    transform: scaleY(1);
  }

  .main-nav span {
    max-width: 100%;
    font-size: 14px;
  }

  .nav-actions {
    flex: 0 0 auto;
    margin-right: -16px;
  }

  .hero {
    height: 510px;
    margin-top: 16px;
    border-radius: 9px;
  }

  .hero-image {
    object-position: 64% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(21, 50, 77, 0.92), rgba(21, 52, 80, 0.67) 70%, rgba(19, 48, 74, 0.35));
  }

  .hero-content {
    width: 72%;
    padding: 40px;
  }

  .hero h1 {
    font-size: 39px;
  }

  .program-layout {
    grid-template-columns: 1fr;
  }

  .institution-scope {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .institution-scope-heading {
    padding: 0 0 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .forum-card {
    min-height: 235px;
  }

  .news-grid {
    gap: 30px;
  }

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

  .message-visual {
    min-height: 370px;
  }

  .advantages > .shell {
    grid-template-columns: 1fr;
  }

  .advantage-title {
    padding: 30px 0 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

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

  .advantage-card {
    min-height: 130px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }

  .regional-shell {
    grid-template-columns: 1fr;
  }

  .region-map {
    min-height: 300px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .about-hero > .shell,
  .breadcrumb {
    padding-left: 0;
  }

  .about-main {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .about-sidebar {
    position: static;
    margin-top: 0;
    box-shadow: 0 8px 22px rgba(31, 63, 92, 0.09);
  }

  .sidebar-logo {
    display: none;
  }

  .about-sidebar nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .about-sidebar nav button {
    min-height: 68px;
    grid-template-columns: 1fr;
    gap: 2px;
    justify-items: start;
    padding: 10px 12px;
    border-top: 0;
    border-right: 1px solid #e4eaf0;
  }

  .about-sidebar nav button svg {
    display: none;
  }

  .about-content {
    padding-top: 42px;
  }

  .about-brand-panel img {
    width: 260px;
  }
}

@media (max-width: 700px) {
  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-media {
    height: clamp(160px, 30vw, 210px);
  }
}

@media (max-width: 600px) {
  .shell,
  .shell-wide {
    width: calc(100% - 28px);
  }

  .brand {
    width: 245px;
    max-width: 72vw;
  }

  .language-btn {
    width: 56px;
  }

  .nav-actions {
    margin-right: -14px;
  }

  .search-btn {
    width: 48px;
  }

  .search-layer {
    padding-top: 90px;
  }

  .search-panel {
    width: calc(100% - 28px);
    padding: 20px;
  }

  .search-panel form {
    height: auto;
    flex-wrap: wrap;
    border: 0;
  }

  .search-panel form > svg {
    display: none;
  }

  .search-panel input {
    flex: 1 0 100%;
    height: 52px;
    padding: 0 14px;
    border: 2px solid var(--navy);
  }

  .search-panel form button {
    min-height: 45px;
    margin-top: 10px;
  }

  .hero {
    height: 560px;
    margin-inline: 0;
    width: 100%;
    border-radius: 0;
  }

  .hero-image {
    object-position: 68% center;
  }

  .hero-shade {
    background: linear-gradient(90deg, rgba(17, 45, 72, 0.96) 0%, rgba(17, 47, 76, 0.76) 72%, rgba(16, 44, 70, 0.45));
  }

  .hero-content {
    width: 100%;
    justify-content: flex-end;
    padding: 38px 22px 55px;
  }

  .hero-eyebrow {
    font-size: 12px;
  }

  .hero h1 {
    max-width: 430px;
    font-size: 34px;
  }

  .hero-content > p {
    margin-block: 17px 22px;
    font-size: 15px;
    line-height: 1.7;
  }

  .institution-scope {
    width: calc(100% - 28px);
    margin-top: 18px;
    padding: 22px 20px;
  }

  .institution-scope-heading h2 {
    font-size: 19px;
  }

  .institution-scope-grid {
    grid-template-columns: 1fr;
    row-gap: 0;
  }

  .institution-scope-item,
  .institution-scope-item:nth-child(3) {
    padding: 15px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .institution-scope-item:first-child {
    border-top: 0;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .programs {
    padding-block: 45px;
  }

  .section-heading {
    align-items: flex-start;
  }

  .section-heading h2,
  .advantage-title h2 {
    font-size: 25px;
  }

  .program-grid {
    grid-template-columns: 1fr;
  }

  .program-card {
    min-height: 308px;
  }

  .forum-card {
    min-height: 270px;
  }

  .news-section {
    padding-block: 40px;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .news-card {
    padding: 23px 0;
    border-bottom: 1px solid #d5dde4;
  }

  .news-card:first-child {
    padding-top: 0;
  }

  .news-card:not(:last-child)::after {
    display: none;
  }

  .news-card h3 {
    min-height: 0;
  }

  .message-section {
    gap: 34px;
    padding-block: 44px;
  }

  .message-visual {
    min-height: 340px;
  }

  .message-brand {
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 12px;
  }

  .message-brand img {
    width: 160px;
  }

  .message-brand span {
    display: none;
  }

  .advantage-grid {
    grid-template-columns: 1fr;
  }

  .advantage-card {
    min-height: 110px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .regional-section {
    padding-block: 48px;
  }

  .region-tabs {
    overflow-x: auto;
  }

  .region-tabs button {
    min-width: 108px;
    padding-inline: 12px;
  }

  .region-content {
    grid-template-columns: max-content minmax(0, 1fr);
    padding: 15px;
  }

  .region-content > span {
    font-size: 12px;
  }

  .region-map {
    min-height: 250px;
  }

  .partners {
    grid-template-columns: 55px 1fr;
    gap: 16px;
    padding-block: 30px;
  }

  .partners-mark {
    width: 52px;
    height: 52px;
  }

  .partners h2 {
    font-size: 19px;
  }

  .partners > .text-action {
    grid-column: 2;
    justify-self: start;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    display: flex;
  }

  .footer-brand .brand {
    width: 250px;
    max-width: 100%;
  }

  .copyright > .shell {
    min-height: 58px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
  }

  .about-hero {
    min-height: 245px;
    background-position: 64% center;
  }

  .about-hero span {
    font-size: 12px;
  }

  .about-hero h1 {
    display: block;
    font-size: 31px;
  }

  .about-hero strong {
    font-size: 14px;
  }

  .about-hero p {
    max-width: 88%;
    font-size: 14px;
    line-height: 1.6;
  }

  .breadcrumb-bar {
    height: 49px;
  }

  .about-sidebar {
    width: calc(100% + 28px);
    margin-left: -14px;
    overflow: visible;
  }

  .about-sidebar nav {
    width: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-sidebar nav button {
    min-height: 62px;
    border-bottom: 1px solid #e4eaf0;
  }

  .about-overview > p {
    font-size: 14px;
    line-height: 1.9;
  }

  .about-overview > p.lead {
    font-size: 15px;
  }

  .mission-grid p,
  .values-grid p,
  .timeline p {
    font-size: 14px;
  }

  .about-brand-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 25px;
  }

  .about-brand-panel img {
    width: 100%;
    max-width: 300px;
  }

  .about-brand-panel > div {
    text-align: left;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .values-grid article,
  .values-grid article:nth-child(3) {
    min-height: 145px;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .values-grid article:first-child {
    border-top: 0;
  }

  .timeline::before {
    left: 19px;
  }

  .timeline article {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .timeline time {
    grid-column: 2;
    grid-row: 1;
    padding-top: 0;
    text-align: left;
  }

  .timeline-marker {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .timeline article > div:last-child {
    grid-column: 2;
  }
}

@media (max-width: 1023px) {
  .main-nav {
    position: absolute;
    z-index: 20;
    top: 55px;
    left: 0;
    right: 0;
    height: auto;
    max-height: calc(100vh - 145px);
    display: none;
    grid-template-columns: 1fr;
    margin: 0;
    padding: 0 0 8px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--navy);
    box-shadow: 0 15px 25px rgba(14, 34, 54, 0.25);
  }

  .main-nav.is-open {
    display: block;
  }

  .nav-item {
    position: relative;
    display: block;
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-item:last-child {
    border-right: 0;
  }

  .nav-item-head {
    min-height: 58px;
    height: auto;
  }

  .nav-item-head::after {
    inset: 0 auto 0 0;
    width: 3px;
    height: auto;
    transform: scaleY(0);
    transform-origin: center;
  }

  .nav-item:hover .nav-item-head::after,
  .nav-item:focus-within .nav-item-head::after,
  .nav-item.is-active .nav-item-head::after,
  .nav-item.is-expanded .nav-item-head::after {
    left: 0;
    right: auto;
    transform: scaleY(1);
  }

  .nav-primary-link {
    min-height: 58px;
    justify-content: flex-start;
    padding: 12px 20px;
    text-align: left;
  }

  .nav-label {
    font-size: 15px;
    line-height: 1.4;
  }

  .nav-external-link {
    padding-right: 20px;
  }

  .submenu-toggle {
    width: 54px;
    flex-basis: 54px;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mega-menu {
    position: static;
    width: 100%;
    display: none;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 22px;
    padding: 22px 24px 26px;
    border-top: 1px solid #d7e1ea;
    background: #f6f8fa;
    box-shadow: inset 0 8px 16px rgba(24, 51, 75, 0.07);
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }

  .nav-item.is-expanded .mega-menu {
    display: grid;
  }

  .mega-menu-intro {
    padding-right: 22px;
  }

  .mega-menu-intro strong {
    font-size: 17px;
  }

  .mega-menu-columns,
  .mega-menu-columns.columns-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 26px;
  }

  .mega-menu-column a {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .mega-menu {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 20px 22px;
  }

  .mega-menu-intro {
    padding: 0 0 15px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mega-menu-intro p {
    font-size: 13px;
    line-height: 1.65;
  }

  .mega-menu-columns,
  .mega-menu-columns.columns-4 {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
