/* HLA-ISO-1 and UX-R1: controlled illustration and module-navigation layer. */
.gateway-main { width: min(880px, calc(100% - 2rem)); }
.gateway-illustration {
  width: min(880px, 100%);
  margin: clamp(1.5rem, 5vh, 3rem) auto 0;
}
.gateway-illustration img {
  display: block;
  width: 100%;
  height: auto;
}
.hla-module-shell { position: relative; }
.hla-module-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin: 0 0 1.25rem;
  border: 1px solid var(--line);
  background: var(--white);
  padding: .65rem;
}
.hla-module-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: .48rem;
  border: 1px solid transparent;
  padding: .58rem .72rem;
  color: var(--navy);
  font-size: .88rem;
  font-weight: 750;
  text-decoration: none;
}
.hla-module-nav a:hover,
.hla-module-nav a:focus-visible { border-color: var(--accent); }
.hla-module-nav a[aria-current="page"] {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
}
.hla-module-nav a[hidden] { display: none; }
.hla-module-icon { width: 1rem; height: 1rem; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: square; stroke-linejoin: miter; }
.hla-module-shell.hla-module-ready .portal-grid,
.hla-module-shell.hla-module-ready .portal-grid > div,
.hla-module-shell.hla-module-ready .portal-grid > aside { display: contents; }
.hla-module-shell.hla-module-ready [data-hla-module-panel] { display: none; }
.hla-module-shell.hla-module-ready [data-hla-module-panel].is-active:not([hidden]) { display: block; }
.hla-module-shell.hla-module-ready [data-hla-module-panel].is-active.hla-overview { display: grid; }
.hla-overview {
  grid-template-columns: minmax(0, 1.35fr) minmax(10rem, .65fr);
  gap: clamp(1.25rem, 4vw, 3rem);
  align-items: center;
}
.hla-overview__art { margin: 0; justify-self: end; width: min(15rem, 100%); }
.hla-overview__art img { display: block; width: 100%; height: auto; }
.hla-overview__links { display: flex; flex-wrap: wrap; gap: .55rem .9rem; margin-top: 1rem; }
.hla-overview__links a { color: var(--navy); font-weight: 750; text-underline-offset: .22rem; }
[data-hla-module-panel] > :is(h1,h2,h3):focus,
[data-hla-module-panel] .section-title > :is(h1,h2,h3):focus { outline: 3px solid var(--accent); outline-offset: 4px; }
@media (max-width: 700px) {
  .hla-module-nav { overflow-x: auto; flex-wrap: nowrap; scrollbar-width: thin; }
  .hla-module-nav a { flex: 0 0 auto; }
  .hla-overview { grid-template-columns: 1fr; }
  .hla-overview__art { justify-self: start; width: min(11rem, 55vw); }
  .gateway-illustration { width: min(100%, 680px); margin-top: 1.25rem; }
}
@media (max-width: 360px) {
  .hla-module-nav { margin-inline: -.25rem; padding-inline: .45rem; }
}
@media print {
  .hla-module-nav { display: none; }
}
