.airspace-section {
  position: relative;
  isolation: isolate;
  padding: clamp(72px, 9vw, 132px) clamp(18px, 4vw, 70px) clamp(52px, 7vw, 96px);
  color: var(--ivory);
  background:
    linear-gradient(180deg, rgba(8, 9, 10, 0.7), rgba(8, 9, 10, 0.96) 18%),
    radial-gradient(circle at 52% 5%, rgba(239, 169, 47, 0.08), transparent 35%),
    #0c0e0f;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.airspace-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  background:
    repeating-linear-gradient(90deg, transparent 0 199px, rgba(255, 255, 255, 0.045) 200px),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.025));
  pointer-events: none;
}

.airspace-inner {
  width: min(100%, 1420px);
  margin: 0 auto;
}

.airspace-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(28px, 4vw, 64px);
  margin-bottom: clamp(24px, 3vw, 40px);
}

.airspace-title-lockup {
  min-width: 0;
  flex: 1 1 43%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.airspace-title-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--amber);
  border: 1px solid var(--amber);
  border-radius: 6px;
  background: rgba(18, 20, 21, 0.88);
  box-shadow: inset 0 0 18px rgba(239, 169, 47, 0.06);
}

.airspace-title-icon svg {
  width: 30px;
  height: 30px;
}

.airspace-title-lockup h2 {
  margin: 0;
  color: var(--ivory);
  font-size: clamp(32px, 3.2vw, 54px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  text-shadow: 0 2px 2px #000;
  white-space: nowrap;
}

.airspace-status-rail {
  flex: 1 1 54%;
  min-height: 66px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  border: 1px solid #050606;
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    #181a1b;
  box-shadow:
    inset 0 0 0 2px #36393b,
    inset 0 0 0 6px #101112,
    0 12px 28px rgba(0, 0, 0, 0.38);
}

.airspace-status-item {
  min-height: 40px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--amber);
  font-family: "DM Mono", monospace;
  font-size: 11px;
  line-height: 1.25;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  white-space: nowrap;
}

.airspace-status-item + .airspace-status-item {
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.airspace-status-item svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.airspace-search {
  position: relative;
  z-index: 800;
  margin: 0 0 clamp(22px, 2.5vw, 34px);
}

.airspace-search-field {
  min-height: 60px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 0 8px 0 19px;
  border: 1px solid #050606;
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    #181a1b;
  box-shadow:
    inset 0 0 0 2px #36393b,
    inset 0 0 0 6px #101112,
    0 12px 28px rgba(0, 0, 0, 0.3);
}

.airspace-search-field > svg {
  width: 23px;
  height: 23px;
  color: var(--amber);
}

.airspace-search-field input {
  width: 100%;
  min-width: 0;
  height: 46px;
  border: 0;
  outline: 0;
  color: var(--ivory);
  background: transparent;
  font-family: "DM Mono", monospace;
  font-size: 14px;
  letter-spacing: 0.055em;
}

.airspace-search-field input::placeholder {
  color: #858680;
  opacity: 1;
}

.airspace-search-field input::-webkit-search-cancel-button {
  filter: invert(1);
  opacity: 0.58;
}

.airspace-search-field button {
  min-width: 112px;
  min-height: 44px;
  border: 1px solid rgba(239, 169, 47, 0.65);
  border-radius: 4px;
  color: var(--amber);
  background: #111314;
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  cursor: pointer;
}

.airspace-search-field button:hover,
.airspace-search-field button:focus-visible {
  color: #151617;
  background: var(--amber);
}

.airport-search-results {
  position: absolute;
  z-index: 900;
  top: 66px;
  left: 0;
  right: 0;
  max-height: 340px;
  overflow: auto;
  border: 1px solid rgba(239, 169, 47, 0.52);
  border-radius: 5px;
  background: rgba(12, 14, 15, 0.98);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(14px);
}

.airport-search-results[hidden] {
  display: none;
}

.airport-search-result {
  width: 100%;
  min-height: 62px;
  padding: 10px 16px;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: #d9d6cc;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.airport-search-result:last-child {
  border-bottom: 0;
}

.airport-search-result:hover,
.airport-search-result:focus-visible {
  outline: 0;
  background: rgba(239, 169, 47, 0.12);
}

.airport-search-result-code {
  color: var(--amber);
  font-family: "DM Mono", monospace;
  font-size: 16px;
  letter-spacing: 0.12em;
}

.airport-search-result-copy strong,
.airport-search-result-copy small {
  display: block;
}

.airport-search-result-copy strong {
  color: var(--ivory);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.035em;
}

.airport-search-result-copy small {
  margin-top: 3px;
  color: #8f908a;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.055em;
}

.airport-search-empty {
  margin: 0;
  padding: 20px;
  color: #a3a39d;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.055em;
}

.airport-search-empty.is-loading::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 10px;
  display: inline-block;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(239, 169, 47, 0.12);
  animation: route-pulse 1.2s ease-in-out infinite;
}

.airport-search-selection {
  min-height: 18px;
  margin: 9px 4px 0;
  color: #888983;
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.065em;
}

.airspace-map-frame {
  position: relative;
  padding: clamp(16px, 2vw, 28px);
  border: 2px solid #050606;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), transparent 30%),
    #1b1d1e;
  box-shadow:
    inset 0 0 0 3px #3a3d3f,
    inset 0 0 0 8px #0a0b0c,
    0 30px 70px rgba(0, 0, 0, 0.48);
}

.airspace-bolt {
  position: absolute;
  z-index: 5;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #73777a, #101112 54%, #000 57%);
  box-shadow: 0 0 0 1px #000;
}

.airspace-bolt.tl { top: 10px; left: 10px; }
.airspace-bolt.tr { top: 10px; right: 10px; }
.airspace-bolt.bl { bottom: 10px; left: 10px; }
.airspace-bolt.br { bottom: 10px; right: 10px; }

.airspace-map {
  position: relative;
  min-height: clamp(420px, 48vw, 660px);
  overflow: hidden;
  border: 1px solid #45484a;
  background:
    radial-gradient(circle at 61% 43%, rgba(21, 70, 83, 0.55), transparent 34%),
    radial-gradient(circle at 38% 54%, rgba(71, 83, 50, 0.62), transparent 39%),
    linear-gradient(145deg, #172625, #082a37 58%, #071b29);
  box-shadow:
    inset 0 5px 30px rgba(0, 0, 0, 0.82),
    inset 0 0 0 3px rgba(0, 0, 0, 0.52);
}

.airspace-map::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 7, 8, 0.46), transparent 13% 87%, rgba(3, 7, 8, 0.46)),
    linear-gradient(180deg, rgba(3, 7, 8, 0.42), transparent 18% 82%, rgba(3, 7, 8, 0.58));
}

.airspace-radar {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  opacity: 0.68;
  background:
    repeating-linear-gradient(90deg, transparent 0 79px, rgba(239, 169, 47, 0.055) 80px),
    repeating-linear-gradient(0deg, transparent 0 79px, rgba(239, 169, 47, 0.055) 80px),
    radial-gradient(circle at center, transparent 0 18%, rgba(239, 169, 47, 0.04) 18.3% 18.6%, transparent 18.9% 36%, rgba(239, 169, 47, 0.04) 36.3% 36.6%, transparent 36.9%);
}

.airspace-radar::before {
  content: "";
  position: absolute;
  left: 23%;
  top: -8%;
  width: 41%;
  height: 116%;
  opacity: 0.25;
  border-right: 2px solid rgba(239, 169, 47, 0.32);
  border-radius: 48% 52% 50% 44%;
  transform: rotate(6deg);
  box-shadow: 22px 0 38px rgba(11, 34, 24, 0.7);
}

.airspace-radar-sweep {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 48%;
  height: 2px;
  opacity: 0.45;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(239, 169, 47, 0.7), transparent);
  animation: radar-sweep 7s linear infinite;
}

.airspace-radar-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  border: 1px solid rgba(239, 169, 47, 0.16);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.airspace-radar-ring.ring-one {
  width: 32%;
  aspect-ratio: 1;
}

.airspace-radar-ring.ring-two {
  width: 62%;
  aspect-ratio: 1;
}

.airspace-radar-axis {
  position: absolute;
  left: 50%;
  top: 50%;
  background: rgba(239, 169, 47, 0.12);
}

.airspace-radar-axis.axis-x {
  width: 100%;
  height: 1px;
  transform: translate(-50%, -50%);
}

.airspace-radar-axis.axis-y {
  width: 1px;
  height: 100%;
  transform: translate(-50%, -50%);
}

.airspace-maa-point {
  position: absolute;
  left: 55%;
  top: 47%;
  width: 18px;
  height: 18px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(239, 169, 47, 0.1), 0 0 24px rgba(239, 169, 47, 0.42);
}

.airspace-maa-point::after {
  content: "MAA";
  position: absolute;
  left: 24px;
  top: -6px;
  color: var(--ivory);
  font-family: "DM Mono", monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
}

@keyframes radar-sweep {
  to { transform: rotate(360deg); }
}

.airspace-map-host {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity 500ms ease;
}

.airspace-map[data-map-ready="true"] .airspace-map-host {
  opacity: 1;
}

.airspace-map[data-map-ready="true"] .airspace-radar {
  opacity: 0;
}

.airspace-map-host .leaflet-container {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  color: #171819;
  background: #0b2028;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
}

.airspace-map-host .leaflet-tile-pane {
  filter: saturate(0.6) brightness(0.72) contrast(1.1);
}

.airspace-map-host .leaflet-control-zoom {
  overflow: hidden;
  border: 1px solid rgba(239, 169, 47, 0.62);
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.36);
}

.airspace-map-host .leaflet-control-zoom a {
  color: var(--amber);
  border-color: rgba(239, 169, 47, 0.28);
  background: rgba(12, 14, 15, 0.93);
  font-family: "DM Mono", monospace;
}

.airspace-map-host .leaflet-control-zoom a:hover,
.airspace-map-host .leaflet-control-zoom a:focus {
  color: #151617;
  background: var(--amber);
}

.airspace-map-host .leaflet-control-attribution {
  color: #bdb9ae;
  background: rgba(8, 10, 11, 0.86);
  font-family: "DM Mono", monospace;
  font-size: 9px;
}

.airspace-map-host .leaflet-control-attribution a {
  color: var(--amber);
}

.npk-aircraft-marker {
  border: 0;
  background: transparent;
}

.npk-aircraft-marker .aircraft-plane-symbol {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: #151617;
  border: 1px solid rgba(255, 220, 142, 0.92);
  border-radius: 50%;
  background: var(--amber);
  box-shadow:
    0 0 0 4px rgba(239, 169, 47, 0.14),
    0 6px 18px rgba(0, 0, 0, 0.42);
  transform: rotate(var(--aircraft-heading, 0deg));
  transform-origin: center;
  transition: transform 220ms ease;
}

.npk-aircraft-marker svg {
  width: 18px;
  height: 18px;
}

.airspace-map-host .leaflet-tooltip.npk-aircraft-label {
  padding: 4px 7px;
  color: var(--ivory);
  border: 1px solid rgba(239, 169, 47, 0.44);
  border-radius: 3px;
  background: rgba(10, 12, 13, 0.9);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.34);
  font-family: "DM Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.045em;
}

.airspace-map-host .leaflet-tooltip-top.npk-aircraft-label::before {
  border-top-color: rgba(239, 169, 47, 0.44);
}

.airspace-map-host .leaflet-popup-content-wrapper,
.airspace-map-host .leaflet-popup-tip {
  color: #dedbd2;
  border: 1px solid rgba(239, 169, 47, 0.35);
  background: #141617;
}

.airspace-map-host .leaflet-popup-pane {
  z-index: 900;
}

.airspace-map-host .leaflet-popup-content-wrapper {
  border-radius: 5px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.48);
}

.airspace-map-host .leaflet-popup-content {
  margin: 0;
}

.airspace-map-host .leaflet-popup-close-button {
  color: var(--amber);
}

.npk-maa-marker {
  border: 2px solid var(--amber);
  border-radius: 50%;
  background: rgba(239, 169, 47, 0.18);
  box-shadow:
    0 0 0 7px rgba(239, 169, 47, 0.1),
    0 0 24px rgba(239, 169, 47, 0.42);
}

.npk-airport-marker {
  border: 0;
  background: transparent;
}

.npk-airport-marker .airport-pin-core {
  width: 16px;
  height: 16px;
  display: block;
  border: 2px solid var(--amber);
  border-radius: 50%;
  background: rgba(15, 17, 18, 0.9);
  box-shadow:
    0 0 0 4px rgba(239, 169, 47, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.36);
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.npk-airport-marker.is-active .airport-pin-core {
  background: var(--amber);
  box-shadow:
    0 0 0 7px rgba(239, 169, 47, 0.16),
    0 0 24px rgba(239, 169, 47, 0.46);
  transform: scale(1.18);
}

.airspace-map-state {
  position: absolute;
  z-index: 4;
  left: clamp(18px, 3vw, 40px);
  bottom: clamp(18px, 3vw, 36px);
  max-width: min(560px, calc(100% - 190px));
  min-height: 72px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(239, 169, 47, 0.42);
  border-radius: 5px;
  background: rgba(12, 14, 15, 0.9);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(12px);
}

.airspace-map-state[hidden] {
  display: none;
}

.airspace-map-state-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  color: var(--amber);
  border: 1px solid rgba(239, 169, 47, 0.42);
  border-radius: 4px;
}

.airspace-map-state-icon svg {
  width: 24px;
  height: 24px;
}

.airspace-map-state strong,
.airspace-map-state span {
  display: block;
}

.airspace-map-state strong {
  color: var(--amber);
  font-family: "DM Mono", monospace;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.075em;
}

.airspace-map-state span {
  margin-top: 5px;
  color: #c7c5bd;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0.025em;
}

.airspace-center-chip {
  appearance: none;
  position: absolute;
  z-index: 700;
  right: clamp(16px, 2.3vw, 30px);
  bottom: clamp(18px, 3vw, 36px);
  min-height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--amber);
  border: 1px solid rgba(239, 169, 47, 0.68);
  border-radius: 5px;
  background: rgba(12, 14, 15, 0.88);
  font-family: "DM Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.075em;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.airspace-center-chip svg {
  width: 19px;
  height: 19px;
}

.airspace-center-chip:hover,
.airspace-center-chip:focus-visible {
  color: #151617;
  background: var(--amber);
}

.airspace-center-chip:focus-visible {
  outline: 3px solid rgba(239, 169, 47, 0.3);
  outline-offset: 3px;
}

.airspace-footer {
  min-height: 76px;
  padding: 20px clamp(8px, 2vw, 24px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  color: #a8a8a2;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.airspace-availability-note {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  letter-spacing: 0.025em;
}

.airspace-availability-note svg {
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  color: var(--amber);
}

.airspace-sources {
  display: flex;
  align-items: center;
  gap: 0;
}

.airspace-sources > span {
  min-width: 148px;
  padding: 0 24px;
}

.airspace-sources > span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.airspace-sources small,
.airspace-sources strong,
.airspace-sources a {
  display: block;
}

.airspace-sources small {
  color: #878883;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
}

.airspace-sources strong,
.airspace-sources a {
  margin-top: 4px;
  color: #dedbd2;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.025em;
  text-decoration: none;
}

.airspace-sources a:hover,
.airspace-sources a:focus-visible {
  color: var(--amber);
}

.airspace-legal-links {
  min-width: 106px !important;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.airspace-legal-links a {
  margin: 0;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.airspace-plane-popover {
  width: min(294px, calc(100vw - 74px));
  max-width: 294px;
  padding: 14px 16px;
  color: #dedbd2;
  font-family: "Barlow Condensed", "Arial Narrow", sans-serif;
}

.airspace-plane-popover > strong {
  display: block;
  margin-bottom: 7px;
  color: var(--amber);
  font-family: "DM Mono", monospace;
  font-size: 15px;
  letter-spacing: 0.08em;
}

.airspace-plane-popover dl {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 10px;
  font-size: 13px;
}

.airspace-plane-popover dt {
  color: #8e8f8b;
}

.airspace-plane-popover dd {
  margin: 0;
  text-align: right;
}

.airspace-flight-context {
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid rgba(239, 169, 47, 0.28);
}

.airspace-context-heading {
  display: block;
  margin-bottom: 7px;
  color: #8e8f8b;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.airspace-route-code {
  color: var(--amber);
  font-family: "DM Mono", monospace;
  font-size: 20px;
  letter-spacing: 0.11em;
  line-height: 1.1;
}

.airspace-route-airline {
  margin: 5px 0 0;
  color: #e6e1d5;
  font-size: 15px;
  letter-spacing: 0.035em;
}

.airspace-route-airports {
  margin-top: 8px;
}

.airspace-route-airports p,
.airspace-context-status,
.airspace-track-status {
  margin: 4px 0 0;
  color: #aaa9a3;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  line-height: 1.35;
  letter-spacing: 0.025em;
}

.airspace-context-status {
  font-size: 10px;
}

.airspace-context-status.is-loading::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px rgba(239, 169, 47, 0.12);
  animation: route-pulse 1.2s ease-in-out infinite;
}

.airspace-track-status {
  margin-top: 10px;
  padding-top: 8px;
  color: #d2cec3;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.airspace-context-source {
  margin-top: 7px;
  display: inline-block;
  color: var(--amber);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.airspace-context-source:hover,
.airspace-context-source:focus-visible {
  text-decoration: underline;
}

.airspace-map-host .leaflet-overlay-pane .npk-observed-track {
  filter: drop-shadow(0 0 4px rgba(239, 169, 47, 0.58));
}

.airspace-map-host .leaflet-overlay-pane .npk-planned-route {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.9));
}

@keyframes route-pulse {
  50% { opacity: 0.35; }
}

@media (max-width: 1120px) {
  .airspace-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .airspace-status-rail {
    width: 100%;
    flex-basis: auto;
    justify-content: center;
  }
}

@media (max-width: 760px) {
  .airspace-section {
    padding: 64px 12px 42px;
  }

  .airspace-title-lockup {
    gap: 13px;
  }

  .airspace-title-icon {
    width: 46px;
    height: 46px;
  }

  .airspace-title-icon svg {
    width: 25px;
    height: 25px;
  }

  .airspace-title-lockup h2 {
    font-size: clamp(28px, 8vw, 42px);
    line-height: 1;
    white-space: normal;
  }

  .airspace-status-rail {
    padding: 10px;
    align-items: stretch;
    flex-direction: column;
  }

  .airspace-status-item {
    min-height: 34px;
    padding: 0 10px;
  }

  .airspace-status-item + .airspace-status-item {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 0;
  }

  .airspace-map-frame {
    padding: 12px;
  }

  .airspace-search-field {
    grid-template-columns: auto minmax(0, 1fr);
    padding: 7px 10px 7px 16px;
  }

  .airspace-search-field button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .airport-search-results {
    top: 112px;
  }

  .airspace-map {
    min-height: 510px;
  }

  .airspace-map-state {
    left: 18px;
    right: 18px;
    bottom: 76px;
    max-width: none;
  }

  .airspace-center-chip {
    left: 18px;
    right: auto;
    bottom: 20px;
  }

  .airspace-footer {
    padding: 24px 8px;
    align-items: flex-start;
    flex-direction: column;
  }

  .airspace-sources {
    width: 100%;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .airspace-sources > span {
    min-width: 50%;
    padding: 10px 16px 10px 0;
  }

  .airspace-sources > span + span {
    border-left: 0;
  }

  .airspace-legal-links {
    width: 100%;
    min-width: 100% !important;
    flex-direction: row;
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 430px) {
  .airspace-map-state {
    padding: 12px;
  }

  .airspace-map-state-icon {
    display: none;
  }

  .airspace-availability-note {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .airspace-radar-sweep {
    animation: none;
  }

  .airspace-map-host {
    transition: none;
  }
}
