/* [project]/app/globals.css [app-client] (css) */
:root {
  --navy-950: #061a2e;
  --navy-900: #0a2a43;
  --navy-800: #0f3454;
  --navy-700: #16406a;
  --sky-600: #25699c;
  --sky-500: #2e7db3;
  --sky-400: #54a0cc;
  --sky-100: #dcecf7;
  --amber: #f2a33c;
  --amber-soft: #fbe3c0;
  --paper: #f4f8fb;
  --card: #fff;
  --line: #d8e4ee;
  --ink: #16324b;
  --ink-soft: #5e768a;
  --ink-faint: #8ca2b5;
  --white: #fff;
  --shadow-sm: 0 1px 2px #0a2a430f,0 2px 8px #0a2a430d;
  --shadow-md: 0 4px 16px #0a2a431a;
  --shadow-lg: 0 12px 32px #0a2a4329;
  --radius: 14px;
  --radius-sm: 9px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-family: Noto Sans SC, PingFang SC, Microsoft YaHei, sans-serif;
  font-size: 15px;
  line-height: 1.6;
}

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

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

button {
  cursor: pointer;
  color: inherit;
  background: none;
  border: none;
  font-family: inherit;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-thumb {
  background: #b9cddc;
  border-radius: 6px;
}

::-webkit-scrollbar-track {
  background: none;
}

.display {
  letter-spacing: .02em;
  font-family: Oswald, Noto Sans SC, sans-serif;
  font-weight: 600;
}

.topbar {
  z-index: 100;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: var(--white);
  background: #0a2a43f7;
  border-bottom: 1px solid #ffffff14;
  position: sticky;
  top: 0;
}

.topbar-inner {
  align-items: center;
  gap: 28px;
  max-width: 1240px;
  height: 64px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
}

.brand {
  flex: none;
  align-items: center;
  gap: 10px;
  display: flex;
}

.brand-mark {
  background: linear-gradient(135deg,var(--sky-400),var(--navy-700));
  color: #fff;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  display: flex;
  box-shadow: inset 0 0 0 1px #ffffff24;
}

.brand-name {
  letter-spacing: .01em;
  font-size: 16.5px;
  font-weight: 700;
}

.brand-name em {
  color: var(--amber);
  font-style: normal;
}

.topnav {
  flex: none;
  align-items: center;
  gap: 4px;
  display: flex;
}

.topnav a {
  color: #ffffffd1;
  white-space: nowrap;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  transition: background .15s, color .15s;
}

.topnav a:hover {
  color: #fff;
  background: #ffffff1a;
}

.topnav a.active {
  background: var(--amber);
  color: var(--navy-900);
  font-weight: 600;
}

.top-search {
  flex: none;
  width: 280px;
  margin-left: auto;
  position: relative;
}

.top-search input {
  color: #fff;
  background: #ffffff1a;
  border: 1px solid #ffffff38;
  border-radius: 19px;
  outline: none;
  width: 100%;
  height: 38px;
  padding: 0 40px 0 16px;
  font-family: inherit;
  font-size: 14px;
  transition: background .15s, border .15s;
}

.top-search input::placeholder {
  color: #ffffff8c;
}

.top-search input:focus {
  border-color: var(--amber);
  background: #ffffff2e;
}

.top-search svg {
  pointer-events: none;
  opacity: .7;
  position: absolute;
  top: 9px;
  right: 13px;
}

.suggest {
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  z-index: 120;
  background: #fff;
  border-radius: 12px;
  max-height: 380px;
  display: none;
  position: absolute;
  top: 46px;
  left: 0;
  right: 0;
  overflow: hidden auto;
}

.suggest.open {
  display: block;
}

.suggest-item {
  cursor: pointer;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  transition: background .12s;
  display: flex;
}

.suggest-item:hover {
  background: var(--sky-100);
}

.suggest-item .iata {
  color: var(--navy-800);
  letter-spacing: .03em;
  flex: none;
  width: 52px;
  font-family: Oswald, sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.suggest-item .nm {
  flex: 1;
  min-width: 0;
}

.suggest-item .nm b {
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 600;
  display: block;
  overflow: hidden;
}

.suggest-item .nm span {
  color: var(--ink-soft);
  font-size: 12px;
  display: block;
}

.suggest-item .flag {
  object-fit: cover;
  border-radius: 3px;
  flex: none;
  width: 26px;
  height: 17px;
  box-shadow: 0 0 0 1px #0a2a431a;
}

.suggest-empty {
  text-align: center;
  color: var(--ink-soft);
  padding: 16px;
  font-size: 13px;
}

.hero {
  color: #fff;
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.hero-bg {
  opacity: .62;
  background-position: center;
  background-size: cover;
  position: absolute;
  inset: 0;
}

.hero-veil {
  background: linear-gradient(180deg,#061a2ebd 0%,#0a2a4385 55%,var(--navy-900) 100%);
  position: absolute;
  inset: 0;
}

.hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 92px 24px 72px;
  position: relative;
}

.hero-eyebrow {
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--amber);
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-family: Oswald, sans-serif;
  font-size: 13px;
  display: inline-flex;
}

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

.hero h1 {
  letter-spacing: .01em;
  text-wrap: balance;
  max-width: 760px;
  font-size: clamp(34px, 5.2vw, 58px);
  font-weight: 900;
  line-height: 1.18;
}

.hero h1 .accent {
  color: var(--amber);
}

.hero-sub {
  color: #ffffffd1;
  max-width: 620px;
  margin-top: 18px;
  font-size: 16.5px;
  font-weight: 300;
}

.hero-search {
  max-width: 660px;
  margin-top: 34px;
  position: relative;
}

.hero-search input {
  width: 100%;
  height: 60px;
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  background: #fff;
  border: none;
  border-radius: 30px;
  outline: none;
  padding: 0 148px 0 26px;
  font-family: inherit;
  font-size: 16.5px;
}

.hero-search input::placeholder {
  color: var(--ink-faint);
}

.hero-search .suggest.hero-suggest {
  color: var(--ink);
  top: 68px;
}

.hero-search .suggest.hero-suggest .suggest-empty {
  color: var(--ink-soft);
}

.hero-search button {
  background: var(--amber);
  color: var(--navy-900);
  letter-spacing: .04em;
  border-radius: 24px;
  padding: 0 26px;
  font-size: 15.5px;
  font-weight: 700;
  transition: filter .15s;
  position: absolute;
  top: 6px;
  bottom: 6px;
  right: 6px;
}

.hero-search button:hover {
  filter: brightness(1.06);
}

.hero-stats {
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: #ffffff0f;
  border: 1px solid #ffffff29;
  flex-wrap: wrap;
  gap: 0;
  max-width: 560px;
  margin-top: 44px;
  display: flex;
  overflow: hidden;
}

.hero-stat {
  border-right: 1px solid #ffffff24;
  flex: 1;
  min-width: 130px;
  padding: 18px 22px;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat .num {
  color: #fff;
  font-family: Oswald, sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
}

.hero-stat .num em {
  color: var(--amber);
  font-style: normal;
}

.hero-stat .lbl {
  color: #ffffffad;
  letter-spacing: .04em;
  margin-top: 3px;
  font-size: 12.5px;
}

.hero-map-deco {
  opacity: .9;
  filter: drop-shadow(0 12px 40px #00000059);
  pointer-events: none;
  width: 340px;
  position: absolute;
  bottom: 64px;
  right: 28px;
}

@media (max-width: 1100px) {
  .hero-map-deco {
    display: none;
  }
}

.section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 64px 24px 8px;
}

.section-head {
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 28px;
  display: flex;
}

.section-kicker {
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--sky-600);
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  font-family: Oswald, sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  display: inline-flex;
}

.section-kicker:before {
  content: "";
  background: var(--amber);
  width: 26px;
  height: 2px;
}

.section-title {
  letter-spacing: .01em;
  color: var(--navy-900);
  font-size: 27px;
  font-weight: 900;
}

.section-title .en {
  color: var(--ink-faint);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-left: 12px;
  font-family: Oswald, sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.section-more {
  color: var(--sky-600);
  white-space: nowrap;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  transition: gap .15s;
  display: inline-flex;
}

.section-more:hover {
  gap: 10px;
}

.popular-grid {
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  display: grid;
}

.popular-card {
  border-radius: var(--radius);
  background: var(--navy-900);
  color: #fff;
  cursor: pointer;
  min-height: 236px;
  box-shadow: var(--shadow-sm);
  isolation: isolate;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: transform .18s, box-shadow .18s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.popular-card:before {
  content: "";
  z-index: -1;
  background: radial-gradient(120% 90% at 85% -10%, #2e7db38c 0%, #0000 55%), radial-gradient(90% 70% at 10% 110%, #f2a33c29 0%, #0000 55%);
  position: absolute;
  inset: 0;
}

.popular-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.popular-rank {
  color: var(--amber);
  letter-spacing: .18em;
  font-family: Oswald, sans-serif;
  font-size: 13px;
  font-weight: 600;
  position: absolute;
  top: 14px;
  left: 16px;
}

.popular-card .iata {
  color: #fffffff5;
  letter-spacing: .02em;
  margin-bottom: 8px;
  font-family: Oswald, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}

.popular-card .city {
  font-size: 16px;
  font-weight: 700;
}

.popular-card .airport {
  color: #ffffffa8;
  white-space: nowrap;
  text-overflow: ellipsis;
  margin-top: 2px;
  font-size: 12.5px;
  overflow: hidden;
}

.popular-card .go {
  color: var(--amber);
  letter-spacing: .05em;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 600;
  display: inline-flex;
}

.popular-card .go svg {
  transition: transform .15s;
}

.popular-card:hover .go svg {
  transform: translateX(4px);
}

.update-list {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  overflow: hidden;
}

.update-row {
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  align-items: center;
  gap: 16px;
  padding: 15px 22px;
  transition: background .13s;
  display: flex;
}

.update-row:last-child {
  border-bottom: none;
}

.update-row:hover {
  background: var(--sky-100);
}

.update-no {
  color: var(--ink-faint);
  flex: none;
  width: 30px;
  font-family: Oswald, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.update-iata {
  color: var(--navy-800);
  letter-spacing: .04em;
  flex: none;
  width: 78px;
  font-family: Oswald, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.update-name {
  flex: 1;
  min-width: 0;
}

.update-name b {
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 15px;
  font-weight: 600;
  display: block;
  overflow: hidden;
}

.update-name span {
  color: var(--ink-soft);
  font-size: 12.5px;
}

.update-flag {
  object-fit: cover;
  border-radius: 4px;
  flex: none;
  width: 34px;
  height: 22px;
  box-shadow: 0 0 0 1px #0a2a431a;
}

.update-tag {
  color: var(--sky-600);
  background: var(--sky-100);
  letter-spacing: .05em;
  border-radius: 20px;
  flex: none;
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: 600;
}

.country-grid {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  display: grid;
}

.country-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  align-items: center;
  gap: 14px;
  padding: 18px;
  transition: transform .16s, box-shadow .16s, border-color .16s;
  display: flex;
}

.country-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--sky-400);
  transform: translateY(-3px);
}

.country-flag {
  object-fit: cover;
  width: 52px;
  height: 34px;
  box-shadow: 0 0 0 1px #0a2a431a,var(--shadow-sm);
  border-radius: 6px;
  flex: none;
}

.country-info {
  flex: 1;
  min-width: 0;
}

.country-info b {
  color: var(--navy-900);
  font-size: 15.5px;
  font-weight: 700;
  display: block;
}

.country-info span {
  color: var(--ink-soft);
  font-size: 12.5px;
}

.country-card .cnt {
  color: var(--sky-600);
  background: var(--sky-100);
  border-radius: 16px;
  flex: none;
  padding: 3px 10px;
  font-family: Oswald, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.airport-table {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.table-head, .airport-row {
  grid-template-columns: 92px 1.5fr 1fr 1fr 96px 92px;
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
  display: grid;
}

.table-head {
  background: var(--navy-900);
  color: #ffffffc7;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.airport-row {
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background .12s;
}

.airport-row:last-child {
  border-bottom: none;
}

.airport-row:hover {
  background: var(--sky-100);
}

.airport-row .iata {
  color: var(--navy-800);
  letter-spacing: .04em;
  font-family: Oswald, sans-serif;
  font-size: 20px;
  font-weight: 600;
}

.airport-row .nm b {
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14.5px;
  font-weight: 600;
  display: block;
  overflow: hidden;
}

.airport-row .nm span {
  color: var(--ink-soft);
  font-size: 12px;
}

.airport-row .flag {
  object-fit: cover;
  border-radius: 3px;
  width: 30px;
  height: 20px;
  box-shadow: 0 0 0 1px #0a2a431a;
}

.airport-row .meta {
  color: var(--ink-soft);
  font-size: 13px;
}

.airport-row .btn {
  color: var(--sky-600);
  text-align: right;
  white-space: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.airport-row .btn svg {
  transition: transform .15s;
}

.airport-row:hover .btn svg {
  transform: translateX(3px);
}

@media (max-width: 860px) {
  .table-head {
    display: none;
  }

  .airport-row {
    grid-template-columns: 70px 1fr auto;
    padding: 13px 18px;
  }

  .airport-row .meta {
    display: none;
  }
}

.footer {
  background: var(--navy-950);
  color: #ffffffc7;
  margin-top: 72px;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 52px 24px 30px;
}

.footer-cols {
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-bottom: 36px;
  display: grid;
}

.footer h4 {
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 14px;
  font-family: Oswald, sans-serif;
  font-size: 13px;
  font-weight: 600;
}

.footer p {
  color: #ffffff9e;
  font-size: 13.5px;
  line-height: 1.8;
}

.footer-bottom {
  color: #ffffff73;
  border-top: 1px solid #ffffff1a;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 22px;
  font-size: 12.5px;
  display: flex;
}

.footer-bottom .brand-name {
  font-size: 14px;
}

@media (max-width: 760px) {
  .footer-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.page-head {
  background: var(--navy-900);
  color: #fff;
  background-image: radial-gradient(90% 130% at 85% -20%, #2e7db380 0%, #0000 60%);
}

.page-head-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 46px 24px 40px;
}

.crumb {
  color: #ffffff9e;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 13px;
  display: flex;
}

.crumb a:hover {
  color: var(--amber);
}

.crumb .sep {
  opacity: .5;
}

.country-hero {
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
  display: flex;
}

.country-hero .flag {
  object-fit: cover;
  width: 96px;
  height: 64px;
  box-shadow: 0 0 0 1px #ffffff2e,var(--shadow-lg);
  border-radius: 10px;
}

.country-hero h1 {
  letter-spacing: .01em;
  font-size: 34px;
  font-weight: 900;
}

.country-hero .sub {
  color: #ffffffa8;
  margin-top: 6px;
  font-size: 14px;
}

.country-hero .iata-chip {
  letter-spacing: .18em;
  color: var(--amber);
  border: 1px solid #f2a33c73;
  border-radius: 20px;
  margin-top: 10px;
  padding: 5px 12px;
  font-family: Oswald, sans-serif;
  font-size: 12px;
  display: inline-block;
}

.country-airports {
  max-width: 1240px;
  margin: 0 auto;
  padding: 46px 24px 20px;
}

.cairport-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
  display: grid;
}

.cairport-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
  padding: 22px;
  transition: transform .16s, box-shadow .16s, border-color .16s;
  display: flex;
}

.cairport-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--sky-400);
  transform: translateY(-3px);
}

.cairport-card .top {
  align-items: center;
  gap: 14px;
  display: flex;
}

.cairport-card .iata {
  color: var(--navy-800);
  font-family: Oswald, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.cairport-card .nm b {
  font-size: 15.5px;
  font-weight: 700;
  display: block;
}

.cairport-card .nm span {
  color: var(--ink-soft);
  font-size: 12.5px;
}

.cairport-card .facts {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  display: flex;
}

.cairport-card .fact {
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 12px;
}

.cairport-card .foot {
  border-top: 1px dashed var(--line);
  justify-content: space-between;
  align-items: center;
  margin-top: 14px;
  padding-top: 12px;
  display: flex;
}

.cairport-card .map-mini {
  color: var(--sky-600);
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.cairport-card .map-mini svg {
  transition: transform .15s;
}

.cairport-card:hover .map-mini svg {
  transform: translateX(3px);
}

.cairport-card .zone {
  letter-spacing: .14em;
  color: var(--ink-faint);
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 11.5px;
}

.ap-head {
  background: var(--navy-900);
  color: #fff;
  background-image: radial-gradient(80% 120% at 90% -30%, #2e7db380 0%, #0000 55%), radial-gradient(60% 90% at 0 120%, #f2a33c21 0%, #0000 50%);
}

.ap-head-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 44px 24px 38px;
}

.ap-title-row {
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px;
  display: flex;
}

.ap-iata {
  color: var(--amber);
  letter-spacing: .04em;
  text-shadow: 0 4px 24px #f2a33c47;
  flex: none;
  font-family: Oswald, sans-serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 1;
}

.ap-title {
  flex: 1;
  min-width: 260px;
  padding-top: 4px;
}

.ap-title h1 {
  font-size: 29px;
  font-weight: 900;
  line-height: 1.25;
}

.ap-title .city {
  color: #ffffffad;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 14.5px;
  display: flex;
}

.ap-title .city .flag {
  object-fit: cover;
  border-radius: 3px;
  width: 26px;
  height: 17px;
  box-shadow: 0 0 0 1px #fff3;
}

.ap-facts {
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 26px;
  display: grid;
}

.ap-fact {
  border-radius: var(--radius-sm);
  background: #ffffff12;
  border: 1px solid #ffffff24;
  padding: 14px 16px;
}

.ap-fact .num {
  font-family: Oswald, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
}

.ap-fact .lbl {
  color: #fff9;
  letter-spacing: .04em;
  margin-top: 3px;
  font-size: 12px;
}

@media (max-width: 760px) {
  .ap-facts {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ap-body {
  max-width: 1240px;
  margin: 0 auto;
  padding: 44px 24px 10px;
}

.ap-desc {
  color: var(--ink);
  max-width: 860px;
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.85;
}

.map-panel {
  background: var(--navy-900);
  box-shadow: var(--shadow-lg);
  border-radius: 20px;
  margin: 30px 0;
  padding: 26px 26px 20px;
  position: relative;
  overflow: hidden;
}

.map-panel:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(100% 80% at 85% -20%, #2e7db359 0%, #0000 60%);
  position: absolute;
  inset: 0;
}

.map-panel-head {
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  display: flex;
  position: relative;
}

.map-panel-title {
  color: #fff;
  letter-spacing: .22em;
  text-transform: uppercase;
  align-items: center;
  gap: 12px;
  font-family: Oswald, sans-serif;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}

.map-panel-title .dot {
  background: var(--amber);
  border-radius: 50%;
  width: 10px;
  height: 10px;
  box-shadow: 0 0 0 4px #f2a33c38;
}

.map-panel-note {
  color: #ffffff80;
  letter-spacing: .06em;
  font-size: 12px;
}

.map-svg-wrap {
  z-index: 2;
  border-radius: 12px;
  position: relative;
  overflow-x: auto;
}

.map-svg-wrap svg {
  background: var(--navy-950);
  border-radius: 12px;
  width: 100%;
  min-width: 640px;
  height: auto;
  display: block;
}

.map-legend {
  z-index: 2;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 16px;
  display: flex;
  position: relative;
}

.map-legend-item {
  color: #ffffffa8;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  display: flex;
}

.map-legend-item .sw {
  border-radius: 4px;
  width: 14px;
  height: 14px;
  display: inline-block;
}

.terminal-list {
  flex-direction: column;
  gap: 14px;
  margin: 26px 0 8px;
  display: flex;
}

.terminal-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-items: flex-start;
  gap: 20px;
  padding: 20px 22px;
  transition: border-color .15s, box-shadow .15s;
  display: flex;
}

.terminal-card:hover {
  border-color: var(--sky-400);
  box-shadow: var(--shadow-md);
}

.terminal-badge {
  background: var(--navy-900);
  color: #fff;
  letter-spacing: .03em;
  width: 74px;
  height: 74px;
  box-shadow: var(--shadow-md);
  border-radius: 14px;
  flex: none;
  justify-content: center;
  align-items: center;
  font-family: Oswald, sans-serif;
  font-size: 24px;
  font-weight: 600;
  display: flex;
}

.terminal-badge.gates {
  background: var(--amber);
  color: var(--navy-900);
}

.terminal-main {
  flex: 1;
  min-width: 0;
}

.terminal-main h3 {
  color: var(--navy-900);
  font-size: 16.5px;
  font-weight: 700;
}

.terminal-main .gates {
  letter-spacing: .08em;
  color: var(--sky-600);
  margin-top: 3px;
  font-family: Oswald, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.terminal-main .airlines {
  color: var(--ink-soft);
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.7;
}

.terminal-main .airlines b {
  color: var(--ink);
  font-weight: 600;
}

.terminal-fac {
  border-left: 1px dashed var(--line);
  flex-direction: column;
  flex: none;
  gap: 8px;
  padding-left: 20px;
  display: flex;
}

.terminal-fac span {
  color: var(--ink-soft);
  white-space: nowrap;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  display: inline-flex;
}

.terminal-fac svg {
  color: var(--sky-500);
  flex: none;
}

@media (max-width: 760px) {
  .terminal-card {
    flex-wrap: wrap;
  }

  .terminal-fac {
    border-left: none;
    flex-flow: wrap;
    padding-left: 0;
  }
}

.two-col {
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  margin-top: 26px;
  display: grid;
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.info-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.info-panel h3 {
  color: var(--navy-900);
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.info-panel h3 svg {
  color: var(--sky-500);
}

.transit-list {
  flex-direction: column;
  gap: 12px;
  display: flex;
}

.transit-row {
  align-items: center;
  gap: 14px;
  display: flex;
}

.transit-icon {
  background: var(--sky-100);
  width: 42px;
  height: 42px;
  color: var(--sky-600);
  border-radius: 11px;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.transit-row b {
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.transit-row span {
  color: var(--ink-soft);
  font-size: 12.5px;
}

.fac-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  display: grid;
}

.fac-item {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 13px;
  display: flex;
}

.fac-item svg {
  color: var(--sky-500);
  flex: none;
}

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

.related {
  max-width: 1240px;
  margin: 0 auto;
  padding: 36px 24px 10px;
}

.related h3 {
  color: var(--navy-900);
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 19px;
  font-weight: 700;
  display: flex;
}

.related h3 .en {
  color: var(--ink-faint);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.related-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px;
  display: grid;
}

.related-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  transition: border-color .15s, transform .15s;
  display: flex;
}

.related-card:hover {
  border-color: var(--sky-400);
  transform: translateY(-2px);
}

.related-card .iata {
  color: var(--navy-800);
  flex: none;
  width: 52px;
  font-family: Oswald, sans-serif;
  font-size: 17px;
  font-weight: 600;
}

.related-card .nm b {
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13.5px;
  font-weight: 600;
  display: block;
  overflow: hidden;
}

.related-card .nm span {
  color: var(--ink-soft);
  font-size: 12px;
}

.empty-state {
  text-align: center;
  color: var(--ink-soft);
  padding: 56px 24px;
}

.empty-state .big {
  color: var(--sky-100);
  letter-spacing: .1em;
  font-family: Oswald, sans-serif;
  font-size: 44px;
  font-weight: 600;
}

.empty-state p {
  margin-top: 8px;
  font-size: 14px;
}

.back-top {
  background: var(--navy-900);
  color: #fff;
  width: 46px;
  height: 46px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  z-index: 90;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: opacity .2s;
  display: flex;
  position: fixed;
  bottom: 26px;
  right: 26px;
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
}

.back-top:hover {
  background: var(--navy-700);
}

.sec-sub {
  color: var(--ink-soft);
  max-width: 700px;
  margin-top: 6px;
  font-size: 14px;
}

@media (max-width: 1080px) {
  .popular-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .topnav a {
    padding: 8px 9px;
    font-size: 13.5px;
  }

  .top-search {
    width: 210px;
  }
}

@media (max-width: 820px) {
  .top-search, .topnav {
    display: none;
  }

  .topbar-inner {
    justify-content: space-between;
  }

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

  .section {
    padding-top: 46px;
  }

  .hero-inner {
    padding: 64px 20px 52px;
  }

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

  .hero-search input {
    padding-right: 120px;
    font-size: 15px;
  }

  .hero-search button {
    padding: 0 18px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .popular-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .popular-card {
    min-height: 190px;
    padding: 15px;
  }

  .popular-card .iata {
    font-size: 30px;
  }

  .country-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .airport-row {
    grid-template-columns: 64px 1fr auto;
  }

  .ap-iata {
    font-size: 54px;
  }

  .ap-title h1 {
    font-size: 23px;
  }

  .hero-search button {
    display: none;
  }

  .hero-search input {
    padding: 0 22px;
  }
}

/* [project]/app/additions.css [app-client] (css) */
.sr-only {
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  overflow: hidden;
}

.airport-row .nm {
  min-width: 0;
}

@media (max-width: 860px) {
  .airport-row .flag {
    display: none;
  }
}

.mobile-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  display: none;
}

.mobile-bar input {
  border: 1px solid var(--line);
  background: var(--card);
  width: 100%;
  height: 40px;
  color: var(--ink);
  border-radius: 20px;
  outline: none;
  padding: 0 40px 0 16px;
  font-family: inherit;
  font-size: 14px;
}

.mobile-bar input:focus {
  border-color: var(--sky-500);
  box-shadow: 0 0 0 3px #2e7db326;
}

.mobile-bar .wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 10px 16px;
  position: relative;
}

.mobile-bar svg {
  pointer-events: none;
  opacity: .5;
  position: absolute;
  top: 19px;
  right: 29px;
}

@media (max-width: 820px) {
  .topbar-inner {
    flex-wrap: wrap;
    gap: 8px;
    height: auto;
    padding: 10px 14px;
  }

  .brand {
    order: 1;
  }

  .topnav {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    order: 3;
    gap: 6px;
    width: 100%;
    padding-bottom: 2px;
    display: flex;
    overflow-x: auto;
  }

  .topnav::-webkit-scrollbar {
    display: none;
  }

  .topnav a {
    background: #ffffff14;
    border-radius: 20px;
    padding: 7px 12px;
    font-size: 13px;
  }

  .brand-name {
    font-size: 15px;
  }

  .mobile-bar {
    display: block;
  }
}

@media (min-width: 821px) {
  .mobile-bar {
    display: none;
  }
}

.filterbar {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 14px 16px;
  display: flex;
}

.filterbar .group {
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  display: flex;
}

.filterbar .label {
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-right: 2px;
  font-family: Oswald, sans-serif;
  font-size: 11.5px;
}

.chip {
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-soft);
  white-space: nowrap;
  border-radius: 20px;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 13px;
  transition: background .14s, color .14s, border-color .14s;
  display: inline-flex;
}

.chip:hover {
  border-color: var(--sky-400);
  color: var(--sky-600);
  background: #fff;
}

.chip.on {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #fff;
  font-weight: 600;
}

.chip .n {
  opacity: .65;
  font-family: Oswald, sans-serif;
  font-size: 12px;
}

.filterbar form {
  flex: 1;
  gap: 8px;
  min-width: 220px;
  display: flex;
}

.filterbar input[type="search"] {
  border: 1px solid var(--line);
  background: var(--paper);
  min-width: 0;
  height: 38px;
  color: var(--ink);
  border-radius: 19px;
  outline: none;
  flex: 1;
  padding: 0 16px;
  font-family: inherit;
  font-size: 14px;
}

.filterbar input[type="search"]:focus {
  border-color: var(--sky-500);
  background: #fff;
}

.filterbar button[type="submit"] {
  background: var(--sky-600);
  color: #fff;
  border-radius: 19px;
  height: 38px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 600;
  transition: background .14s;
}

.filterbar button[type="submit"]:hover {
  background: var(--navy-700);
}

.pager {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 26px 0 8px;
  display: flex;
}

.pager a, .pager span {
  border: 1px solid var(--line);
  background: var(--card);
  min-width: 38px;
  height: 38px;
  color: var(--ink-soft);
  letter-spacing: .03em;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: 0 12px;
  font-family: Oswald, sans-serif;
  font-size: 14px;
  display: inline-flex;
}

.pager a:hover {
  border-color: var(--sky-400);
  color: var(--sky-600);
}

.pager .on {
  background: var(--navy-800);
  border-color: var(--navy-800);
  color: #fff;
  font-weight: 600;
}

.pager .gap {
  background: none;
  border: none;
}

.pager .off {
  opacity: .45;
}

.result-note {
  color: var(--ink-soft);
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 13.5px;
  display: flex;
}

.result-note b {
  color: var(--ink);
  font-weight: 600;
}

.popular-card .city-airports {
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
  display: flex;
}

.popular-card .city-airports span {
  letter-spacing: .06em;
  color: #ffffffdb;
  background: #ffffff21;
  border-radius: 5px;
  padding: 3px 7px;
  font-family: Oswald, sans-serif;
  font-size: 11px;
}

.popular-card .city-airports span.lead {
  background: var(--amber);
  color: var(--navy-900);
  font-weight: 600;
}

.faq {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq details:last-child {
  border-bottom: none;
}

.faq summary {
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  font-size: 15px;
  font-weight: 600;
  list-style: none;
  transition: background .14s;
  display: flex;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary:hover {
  background: var(--sky-100);
}

.faq summary:after {
  content: "+";
  color: var(--sky-600);
  flex: none;
  font-family: Oswald, sans-serif;
  font-size: 19px;
  line-height: 1;
}

.faq details[open] summary:after {
  content: "–";
}

.faq .a {
  color: var(--ink-soft);
  padding: 0 22px 18px;
  font-size: 14.5px;
  line-height: 1.75;
}

.faq .a b {
  color: var(--ink);
  font-weight: 600;
}

.md {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.85;
}

.md > :first-child {
  margin-top: 0;
}

.md > :last-child {
  margin-bottom: 0;
}

.md h2 {
  color: var(--navy-900);
  border-bottom: 1px solid var(--line);
  margin: 30px 0 12px;
  padding-bottom: 8px;
  font-size: 20px;
  font-weight: 800;
}

.md h3 {
  color: var(--navy-900);
  margin: 24px 0 10px;
  font-size: 16.5px;
  font-weight: 700;
}

.md h4 {
  color: var(--navy-800);
  margin: 20px 0 8px;
  font-size: 15px;
  font-weight: 700;
}

.md p {
  margin: 0 0 14px;
}

.md strong {
  color: var(--navy-900);
  font-weight: 700;
}

.md em {
  font-style: italic;
}

.md a {
  color: var(--sky-600);
  text-underline-offset: 2px;
  font-weight: 500;
  text-decoration: underline;
}

.md a:hover {
  color: var(--navy-700);
}

.md ul, .md ol {
  margin: 0 0 14px;
  padding-left: 22px;
}

.md li {
  margin-bottom: 6px;
}

.md li > ul, .md li > ol {
  margin-top: 6px;
  margin-bottom: 0;
}

.md blockquote {
  border-left: 3px solid var(--amber);
  background: var(--sky-100);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--ink-soft);
  margin: 0 0 16px;
  padding: 12px 18px;
}

.md blockquote > :last-child {
  margin-bottom: 0;
}

.md code {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1px 5px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
}

.md pre {
  background: var(--navy-950);
  color: #ffffffe6;
  border-radius: var(--radius-sm);
  margin: 0 0 16px;
  padding: 14px 16px;
  overflow-x: auto;
}

.md pre code {
  color: inherit;
  background: none;
  border: none;
  padding: 0;
  font-size: 12.5px;
}

.md hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 26px 0;
}

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

.md table {
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  width: 100%;
  margin: 0 0 18px;
  font-size: 14px;
  overflow: hidden;
}

.md thead {
  background: var(--navy-900);
  color: #ffffffd9;
}

.md th {
  text-align: left;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 11px 14px;
  font-family: Oswald, sans-serif;
  font-size: 12px;
  font-weight: 600;
}

.md td {
  border-top: 1px solid var(--line);
  vertical-align: top;
  padding: 11px 14px;
}

.md tbody tr:nth-child(2n) {
  background: var(--paper);
}

.md-wrap {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px 30px;
}

@media (max-width: 640px) {
  .md-wrap {
    padding: 20px 18px;
  }
}

.transit-row .transit-icon {
  color: var(--sky-600);
}

.footer-links {
  border-top: 1px solid #ffffff1a;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 22px;
  padding-top: 20px;
  display: flex;
}

.footer-links a {
  color: #ffffffb8;
  font-size: 13.5px;
  transition: color .14s;
}

.footer-links a:hover {
  color: var(--amber);
}

.crumb {
  flex-wrap: wrap;
}

.page-head .country-hero {
  align-items: flex-start;
}

.hub-list {
  flex-direction: column;
  gap: 10px;
  display: flex;
}

.hub-row {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  align-items: center;
  gap: 14px;
  padding: 13px 18px;
  transition: border-color .14s;
  display: flex;
}

.hub-row:hover {
  border-color: var(--sky-400);
}

.hub-row .iata {
  color: var(--navy-800);
  letter-spacing: .04em;
  flex: none;
  width: 52px;
  font-family: Oswald, sans-serif;
  font-size: 18px;
  font-weight: 600;
}

.hub-row .nm {
  flex: 1;
  min-width: 0;
}

.hub-row .nm b {
  font-size: 14.5px;
  font-weight: 600;
  display: block;
}

.hub-row .nm span {
  color: var(--ink-soft);
  font-size: 12.5px;
}

.hub-row .km {
  color: var(--ink-faint);
  flex: none;
  font-family: Oswald, sans-serif;
  font-size: 13px;
}

.section-head .sec-sub {
  max-width: 760px;
}

.lang {
  flex: none;
  position: relative;
}

.lang-toggle {
  color: #ffffffe6;
  white-space: nowrap;
  background: #ffffff1a;
  border: 1px solid #ffffff38;
  border-radius: 18px;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 12px;
  font-size: 13.5px;
  font-weight: 500;
  transition: background .15s, border-color .15s;
  display: inline-flex;
}

.lang-toggle:hover {
  border-color: var(--amber);
  background: #ffffff2e;
}

.lang-toggle svg {
  opacity: .7;
  transition: transform .15s;
}

.lang[data-open="true"] .lang-toggle svg {
  transform: rotate(180deg);
}

.lang-menu {
  z-index: 130;
  min-width: 150px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  position: absolute;
  top: 42px;
  right: 0;
  overflow: hidden;
}

.lang-menu a {
  color: var(--ink);
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-size: 14px;
  transition: background .12s;
  display: flex;
}

.lang-menu a:hover {
  background: var(--sky-100);
}

.lang-menu a[aria-current="true"] {
  color: var(--navy-800);
  background: var(--sky-100);
  font-weight: 700;
}

.lang-menu .code {
  letter-spacing: .1em;
  color: var(--ink-faint);
  text-transform: uppercase;
  font-family: Oswald, sans-serif;
  font-size: 11px;
}

@media (max-width: 820px) {
  .lang-toggle {
    padding: 0 10px;
    font-size: 13px;
  }

  .lang-menu {
    top: 38px;
  }
}

.guide-head {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  display: flex;
}

.guide-meta {
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-family: Oswald, sans-serif;
  font-size: 12px;
}

.country-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
}

.country-card, .country-info {
  min-width: 0;
}

.country-info b, .country-info span {
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
}

.country-card .cnt {
  white-space: nowrap;
  text-overflow: ellipsis;
  flex: 0 auto;
  min-width: 0;
  overflow: hidden;
}

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

@media (max-width: 760px) {
  .terminal-fac {
    width: 100%;
    min-width: 0;
  }
}

.md-table-scroll {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  margin: 0 0 18px;
  overflow-x: auto;
}

.md-table-scroll table {
  border: none;
  border-radius: 0;
  margin: 0;
}

.section-head > div {
  min-width: 0;
}

@media (max-width: 640px) {
  .section-head {
    flex-wrap: wrap;
    align-items: flex-start;
    row-gap: 10px;
  }

  .section-more {
    flex: none;
  }
}

.cairport-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
}

.related-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(220px, 100%), 1fr));
}

@media (max-width: 480px) {
  .popular-grid, .ap-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.popular-card, .ap-fact, .related-card .nm {
  min-width: 0;
}

.related-card .nm b {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

@media (max-width: 640px) {
  .update-tag, .update-tag, .update-flag {
    display: none;
  }

  .update-row {
    gap: 12px;
    padding: 13px 16px;
  }

  .update-no {
    width: 22px;
  }

  .update-iata {
    width: 58px;
    font-size: 18px;
  }
}

.hero-inner {
  text-align: center;
}

.hero h1, .hero-sub {
  margin-left: auto;
  margin-right: auto;
}

.hero-eyebrow {
  justify-content: center;
}

.hero-search {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  margin-left: auto;
  margin-right: auto;
}

.hero-shortcuts {
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  display: flex;
}

.hero-shortcuts a {
  color: #ffffffe6;
  background: #ffffff1a;
  border: 1px solid #ffffff3d;
  border-radius: 20px;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  font-size: 13px;
  transition: background .15s, border-color .15s;
  display: inline-flex;
}

.hero-shortcuts a:hover {
  border-color: var(--amber);
  background: #fff3;
}

.hero-shortcuts .code {
  letter-spacing: .05em;
  color: var(--amber);
  font-family: Oswald, sans-serif;
  font-weight: 600;
}

@media (max-width: 520px) {
  .hero-shortcuts {
    gap: 6px;
  }

  .hero-shortcuts a {
    padding: 5px 11px;
    font-size: 12.5px;
  }
}

.cat-section {
  background: var(--card);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.cat-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  align-items: flex-start;
  gap: 14px;
  min-height: 126px;
  padding: 20px 22px;
  transition: transform .16s, box-shadow .16s, border-color .16s;
  display: flex;
  position: relative;
}

.cat-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--sky-400);
  transform: translateY(-3px);
}

.cat-icon {
  background: var(--sky-100);
  width: 42px;
  height: 42px;
  color: var(--sky-600);
  border-radius: 11px;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cat-card:hover .cat-icon {
  background: var(--navy-800);
  color: #fff;
}

.cat-body {
  flex: 1;
  min-width: 0;
  display: block;
}

.cat-body b {
  color: var(--navy-900);
  margin-bottom: 5px;
  font-size: 15.5px;
  font-weight: 700;
  display: block;
}

.cat-body span {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.7;
  display: block;
}

.cat-meta {
  letter-spacing: .08em;
  color: var(--ink-faint);
  font-family: Oswald, sans-serif;
  font-size: 12.5px;
  position: absolute;
  top: 18px;
  right: 20px;
}

.cat-filler {
  display: none;
}

@media (max-width: 1000px) {
  .cat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .cat-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cat-card {
    min-height: 0;
    padding: 16px 18px;
  }

  .cat-meta {
    flex: none;
    margin-top: 8px;
    display: block;
    position: static;
  }
}

.guide-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: 14px;
  display: grid;
}

.guide-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  flex-direction: column;
  gap: 6px;
  padding: 20px 22px;
  transition: transform .16s, box-shadow .16s, border-color .16s;
  display: flex;
}

.guide-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--sky-400);
  transform: translateY(-3px);
}

.guide-card .top {
  align-items: center;
  gap: 12px;
  display: flex;
}

.guide-card .iata {
  color: var(--navy-800);
  letter-spacing: .03em;
  font-family: Oswald, sans-serif;
  font-size: 24px;
  font-weight: 600;
}

.guide-card .flagline {
  color: var(--ink-soft);
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  display: flex;
}

.guide-card .flagline img {
  object-fit: cover;
  border-radius: 3px;
  width: 24px;
  height: 16px;
}

.guide-card h3 {
  color: var(--navy-900);
  font-size: 15.5px;
  font-weight: 700;
}

.guide-card .facts {
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
  display: flex;
}

.guide-card .fact {
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 12px;
}

.guide-card .more {
  border-top: 1px dashed var(--line);
  color: var(--sky-600);
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding-top: 12px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
}

.guide-card:hover .more svg {
  transform: translateX(3px);
}

.guide-card .more svg {
  transition: transform .15s;
}

.region-block {
  margin-bottom: 38px;
}

.region-head {
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  display: flex;
}

.region-head h2 {
  color: var(--navy-900);
  font-size: 19px;
  font-weight: 800;
}

.region-head .n {
  letter-spacing: .1em;
  color: var(--ink-faint);
  font-family: Oswald, sans-serif;
  font-size: 13px;
}

.region-head .cnt {
  color: var(--sky-600);
  background: var(--sky-100);
  border-radius: 16px;
  margin-left: auto;
  padding: 3px 10px;
  font-family: Oswald, sans-serif;
  font-size: 12.5px;
}

.region-jump {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
  display: flex;
}

/*# sourceMappingURL=app_0d9gauc._.css.map*/