:root {
  --adt-navy: #00365f;
  --adt-deep: #002f55;
  --adt-teal: #00a0ad;
  --adt-gold: #9d7a2f;
  --adt-graphite: #5d5d5b;
  --adt-warm: #ded4ca;
  --adt-warm-soft: #f4f1ee;
  --adt-ink: #00365f;
  --adt-line: #e5ddd6;
  --adt-white: #ffffff;
  --shadow: 0 20px 46px rgba(0, 54, 95, .12);
  --portal-background: #f7f8f8;
  --portal-bg-image: url("assets/backgrounds/hangar-airdolomiti-web.jpg");
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  overflow-y: overlay;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}

::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
  display: none;
}

::-webkit-scrollbar-track,
::-webkit-scrollbar-track-piece,
::-webkit-scrollbar-corner {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  border: 3px solid transparent;
  border-radius: 999px;
  background: transparent;
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background: transparent;
  background-clip: padding-box;
}

body {
  position: relative;
  isolation: isolate;
  min-height: 100%;
  margin: 0;
  color: var(--adt-ink);
  background: var(--portal-background);
  font-family: Arial, Helvetica, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image: var(--portal-bg-image);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(135deg,rgba(5,22,77,.18) 0%,rgba(5,22,77,.34) 54%,rgba(0,46,84,.56) 100%);
}

a {
  color: inherit;
}

.portal-shell {
  min-height: 100vh;
  background: transparent;
}

.portal-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
}

.portal-header--dark {
  background: var(--section-header, var(--adt-navy));
  border-bottom-color: rgba(255,255,255,.18);
}

.portal-header__inner {
  width: calc(100% - 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.section-page .portal-header__inner {
  flex-direction: row-reverse;
}

.portal-logo {
  display: block;
  width: clamp(270px, 30vw, 420px);
  max-height: 62px;
  object-fit: contain;
}

.portal-logo-link {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  height: 62px;
  line-height: 0;
  text-decoration: none;
}

.portal-header--dark {
  min-height: 104px;
}

.portal-header--dark .portal-logo {
  width: clamp(330px, 31vw, 405px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-link {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  text-decoration: none;
}

.icon-link img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.icon-link--mail {
  width: 48px;
  height: 48px;
}

.icon-link--mail img {
  width: 38px;
  height: 38px;
}

.portal-header--dark .icon-link img {
  filter: brightness(0) invert(1);
}

.landing-main {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 74px;
}

.portal-stack {
  display: grid;
  gap: 30px;
  justify-items: center;
}

.portal-card {
  width: min(900px, 100%);
  min-height: 278px;
  height: 278px;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(280px, 1.04fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: 24px;
  text-decoration: none;
  box-shadow: 0 26px 70px rgba(0, 18, 42, .26);
  background: var(--card-glass-bg, rgba(0, 54, 95, .52));
  border: 1px solid rgba(255, 255, 255, .34);
  outline: 0;
  backdrop-filter: blur(8px) saturate(1.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
  backface-visibility: hidden;
}

.portal-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, .54);
  background: var(--card-glass-hover, rgba(0, 54, 95, .62));
  box-shadow: 0 32px 78px rgba(0, 18, 42, .34);
}

.portal-card:focus,
.portal-card:focus-visible,
.icon-link:focus,
.icon-link:focus-visible {
  outline: 2px solid rgba(255,255,255,.72);
  outline-offset: 4px;
}

.portal-card__label {
  display: grid;
  align-content: center;
  padding: clamp(32px, 5vw, 64px) clamp(38px, 6vw, 92px);
  color: #fff;
}

.portal-card__label strong {
  display: block;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.18;
  letter-spacing: 0;
}

.portal-card__label span {
  display: none;
  margin-top: 12px;
  max-width: 25rem;
  font-size: 14px;
  line-height: 1.45;
  opacity: .9;
}

.portal-card__visual {
  position: relative;
  isolation: isolate;
  min-height: 278px;
  overflow: hidden;
}

.portal-card__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.18), transparent 44%),
    linear-gradient(135deg, rgba(255,255,255,.08), rgba(0,160,173,.16)),
    var(--visual-bg);
  opacity: .86;
}

.portal-card__visual::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: -32%;
  top: 50%;
  width: min(620px, 132%);
  height: 154%;
  background: rgba(255, 255, 255, .16);
  transform: translateY(-50%);
  opacity: .92;
  -webkit-mask: var(--ghost-icon) center / contain no-repeat;
  mask: var(--ghost-icon) center / contain no-repeat;
}

.portal-card__visual img {
  position: absolute;
  z-index: 2;
  right: 14%;
  top: 50%;
  width: min(235px, 49%);
  max-width: 66%;
  max-height: 76%;
  height: auto;
  transform: translateY(-50%);
  filter: brightness(0) invert(1) drop-shadow(0 18px 28px rgba(0, 54, 95, .22));
  opacity: .96;
}

.portal-card--camo {
  --card-glass-bg: linear-gradient(to bottom right, #5eb9b6 0%, #4b9da1 42%, #276674 72%, #1c4c5c 100%);
  --card-glass-hover: linear-gradient(to bottom right, #5eb9b6 0%, #4b9da1 38%, #276674 68%, #1c4c5c 100%);
  --ghost-icon: url("assets/portal-icons/laptop-booking-confirmation.svg");
  --visual-bg: transparent;
}

.portal-card--maintenance {
  --card-glass-bg: linear-gradient(to bottom right, #71aefb 0%, #4073d7 42%, #3257bc 72%, #132970 100%);
  --card-glass-hover: linear-gradient(to bottom right, #71aefb 0%, #4073d7 38%, #3257bc 68%, #132970 100%);
  --ghost-icon: url("assets/portal-icons/airplane-maintenance.svg");
  --visual-bg: transparent;
}

.portal-card--external {
  --card-glass-bg: linear-gradient(to bottom right, #c775b5 0%, #b84f94 48%, #841e45 100%);
  --card-glass-hover: linear-gradient(to bottom right, #c775b5 0%, #b84f94 44%, #841e45 100%);
  --ghost-icon: url("assets/portal-icons/airport.svg");
  --visual-bg: transparent;
}

.portal-card--maintenance .portal-card__visual img {
  width: min(300px, 58%);
}

.portal-card--external .portal-card__visual img {
  width: min(235px, 49%);
}

.portal-card--camo .portal-card__visual img {
  width: min(235px, 49%);
}

@media (min-width: 761px) {
  .portal-header {
    height: 70px;
  }

  .portal-logo-link {
    height: 50px;
  }

  .portal-logo {
    width: clamp(238px, 25vw, 340px);
    max-height: 50px;
  }

  .landing-main {
    padding: 10px 0 18px;
  }

  .portal-stack {
    gap: 14px;
  }

  .portal-card {
    width: min(840px, 100%);
    min-height: 190px;
    height: 190px;
    border-radius: 20px;
    grid-template-columns: minmax(250px, .98fr) minmax(260px, 1.02fr);
  }

  .portal-card__label {
    padding: 26px 58px;
  }

  .portal-card__label strong {
    font-size: clamp(24px, 2.25vw, 32px);
  }

  .portal-card__visual {
    min-height: 190px;
  }

  .portal-card__visual img,
  .portal-card--camo .portal-card__visual img,
  .portal-card--external .portal-card__visual img {
    width: min(210px, 50%);
  }

  .portal-card--maintenance .portal-card__visual img {
    width: min(248px, 56%);
  }
}

.section-page {
  background: var(--section-header, var(--adt-navy));
}

html body.section-page {
  background: var(--section-header, var(--adt-navy)) !important;
  background-image: var(--section-header, none) !important;
}

html body.section-page::before,
html body.section-page::after {
  content: none !important;
  display: none !important;
  background: none !important;
}

.section-page,
.section-page button,
.section-page input,
.section-page textarea,
.section-page select {
  font-family: Arial, Helvetica, sans-serif;
}

.section-page--camo {
  --section-header: linear-gradient(to bottom right, #5eb9b6 0%, #4b9da1 42%, #276674 72%, #1c4c5c 100%);
  --section-panel: transparent;
  --section-panel-strong: transparent;
  --section-tile: #fff;
  --section-tile-hover: #dce9eb;
  --section-item: rgba(255, 255, 255, .78);
  --section-item-hover: rgba(255, 255, 255, .9);
  --section-accent: rgb(39, 102, 116);
  --section-icon-filter: brightness(0) saturate(100%) invert(34%) sepia(18%) saturate(1267%) hue-rotate(143deg) brightness(93%) contrast(87%);
  --section-ink: rgb(39, 102, 116);
}

.section-page--maintenance {
  --section-header: linear-gradient(to bottom right, #71aefb 0%, #4073d7 42%, #3257bc 72%, #132970 100%);
  --section-panel: transparent;
  --section-panel-strong: transparent;
  --section-tile: #fff;
  --section-tile-hover: #e5e9f8;
  --section-item: rgba(255, 255, 255, .78);
  --section-item-hover: rgba(255, 255, 255, .9);
  --section-accent: rgb(50, 87, 188);
  --section-icon-filter: brightness(0) saturate(100%) invert(32%) sepia(42%) saturate(1841%) hue-rotate(196deg) brightness(92%) contrast(91%);
  --section-ink: rgb(50, 87, 188);
}

.section-page--external {
  --section-header: linear-gradient(to bottom right, #c775b5 0%, #b84f94 48%, #841e45 100%);
  --section-panel: transparent;
  --section-panel-strong: transparent;
  --section-tile: #fff;
  --section-tile-hover: #f3e4ea;
  --section-item: rgba(255, 255, 255, .78);
  --section-item-hover: rgba(255, 255, 255, .9);
  --section-accent: rgb(132, 30, 69);
  --section-icon-filter: brightness(0) saturate(100%) invert(15%) sepia(82%) saturate(2803%) hue-rotate(325deg) brightness(79%) contrast(91%);
  --section-ink: rgb(132, 30, 69);
}

/* Shared section surface theme. */
html body.section-page .app-titlebar,
html body.section-page main > .topbar,
html body.section-page .starter-card {
  color: #fff !important;
  background: transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

html body.section-page .app-titlebar h1,
html body.section-page main > .topbar h1,
html body.section-page .starter-card h2 {
  color: #fff !important;
  text-shadow: 0 2px 12px rgba(5, 22, 77, .3);
}

html body.section-page .app-titlebar .eyebrow,
html body.section-page .app-titlebar .lead,
html body.section-page main > .topbar .eyebrow,
html body.section-page main > .topbar .title-kicker,
html body.section-page .starter-card .eyebrow,
html body.section-page .starter-card p {
  color: rgba(255, 255, 255, .86) !important;
}

.section-main {
  width: calc(100% - 40px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  align-items: start;
  gap: 26px 22px;
  padding-bottom: 64px;
}

.quick-grid-band {
  order: 1;
  min-width: 0;
  background: transparent;
  padding: 18px 0 20px;
}

.quick-grid-band h2 {
  margin: 0 0 10px;
  text-align: left;
  color: #fff;
  font-size: clamp(20px, 1.45vw, 27px);
  line-height: 1.1;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(0, 18, 42, .34);
}

.tile-grid {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  gap: 9px;
}

.tile-grid--wide {
  width: 100%;
}

.tile {
  min-height: 74px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-rows: auto;
  place-items: center start;
  align-content: center;
  gap: 12px;
  padding: 10px 13px;
  background: var(--section-tile, #fff);
  border: 2px solid var(--section-accent, #05164d);
  border-radius: 7px;
  text-align: left;
  text-decoration: none;
  color: var(--section-accent, var(--adt-navy));
  box-shadow: none;
  overflow: hidden;
  transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.tile:hover {
  transform: translateY(-2px);
  border-color: var(--section-accent, #05164d);
  background: var(--section-tile-hover, #fff);
  box-shadow: 0 10px 26px rgba(0, 46, 84, .13);
}

.tile--white {
  background: #fff;
}

.tile--white:hover {
  background: var(--section-tile-hover, #fff);
}

.tile--gold img {
  filter: var(--section-icon-filter, brightness(0) saturate(100%) invert(16%) sepia(80%) saturate(1396%) hue-rotate(177deg) brightness(88%) contrast(101%));
}

.tile--test {
  border-color: #b3261e;
  color: #b3261e;
}

.tile--test:hover {
  border-color: #b3261e;
}

.tile img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: var(--section-icon-filter, brightness(0) saturate(100%) invert(16%) sepia(80%) saturate(1396%) hue-rotate(177deg) brightness(88%) contrast(101%));
}

.tile[data-mobile-friendly] {
  grid-template-columns: 38px minmax(0, 1fr) 24px;
}

.tile[data-mobile-friendly]::after {
  content: "";
  width: 24px;
  height: 24px;
  justify-self: end;
  background: url("/assets/portal-icons/mobile-friendly.svg") center / contain no-repeat;
  filter: var(--section-icon-filter, brightness(0) saturate(100%) invert(16%) sepia(80%) saturate(1396%) hue-rotate(177deg) brightness(88%) contrast(101%));
  opacity: .78;
}

.tile--test img {
  filter: brightness(0) saturate(100%) invert(19%) sepia(90%) saturate(1968%) hue-rotate(349deg) brightness(88%) contrast(93%);
}

.tile b {
  display: block;
  font-size: 16px;
  line-height: 1.05;
}

.tile span {
  display: block;
  min-width: 0;
  margin-top: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.13;
  overflow-wrap: anywhere;
}

.quick-grid-band .tile span {
  white-space: nowrap;
}

.micro-actions {
  width: 100%;
  margin: 9px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 9px;
}

.micro-actions a {
  min-height: 42px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #05164d;
  border-radius: 7px;
  color: var(--adt-navy);
  background: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.15;
}

.content-band {
  order: 3;
  position: relative;
  min-width: 0;
  margin-top: 0;
  padding: 18px 0 24px;
  background: transparent;
}

.content-band + .content-band {
  margin-top: 0;
}

.content-band--white {
  background: transparent;
}

.content-band h1,
.content-band h2 {
  margin: 0 0 10px;
  text-align: left;
  color: #fff;
  font-size: clamp(20px, 1.45vw, 27px);
  line-height: 1.1;
  font-weight: 900;
  text-shadow: 0 2px 8px rgba(0, 18, 42, .34);
}

.search-row {
  width: 100%;
  margin: 0 0 72px;
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(320px, 1fr);
  gap: 16px;
  align-items: start;
}

.section-search-band {
  order: 99;
  grid-column: 1 / -1;
  position: relative;
  padding: 12px 0 10px;
  background: transparent;
}

.section-search-band .search-row {
  margin-bottom: 0;
}

.search-field {
  display: grid;
  gap: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .62);
  border-radius: 8px;
  background: rgba(5, 22, 77, .44);
  box-shadow: 0 18px 44px rgba(0, 46, 84, .24);
}

.search-field label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.search-control {
  display: grid;
  grid-template-columns: 1fr 42px;
  align-items: center;
  min-height: 38px;
  padding: 0 6px 0 12px;
  border-radius: 6px;
  background: #fff;
  border-bottom: 0;
}

.search-control input {
  min-width: 0;
  height: 38px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--adt-navy);
  font-size: 17px;
  font-weight: 800;
}

.search-control input::placeholder {
  color: rgba(0, 54, 95, .62);
  font-weight: 750;
}

.search-control button {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.search-control img {
  width: 24px;
  height: 24px;
  filter: var(--section-icon-filter, brightness(0) saturate(100%) invert(16%) sepia(80%) saturate(1396%) hue-rotate(177deg) brightness(88%) contrast(101%));
}

.search-result {
  position: static;
  width: 100%;
  max-height: clamp(210px, 34vh, 360px);
  min-height: 0;
  display: grid;
  gap: 8px;
  align-content: start;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 6px;
  color: var(--section-accent, var(--adt-teal));
  font-size: 20px;
  scrollbar-color: var(--section-accent, var(--adt-teal)) rgba(255, 255, 255, .45);
}

.search-result__placeholder {
  align-self: center;
  padding-top: 6px;
}

.search-result__item {
  min-height: 58px;
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(0, 57, 92, .18);
  background: rgba(255, 255, 255, .78);
  color: var(--adt-navy);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 57, 92, .08);
}

.search-result__item:hover {
  border-color: var(--section-accent, var(--adt-teal));
  background: rgba(255, 255, 255, .94);
}

.search-result__type {
  min-width: 0;
  padding: 4px 6px;
  border-radius: 4px;
  background: var(--section-accent, var(--adt-teal));
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result__text {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.search-result__text strong,
.search-result__text small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-result__text strong {
  font-size: 17px;
  line-height: 1.2;
}

.search-result__text small {
  color: rgba(0, 57, 92, .64);
  font-size: 13px;
}

.search-result::-webkit-scrollbar {
  width: 8px;
}

.search-result::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .45);
}

.search-result::-webkit-scrollbar-thumb {
  background: var(--section-accent, var(--adt-teal));
  border-radius: 999px;
}

@media (max-width: 980px) {
  .search-row {
    grid-template-columns: 1fr;
  }

  .search-result {
    width: 100%;
  }
}

.board-grid {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
  gap: 9px;
}

.board-grid--two {
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  margin-top: 9px;
}

.board-grid--four {
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(228px, 1fr));
}

.board-grid + .board-grid {
  margin-top: 9px;
}

.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 190px;
  background: rgba(255, 255, 255, .78);
  border-top: 1px solid rgba(255, 255, 255, .42);
  backdrop-filter: blur(8px) saturate(1.04);
}

.footer__cell {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 26px;
  text-align: center;
  font-size: 12px;
  line-height: 1.35;
}

.footer__cell + .footer__cell {
  border-left: 1px solid var(--adt-line);
}

.footer img {
  width: 22px;
  height: 22px;
  filter: var(--section-icon-filter, brightness(0) saturate(100%) invert(48%) sepia(93%) saturate(1779%) hue-rotate(147deg) brightness(91%) contrast(101%));
}

.footer a {
  color: var(--adt-navy);
}

.placeholder-main {
  width: min(780px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

.placeholder-panel {
  background: var(--section-panel, rgba(255, 255, 255, .82));
  border: 1px solid rgba(255, 255, 255, .48);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 54px);
  backdrop-filter: blur(8px) saturate(1.04);
}

.placeholder-panel h1 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 46px);
}

.placeholder-panel p {
  margin: 0 0 26px;
  color: #52606a;
  line-height: 1.55;
}

.restricted-grid {
  width: min(430px, 100%);
  margin: 8px 0 26px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--section-accent, var(--adt-teal));
  font-weight: 800;
  text-decoration: none;
}

.contact-page {
  background: var(--portal-background);
  color: #fff;
}

.contact-header {
  position: sticky;
  top: 0;
  height: 88px;
}

.contact-main {
  min-height: calc(100vh - 88px);
}

.contact-grid {
  min-height: 314px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 0;
  border-bottom: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  box-shadow: 0 18px 44px rgba(47,35,27,.2);
}

.contact-card {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 16px;
  min-height: 314px;
  padding: 42px 30px;
  text-align: center;
}

.contact-card + .contact-card {
  border-left: 1px solid rgba(255,255,255,.22);
}

.contact-card img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.contact-card h1 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 500;
  color: #fff;
}

.contact-card p {
  margin: 0;
  font-size: 16px;
  line-height: 1.45;
  color: #fff;
}

.contact-card a {
  color: #fff;
}

@media (max-width: 760px) {
  .portal-header {
    height: auto;
    min-height: 68px;
  }

  .portal-header__inner {
    width: calc(100% - 24px);
  }

  .portal-header--dark {
    min-height: 0;
    padding: 10px 0;
  }

  .portal-header--dark .portal-header__inner {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 8px 14px;
  }

  .portal-logo {
    width: min(230px, 68vw);
  }

  .portal-header--dark .portal-logo {
    width: min(218px, 78vw);
  }

  .header-actions {
    gap: 8px;
    justify-content: center;
  }

  .icon-link {
    width: 30px;
    height: 30px;
  }

  .icon-link img {
    width: 24px;
    height: 24px;
  }

  .icon-link--mail {
    width: 38px;
    height: 38px;
  }

  .icon-link--mail img {
    width: 30px;
    height: 30px;
  }

  .portal-card {
    grid-template-columns: 1fr;
    min-height: 0;
    height: auto;
    border-radius: 18px;
  }

  .portal-card__label {
    min-height: 150px;
    padding: 28px;
  }

  .portal-card__visual {
    min-height: 126px;
  }

  .portal-card__visual img {
    width: 120px;
    right: 28px;
  }

  .portal-card__visual::after {
    right: -22%;
    width: min(360px, 118%);
    height: 140%;
  }

  .tile-grid,
  .tile-grid--wide,
  .board-grid,
  .board-grid--four {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    width: 100%;
    gap: 12px;
  }

  .tile {
    min-height: 70px;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 11px;
    padding: 10px 12px;
  }

  .tile img {
    width: 32px;
    height: 32px;
  }

  .tile b,
  .tile span {
    font-size: 16px;
  }

  .quick-grid-band {
    padding: 14px 0 18px;
  }

  .micro-actions {
    width: 100%;
    margin-top: 14px;
    gap: 8px;
  }

  .micro-actions a {
    min-height: 34px;
    height: auto;
    padding: 6px 12px;
    font-size: 14px;
  }


.section-main {
    width: min(1100px, calc(100% - 28px));
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
    padding-bottom: 28px;
  }

  .content-band {
    margin-top: 0;
    padding: 18px 0 28px;
  }

  .content-band + .content-band {
    margin-top: 0;
  }

  .content-band h1,
  .content-band h2 {
    margin-bottom: 12px;
    font-size: clamp(23px, 6vw, 31px);
  }

  .search-row {
    width: min(620px, calc(100% - 28px));
    margin-bottom: 34px;
    gap: 16px;
  }

  .section-search-band {
    padding: 22px 0 10px;
  }

  .section-search-band .search-row {
    margin-bottom: 0;
  }

  .search-field label {
    font-size: 14px;
  }

  .search-control input {
    height: 44px;
    font-size: 16px;
  }

  .search-control button {
    width: 40px;
    height: 40px;
  }

  .search-control img {
    width: 30px;
    height: 30px;
  }

  .search-result {
    max-height: min(260px, 36vh);
    min-height: 0;
    font-size: 17px;
  }

  .search-result__item {
    grid-template-columns: 56px 1fr;
  }

  .search-result__text strong {
    font-size: 15px;
  }

  .search-result__text small {
    font-size: 12px;
  }

  .board-grid--two {
    width: 100%;
    margin-top: 12px;
  }

  .board-grid + .board-grid {
    margin-top: 12px;
  }

  .search-row,
  .footer,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-card {
    min-height: 220px;
  }

  .contact-card + .contact-card {
    border-left: 0;
    border-top: 1px solid rgba(255,255,255,.22);
  }

  .footer__cell + .footer__cell {
    border-left: 0;
    border-top: 1px solid var(--adt-line);
  }

  .placeholder-main {
    width: min(620px, calc(100% - 28px));
    padding: 28px 0 44px;
  }

  .placeholder-panel {
    padding: 24px 18px;
    border-color: rgba(255,255,255,.48);
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(8px) saturate(1.04);
  }

  .placeholder-panel h1 {
    font-size: clamp(27px, 8vw, 36px);
  }

  .restricted-grid {
    width: 100%;
    margin-bottom: 22px;
  }
}

@media (max-width: 640px) {
  .tile-grid,
  .tile-grid--wide,
  .board-grid,
  .board-grid--two,
  .board-grid--four {
    grid-template-columns: 1fr;
  }

  .tile {
    min-height: 68px;
    grid-template-columns: 38px minmax(0, 1fr);
    place-items: center start;
    align-content: center;
    text-align: left;
  }

  .tile img {
    justify-self: center;
  }

  .tile b,
  .tile span {
    margin-top: 0;
  }
}

@media (max-width: 420px) {
  .portal-header--dark .portal-logo {
    width: min(205px, 76vw);
  }

  .icon-link {
    width: 28px;
    height: 28px;
  }

  .icon-link img {
    width: 22px;
    height: 22px;
  }

  .tile {
    grid-template-columns: 34px minmax(0, 1fr);
    padding: 9px 11px;
  }

  .tile[data-mobile-friendly] {
    grid-template-columns: 34px minmax(0, 1fr) 22px;
  }

  .tile img {
    width: 30px;
    height: 30px;
  }

  .tile[data-mobile-friendly]::after {
    width: 22px;
    height: 22px;
  }
}

.docs-browser {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 76px;
}

.docs-hero {
  margin: 0 0 22px;
  padding: 0 0 24px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
}

.docs-hero--narrow {
  max-width: 680px;
  margin-inline: auto;
}

.docs-back,
.docs-upload-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border: 2px solid var(--section-accent, #05164d);
  border-radius: 7px;
  color: var(--section-accent, var(--adt-navy));
  background: var(--section-tile, #fff);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  transition: transform .16s ease, box-shadow .16s ease;
}

.docs-back:hover,
.docs-upload-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 46, 84, .12);
}

.docs-kicker {
  margin: 18px 0 4px;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.docs-hero h1 {
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.05;
}

.docs-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.docs-toolbar input,
.upload-form input,
.upload-form select {
  width: 100%;
  height: 44px;
  border: 2px solid #05164d;
  border-radius: 7px;
  padding: 0 12px;
  color: var(--adt-navy);
  background: #fff;
  font: inherit;
}

.docs-toolbar input:focus,
.upload-form input:focus,
.upload-form select:focus {
  outline: 3px solid rgba(0, 166, 176, .22);
  outline-offset: 2px;
}

.docs-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  color: rgba(255, 255, 255, .86);
  font-size: 13px;
  font-weight: 800;
}

.docs-breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.docs-breadcrumb a:hover {
  text-decoration: underline;
}

.docs-count {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 800;
}

.docs-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 14px;
}

.docs-item {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 88px;
  padding: 14px 18px;
  border: 2px solid #05164d;
  border-radius: 7px;
  color: var(--adt-navy);
  background: #fff;
  text-decoration: none;
  box-shadow: none;
  overflow: hidden;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.docs-item:hover {
  border-color: #05164d;
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 20px rgba(0, 46, 84, .12);
}

.docs-item__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 7px;
  color: var(--adt-navy);
  background: transparent;
  border: 2px solid currentColor;
  font-size: 13px;
  font-weight: 800;
}

.docs-item__icon img {
  display: block;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.docs-item__text {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.docs-item__text strong {
  color: var(--adt-navy);
  font-size: 19px;
  line-height: 1.16;
  overflow-wrap: anywhere;
}

.docs-item__text small {
  color: var(--adt-navy);
  font-size: 15px;
  font-weight: 800;
}

.docs-empty,
.docs-loading {
  grid-column: 1 / -1;
  padding: 18px;
  border-radius: 8px;
  color: var(--adt-navy);
  background: var(--section-item, rgba(5, 22, 77, .56));
}

.upload-form {
  display: grid;
  gap: 16px;
}

.upload-form label {
  display: grid;
  gap: 7px;
  color: var(--section-accent, rgba(255, 255, 255, .84));
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.upload-form button {
  height: 46px;
  border: 0;
  border-radius: 4px;
  color: var(--adt-navy);
  background: #fff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.upload-note,
.upload-status {
  margin: 0;
  color: rgba(255, 255, 255, .9);
  line-height: 1.45;
}

@media (max-width: 760px) {
  .docs-toolbar {
    grid-template-columns: 1fr;
  }

  .docs-item {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 76px;
    padding: 12px 14px;
  }

  .docs-item__icon {
    width: 48px;
    height: 48px;
  }

  .docs-item__icon img {
    width: 34px;
    height: 34px;
  }

  .docs-item__text strong {
    font-size: 17px;
  }

  .docs-item__text small {
    font-size: 14px;
  }

}

/* Visible page scrollbars for portal sections. */
html,
body {
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 54, 95, .72) rgba(255, 255, 255, .38);
}

::-webkit-scrollbar {
  width: 11px;
  height: 11px;
  background: rgba(255, 255, 255, .22);
  display: block;
}

::-webkit-scrollbar-track,
::-webkit-scrollbar-track-piece {
  background: rgba(255, 255, 255, .38);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  min-height: 44px;
  border: 3px solid rgba(255, 255, 255, .38);
  border-radius: 999px;
  background: rgba(0, 54, 95, .72);
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 160, 173, .88);
  background-clip: padding-box;
}

.section-page,
.portal-shell {
  scrollbar-width: thin;
  scrollbar-color: var(--section-accent, var(--adt-teal)) rgba(255, 255, 255, .38);
}

/* Global typography policy: regular body copy, bold titles only. */
body {
  font-weight: 400;
}

p,
li,
dt,
dd,
td,
label,
small,
time,
input,
textarea,
select,
button,
summary,
:is(a, button, summary, [role="button"]),
:is(a, button, summary, [role="button"]) *,
[role="status"],
[class*="meta"],
[class*="status"],
[class*="count"],
[class*="kicker"],
[class*="label"],
[class*="badge"],
[class*="pill"],
.back-link,
.docs-back,
.docs-breadcrumb,
.docs-breadcrumb a,
.docs-item__icon,
.xref,
.effectivity,
.image-zoom,
.utc-clock {
  font-weight: 400 !important;
}

th,
thead td {
  font-weight: 700 !important;
}
