:root {
  --bg: #f6f8fb;
  --text: #17202a;
  --muted: #617080;
  --panel: #fff;
  --line: #d9e0e8;
  --teal: #0f8f8a;
  --teal-dark: #08615e;
  --ink: #0d1726;
  --amber: #d9912b;
  --red: #d83f3f;
  --shadow: 0 18px 45px rgba(18, 31, 48, 0.12);
  --shadow-soft: 0 10px 28px rgba(18, 31, 48, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.has-dialog {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 clamp(18px, 5vw, 64px);
  color: #fff;
  background: rgba(11, 20, 32, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.site-header.solid,
.site-header.is-scrolled {
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(22, 34, 49, 0.1);
  box-shadow: 0 8px 28px rgba(22, 34, 49, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--amber));
  border-radius: 8px;
  font-size: 13px;
}

.brand-name {
  overflow: hidden;
  font-size: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-nav {
  display: none;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  margin-right: 10px;
}

.quick-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  color: inherit;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.site-header.solid .quick-nav a,
.site-header.is-scrolled .quick-nav a {
  color: var(--teal-dark);
  background: rgba(15, 143, 138, 0.1);
  border-color: rgba(15, 143, 138, 0.12);
}

.quick-nav a[aria-current="page"] {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  padding: 9px 14px;
  border-radius: 8px;
  color: inherit;
  font-size: 15px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(15, 143, 138, 0.13);
}

.site-nav a[aria-current="page"] {
  color: var(--teal-dark);
  font-weight: 900;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 99px;
}

.hero {
  position: relative;
  min-height: min(690px, 84vh);
  display: grid;
  place-items: center;
  padding: 120px 18px 90px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: url("../img/hero-sky.png") center top / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 130px;
  background: linear-gradient(to bottom, rgba(246, 248, 251, 0), var(--bg));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(38, 102, 132, 0.08), rgba(74, 146, 168, 0.16) 56%, rgba(255, 255, 255, 0.25));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  margin-top: 22px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(56px, 9vw, 96px);
  line-height: 1.05;
  text-shadow: 0 2px 18px rgba(29, 83, 112, 0.16);
  letter-spacing: 0;
}

.hero-copy {
  max-width: 720px;
  margin: 22px auto 30px;
  color: rgba(255, 255, 255, 0.96);
  font-size: 18px;
  line-height: 1.8;
  text-shadow: 0 1px 10px rgba(34, 84, 118, 0.2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(4, 40, 59, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 99px;
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.hero-note::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #9de0b1;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(157, 224, 177, 0.16);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 23px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 12px 25px rgba(15, 143, 138, 0.22);
}

.button.ghost {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
}

.container {
  width: min(1100px, calc(100% - 36px));
  margin-inline: auto;
}

.container.narrow {
  width: min(850px, calc(100% - 36px));
}

.section-pad {
  padding: 64px 0;
}

.intro {
  text-align: center;
  padding-bottom: 30px;
}

.intro h2 {
  margin: 0 0 14px;
  color: #061529;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.2;
}

.intro p {
  margin: 0 auto;
  color: #496176;
  font-size: 18px;
}

.features {
  padding-top: 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card {
  min-height: 198px;
  padding: 27px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 35px rgba(18, 31, 48, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(15, 143, 138, 0.35);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}

.feature-icon {
  display: inline-grid;
  min-width: 42px;
  height: 32px;
  place-items: center;
  margin-bottom: 24px;
  color: #fff;
  background: var(--teal-dark);
  border-radius: 8px;
  font-weight: 900;
}

.feature-card h3 {
  margin: 0 0 9px;
  color: #061529;
  font-size: 22px;
}

.feature-card p {
  margin: 0;
  color: #50657a;
}

.page-main {
  padding-top: 72px;
}

.page-title {
  padding: 42px 0 34px;
  background: linear-gradient(120deg, #dff4f1 0%, #f7f0de 100%);
  border-bottom: 1px solid #d9e3ea;
}

.page-title .container {
  position: relative;
}

.page-title .container::after {
  content: "";
  position: absolute;
  top: 8px;
  right: 2px;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(15, 143, 138, 0.16);
  border-radius: 50%;
  box-shadow: -16px 15px 0 -8px rgba(217, 145, 43, 0.15);
  pointer-events: none;
}

.page-title h1 {
  margin: 0;
  color: #07172a;
  font-size: clamp(44px, 6vw, 68px);
  line-height: 1.05;
}

.page-title p:not(.eyebrow) {
  max-width: 1040px;
  margin: 12px 0 0;
  color: #4a6378;
  font-size: 17px;
}

.text-alert {
  color: var(--red);
  font-weight: 900;
}

.links-box,
.contact-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.links-box {
  padding: 32px 30px;
}

.list-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e7edf2;
}

.list-toolbar-copy strong {
  display: block;
  color: #07172a;
  font-size: 16px;
}

.list-toolbar-copy span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
}

.list-toolbar-badge {
  flex: 0 0 auto;
  padding: 7px 11px;
  color: var(--teal-dark);
  background: rgba(15, 143, 138, 0.08);
  border: 1px solid rgba(15, 143, 138, 0.14);
  border-radius: 99px;
  font-size: 13px;
  font-weight: 900;
}

.search-box {
  position: relative;
  display: block;
  width: min(300px, 100%);
}

.search-box input {
  width: 100%;
  height: 40px;
  padding: 0 38px 0 13px;
  color: var(--text);
  background: #f8fbfd;
  border: 1px solid #d4e1eb;
  border-radius: 8px;
  outline: 0;
}

.search-box input:focus {
  background: #fff;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 143, 138, 0.12);
}

.search-icon {
  position: absolute;
  top: 7px;
  right: 12px;
  color: var(--teal-dark);
  font-size: 22px;
  line-height: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.resource-card.is-hidden,
.link-group.is-empty {
  display: none;
}

.link-group + .link-group {
  margin-top: 38px;
}

.link-title {
  margin: 0 0 10px;
  color: #07172a;
  font-size: 26px;
  line-height: 1.2;
}

.link-title span {
  display: inline-block;
  padding-bottom: 7px;
  border-bottom: 3px solid var(--teal);
}

.link-description {
  margin: 0 0 20px;
  color: #5c7185;
  font-size: 17px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.compact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.resource-card {
  overflow: hidden;
  background: #f8fbfd;
  border: 1px solid #d9e5ed;
  border-radius: 8px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.resource-card:hover {
  border-color: rgba(15, 143, 138, 0.32);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.resource-main {
  position: relative;
  display: block;
  min-height: 182px;
  padding: 25px 16px 18px;
  text-align: center;
}

.resource-main:hover h3 {
  color: var(--teal-dark);
}

.corner-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  background: #e49a22;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 900;
}

.logo-badge {
  display: inline-grid;
  width: 68px;
  height: 54px;
  place-items: center;
  margin: 0 auto 14px;
  color: #fff;
  background: linear-gradient(135deg, #0f8f8a, #55c5bb);
  border-radius: 16px;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(17, 71, 96, 0.08);
}

.logo-sky,
.logo-blue {
  background: linear-gradient(135deg, #55b7ff, #6676ff);
}

.logo-purple {
  background: linear-gradient(135deg, #8b6cff, #b87cff);
}

.logo-green {
  background: linear-gradient(135deg, #24a66b, #7bcf7a);
}

.logo-cyan {
  background: linear-gradient(135deg, #17b0d4, #38d0b2);
}

.logo-amber {
  background: linear-gradient(135deg, #f0b429, #d96f22);
}

.apple-logo {
  background: linear-gradient(135deg, #4ec36a, #f2d83c 35%, #f06b55 66%, #5794f2);
  font-size: 22px;
}

.resource-card h3 {
  margin: 0 0 8px;
  color: #07172a;
  font-size: 18px;
  line-height: 1.25;
}

.resource-card p {
  margin: 0;
  color: #607286;
  font-size: 14px;
  line-height: 1.45;
}

.resource-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
  padding: 3px 7px;
  color: var(--teal-dark);
  background: rgba(15, 143, 138, 0.08);
  border-radius: 99px;
  font-size: 11px;
  font-weight: 900;
}

.resource-status::before {
  content: "";
  width: 5px;
  height: 5px;
  background: currentColor;
  border-radius: 50%;
}

.score-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 10px 4px;
  color: #50657a;
  background: #fff;
  border-top: 1px solid #d9e5ed;
  font-size: 13px;
}

.score-row span::before {
  content: "👍 ";
}

.score-row span:last-child::before {
  content: "👎 ";
}

.score-row b,
.review-count b {
  color: #07172a;
}

.vote-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 5px 10px 7px;
  background: #fff;
}

.vote-row button,
.comment-form button {
  min-height: 30px;
  color: #315066;
  background: #f8fbfd;
  border: 1px solid #d4e1eb;
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.vote-row button.is-selected {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.vote-row button:hover,
.comment-form button:hover {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.comment-form {
  display: grid;
  grid-template-columns: 1fr 50px;
  gap: 6px;
  padding: 0 10px 7px;
  background: #fff;
}

.comment-form input {
  min-width: 0;
  height: 32px;
  padding: 0 9px;
  color: #466078;
  background: #fff;
  border: 1px solid #d4e1eb;
  border-radius: 8px;
  outline: 0;
}

.comment-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 143, 138, 0.12);
}

.comment-form button {
  color: #fff;
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.review-summary,
.review-count {
  padding: 0 10px;
  background: #fff;
  font-size: 13px;
}

.review-summary {
  min-height: 21px;
  color: #607286;
}

.review-count {
  padding-bottom: 10px;
}

.notice-box {
  margin-top: 30px;
  padding: 16px 18px;
  color: #76602e;
  background: #fffaf0;
  border: 1px solid #f0d18f;
  border-radius: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-panel {
  padding: 28px;
}

.contact-panel h2 {
  margin: 0 0 10px;
  color: #07172a;
}

.contact-panel p {
  margin: 0;
  color: #53697c;
}

.contact-panel a {
  color: var(--teal-dark);
  font-weight: 900;
}

.bookmark-tip {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(7, 17, 30, 0.58);
}

.bookmark-tip[hidden] {
  display: none;
}

.bookmark-panel {
  position: relative;
  width: min(460px, 100%);
  padding: 30px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.bookmark-panel h2 {
  margin: 0 0 10px;
  color: #07172a;
  font-size: 30px;
}

.bookmark-panel p {
  color: #556b7e;
}

.bookmark-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  background: #f1f5f8;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.bookmark-url {
  padding: 12px 14px;
  margin: 18px 0;
  color: var(--teal-dark);
  background: rgba(15, 143, 138, 0.08);
  border: 1px solid rgba(15, 143, 138, 0.18);
  border-radius: 8px;
  font-weight: 900;
  word-break: break-all;
}

.site-footer {
  padding: 32px 18px;
  color: #d8ecff;
  background: #071320;
  text-align: center;
}

.site-footer a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .site-header {
    height: 66px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    display: none;
    width: min(320px, calc(100vw - 36px));
    padding: 10px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(22, 34, 49, 0.1);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(18, 31, 48, 0.16);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 11px 12px;
  }

  .hero {
    min-height: 620px;
    padding-top: 104px;
  }

  .feature-grid,
  .contact-grid,
  .compact-grid {
    grid-template-columns: 1fr;
  }

  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .page-title .container::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand-name {
    font-size: 16px;
  }

  .hero {
    min-height: 575px;
    background-position: 57% top;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-note {
    max-width: 100%;
    font-size: 12px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .section-pad {
    padding: 42px 0;
  }

  .page-main {
    padding-top: 66px;
  }

  .page-title {
    padding: 32px 0 28px;
  }

  .page-title h1 {
    font-size: 42px;
  }

  .links-box {
    width: min(100% - 24px, 1100px);
    padding: 22px 14px;
  }

  .list-toolbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .search-box {
    width: 100%;
  }

  .resource-grid {
    grid-template-columns: 1fr;
  }

  .resource-main {
    min-height: 168px;
  }

  .comment-form {
    grid-template-columns: 1fr 58px;
  }
}

.score-row span::before {
  content: "+ ";
  color: var(--teal-dark);
  font-weight: 900;
}

.score-row span:last-child::before {
  content: "- ";
  color: var(--red);
}

/* ===== airport card styles (ported from qwer22 layout) ===== */
.links-box {
  padding: clamp(18px, 3vw, 30px);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(25, 39, 55, 0.08);
}

.link-group + .link-group {
  margin-top: 34px;
}

.link-title {
  margin: 0;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.3;
}

.link-title span {
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--teal);
}

.link-description {
  margin: 10px 0 16px;
  color: var(--muted);
}

.link-items {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.link-card {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 174px;
  padding: 24px 14px 18px;
  overflow: hidden;
  text-align: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.link-item:hover .link-card {
  transform: translateY(-2px);
}

.link-item {
  overflow: hidden;
  background: #f8fbfd;
  border: 1px solid #dfe7ef;
  border-radius: 8px;
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}

.link-item:hover {
  border-color: rgba(15, 143, 138, 0.45);
  box-shadow: 0 16px 34px rgba(20, 35, 52, 0.12);
}

.corner-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-size: 13px;
  font-style: normal;
}

.corner-badge.hot {
  background: var(--amber);
}

.corner-badge.warn {
  background: #c84d50;
}

.site-logo,
.site-logo-img {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 12px;
  color: #fff;
  border-radius: 16px;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: inset 0 -10px 22px rgba(0, 0, 0, 0.13);
}

.site-logo-img {
  display: block;
  object-fit: cover;
}

.site-logo-img.logo-wide {
  width: 92px;
  object-fit: contain;
  background: #fff;
  box-shadow: none;
}

.site-logo-img.logo-shop {
  width: min(150px, 86%);
  height: 46px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.site-logo.teal { background: linear-gradient(135deg, #0f8f8a, #0b565b); }
.site-logo.blue { background: linear-gradient(135deg, #3077c8, #183a75); }
.site-logo.amber { background: linear-gradient(135deg, #d9912b, #9c5917); }
.site-logo.green { background: linear-gradient(135deg, #16a36b, #087044); }
.site-logo.navy { background: linear-gradient(135deg, #243b63, #101c31); }
.site-logo.violet { background: linear-gradient(135deg, #7862c8, #463585); }
.site-logo.red { background: linear-gradient(135deg, #c84d50, #86262d); }
.site-logo.pale {
  color: #506173;
  background: linear-gradient(135deg, #eef4f7, #d8e3ea);
}

.link-card strong {
  display: block;
  max-width: 100%;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.link-card em {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

.review-panel {
  margin-top: 0;
  padding: 7px;
  background: #fff;
  border: 0;
  border-top: 1px solid #dfe7ef;
  border-radius: 0;
}

.review-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 5px;
  color: #5b6b7c;
  font-size: 12px;
  line-height: 1.2;
}

.review-summary b {
  color: var(--ink);
  font-size: 13px;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 4px;
  color: #7a8795;
  font-size: 11px;
  line-height: 1.2;
}

.review-meta b {
  color: var(--ink);
}

.review-meta button {
  padding: 0;
  border: 0;
  color: var(--teal-dark);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.review-meta button[hidden] {
  display: none;
}

.review-votes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.review-votes button,
.review-form button {
  min-height: 28px;
  border: 1px solid #d8e2eb;
  border-radius: 8px;
  color: #526273;
  background: #f8fbfd;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.review-votes button.is-active {
  color: #fff;
  background: var(--teal);
  border-color: var(--teal);
}

.review-votes button[data-vote="down"].is-active {
  background: #6b7684;
  border-color: #6b7684;
}

.review-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 5px;
  margin-top: 5px;
}

.review-form input {
  width: 100%;
  min-height: 28px;
  padding: 0 8px;
  border: 1px solid #d8e2eb;
  border-radius: 8px;
  color: var(--text);
  background: #fff;
  font: inherit;
  font-size: 12px;
}

.review-form input::placeholder {
  color: #8a98a8;
}

.review-form button {
  color: #fff;
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.review-list {
  margin-top: 5px;
}

.review-empty,
.review-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.review-item {
  padding-top: 5px;
  border-top: 1px solid #edf2f6;
}

.review-item + .review-item {
  margin-top: 5px;
}

.review-item div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 2px;
  font-size: 12px;
}

.review-hidden-meta {
  display: none !important;
}

.review-item b {
  color: var(--teal-dark);
}

.review-item b.down {
  color: #6b7684;
}

.review-item span {
  color: #95a2af;
}

.airport-notice {
  margin-top: 28px;
  padding: 16px 18px;
  color: #675135;
  background: #fff8ea;
  border: 1px solid #efd7a7;
  border-radius: 8px;
}

@media (max-width: 760px) {
  .link-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .link-card {
    min-height: 164px;
    padding: 22px 10px 16px;
  }
  .site-logo,
  .site-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    font-size: 21px;
  }
  .link-card strong {
    font-size: 15px;
  }
  .link-card em {
    font-size: 12px;
  }
}

@media (min-width: 761px) and (max-width: 1020px) {
  .link-items {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
