*{border-color:var(--border)}body{background:var(--background);color:var(--foreground)}button{background:none;color:inherit}:root {
  --site-font: "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", system-ui, sans-serif;
  --primary: #ad4431;
  --primary-hover: #a93e2b;
  --secondary-foreground: #9e3d2c;
  --foreground: #211d1b;
  --background: #fffdf8;
  --card: #ffffff;
  --secondary: #fce9e2;
  --muted: #f5f1ec;
  --muted-foreground: #504640;
  --border: #e0d8d0;
  --subtle: #675b52;
  --hero: #fff2e9;
  --radius: .875rem;
  --ease-out: cubic-bezier(.23,1,.32,1);
  --shadow: 0 3px 14px -7px #60352220;
}
.dark {
  --primary: #f4a18b;
  --primary-hover: #ffc1ad;
  --secondary-foreground: #f4a18b;
  --foreground: #fff9f4;
  --background: #201b19;
  --card: #2b2421;
  --secondary: #443029;
  --muted: #342b26;
  --muted-foreground: #e0d2c8;
  --border: #5a4840;
  --subtle: #cdb9aa;
  --hero: #30231e;
  --shadow: 0 4px 18px #0002;
}
@layer base {
  * {
    
  }
  body {
    
  }
  button:not(:disabled),
  [role="button"]:not([aria-disabled="true"]),
  [type="button"]:not(:disabled),
  [type="submit"]:not(:disabled),
  a[href],
  select:not(:disabled),
  input[type="checkbox"]:not(:disabled) {
    cursor: pointer;
  }
}
@layer components {
  .container {
    width: 100%;
    margin-inline: auto;
    padding-inline: 1rem;
  }
  .flex {
    min-width: 0;
    min-height: 0;
  }
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  font-family: var(--site-font);
  font-size: 14px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  transition:
    background 0.18s,
    color 0.18s,
    transform 0.16s var(--ease-out),
    box-shadow 0.18s;
}
button:active,
.button:active {
  transform: scale(0.98);
}
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.18s;
}
button {
  border: 0;
}
input,
textarea,
select {
  max-width: 100%;
  min-width: 0;
}
input[type="checkbox"] {
  accent-color: var(--primary);
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 4px;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}
h1,
h2,
h3 {
  letter-spacing: -0.035em;
}
svg {
  flex-shrink: 0;
}
.page-width {
  max-width: 1320px;
  width: 100%;
  padding-inline: 40px;
  margin-inline: auto;
}
.site {
  overflow: clip;
}
main {
  min-height: 65vh;
}
.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  color: var(--primary);
  line-height: 1.6;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 10px 17px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 7px;
  white-space: nowrap;
  min-height: 39px;
}
.primary {
  background: var(--primary);
  color: white;
}
.primary:hover {
  background: var(--primary-hover);
}
.dark .primary {
  color: var(--foreground);
}
.secondary {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--foreground);
}
.secondary:hover {
  background: var(--secondary);
  border-color: var(--primary);
}
.danger {
  background: #ae4038;
  color: #fff;
}
.text-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 12px;
  color: var(--muted-foreground);
  background: transparent;
  white-space: nowrap;
}
.text-button:hover,
.text-button.selected {
  color: var(--primary);
}
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: transparent;
  border-radius: 6px;
  color: var(--muted-foreground);
}
.icon-button:hover {
  color: var(--primary);
  background: var(--secondary);
}
.between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.full {
  grid-column: 1/-1;
}
.skip-link {
  position: absolute;
  left: 20px;
  top: -100px;
  z-index: 100;
  padding: 10px;
  background: var(--card);
}
.skip-link:focus {
  top: 10px;
}
/* Header */
.site-header {
  height: 77px;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 40;
}
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand-mark {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  border-radius: 12px 12px 12px 4px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 3px 6px #c34e3820;
}
.brand-mark i {
  width: 5px;
  height: 5px;
  border: 1px solid var(--primary);
  background: #f8c5ae;
  border-radius: 50%;
  position: absolute;
  right: 7px;
  bottom: 10px;
}
.brand strong {
  display: block;
  font-weight: 750;
  font-size: 21px;
  letter-spacing: 1px;
  line-height: 1.35;
}
.brand div > span {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.8px;
  color: var(--muted-foreground);
  margin-top: 1px;
}
.desktop-nav {
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 27px;
  margin-left: auto;
}
.desktop-nav > a {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  color: var(--muted-foreground);
  position: relative;
  font-weight: 500;
  white-space: nowrap;
}
.desktop-nav > a:hover,
.desktop-nav > a.active {
  color: var(--primary);
}
.desktop-nav > a.active:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 20px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--primary);
  left: 50%;
  transform: translateX(-50%);
}
.desktop-nav > a > i {
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  position: absolute;
  top: 23px;
  right: -6px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-divider {
  width: 1px;
  height: 19px;
  background: var(--border);
}
.manage-link {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  white-space: nowrap;
  color: var(--primary);
}
.mobile-menu-button {
  display: none;
}
.mobile-nav {
  background: var(--card);
  box-shadow: 0 10px 25px #0001;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav > a,
.mobile-nav > button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  border-radius: 6px;
  background: transparent;
  font-size: 13px;
}
.mobile-nav .active {
  background: var(--secondary);
  color: var(--primary);
}
/* Hero */
.hero {
  background: var(--hero);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.hero-inner {
  display: flex;
  align-items: center;
  min-height: 352px;
  position: relative;
}
.hero-copy {
  width: 57%;
  padding: 33px 0 37px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  color: var(--primary);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.7px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 17px;
}
.hero-eyebrow > span {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px #c34e3810;
}
.hero-eyebrow > i {
  width: 17px;
  height: 1px;
  background: var(--subtle);
  margin-inline: 4px;
}
.hero h1 {
  font-size: 44px;
  line-height: 1.35;
  font-weight: 750;
  letter-spacing: -1.9px;
  margin-bottom: 15px;
}
.hero h1 > span {
  color: var(--primary);
}
.hero-copy > p {
  font-size: 12.5px;
  line-height: 1.95;
  color: var(--muted-foreground);
}
.dark .hero-copy > p {
  color: var(--muted-foreground);
}
.hero-bottom {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 20px;
}
.hero-bottom > span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted-foreground);
}
.hero-bottom svg {
  color: var(--primary);
}
.hero-art {
  position: absolute;
  width: 50%;
  height: 100%;
  right: 25px;
  top: 0;
  overflow: hidden;
}
.hero-art > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.9;
}
.dark .hero-art > img {
  mix-blend-mode: screen;
  opacity: 0.22;
}
.art-label {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ffffffba;
  border-radius: 9px;
  background: #ffffffda;
  box-shadow: 0 5px 22px #60352220;
  backdrop-filter: blur(8px);
  padding: 11px 14px;
  font-size: 12px;
  font-weight: 500;
  color: #49372e;
}
.art-label small {
  display: block;
  font-size: 12px;
  color: #655d57;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 3px;
}
.art-label > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  background: #fce9e2;
  color: #c34e38;
  border-radius: 50%;
}
.label-top {
  right: 24px;
  top: 71px;
}
.label-bottom {
  left: 8px;
  bottom: 62px;
}
.orbit-caption {
  position: absolute;
  right: 60px;
  bottom: 25px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted-foreground);
  font-size: 12px;
  letter-spacing: 2px;
}
/* Collection */
.principles {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 0;
  border-bottom: 1px solid var(--border);
  gap: 22px;
}
.principles > div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.principle-icon {
  color: var(--primary);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--secondary);
  border-radius: 9px;
}
.principles b {
  display: block;
  font-size: 12px;
  font-weight: 600;
}
.principles small {
  display: block;
  font-size: 12px;
  color: var(--muted-foreground);
  margin-top: 2px;
}
.principles > a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted-foreground);
  font-size: 12px;
}
.catalog {
  padding-top: 38px;
}
.catalog-title {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}
.catalog-title h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 650;
  margin-top: 4px;
}
.catalog-title .eyebrow {
  font-size: 12px;
  letter-spacing: 1.65px;
  color: var(--muted-foreground);
}
.count-tag {
  font-family: var(--site-font);
  color: var(--primary);
  border: 1px solid var(--border);
  background: var(--secondary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1px 7px;
  border-radius: 5px;
  line-height: 1.6;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
}
.title-tools {
  display: flex;
  gap: 22px;
  padding-bottom: 3px;
}
.filter-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--border);
}
.filter-tabs {
  display: flex;
  align-items: center;
  gap: 4px;
}
.filter-tabs > button {
  display: flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  color: var(--muted-foreground);
  font-size: 12px;
  white-space: nowrap;
  padding: 9px 14px;
  border-radius: 6px;
  min-height: 35px;
}
.filter-tabs > button.active {
  color: var(--primary);
  background: var(--secondary);
  font-weight: 600;
}
.filter-tabs > button:not(.active):hover {
  background: var(--muted);
  color: var(--foreground);
}
.search-field {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 8px 11px;
  width: 246px;
  color: var(--muted-foreground);
  height: 36px;
}
.search-field input {
  width: 100%;
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  font-size: 12px;
  color: var(--foreground);
}
.search-field input::placeholder {
  color: var(--muted-foreground);
}
.search-field:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px #c34e3815;
}
.search-field kbd {
  font-size: 12px;
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 0 4px;
  color: var(--subtle);
}
.search-field button {
  display: flex;
  background: transparent;
  padding: 0;
}
.catalog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted-foreground);
  font-size: 12px;
  padding: 14px 0 4px;
}
.catalog-meta > div {
  display: flex;
  align-items: center;
  gap: 7px;
}
.catalog-meta b {
  font-weight: 500;
  color: var(--foreground);
}
.small-dot {
  background: var(--primary);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin-right: 2px;
}
.meta-divider {
  display: inline-block;
  width: 1px;
  height: 10px;
  background: var(--border);
  margin-inline: 6px;
}
.catalog-meta select {
  border: 0;
  background: transparent;
  color: var(--muted-foreground);
  font-size: 12px;
  padding-right: 5px;
  outline: none;
}
select option {
  background: var(--card);
  color: var(--foreground);
}
.catalog-meta .text-button {
  font-size: 12px;
}
.review-group {
  padding-top: 26px;
}
.group-heading {
  margin-bottom: 16px;
}
.group-heading > div {
  display: flex;
  gap: 9px;
  align-items: center;
}
.group-heading h3 {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0;
}
.group-icon {
  display: inline-flex;
  color: var(--primary);
}
.group-budget {
  color: #b6935c;
}
.group-ai {
  color: #78889f;
}
.group-count {
  font-family: var(--site-font);
  color: var(--muted-foreground);
  font-size: 12px;
  background: var(--muted);
  padding: 0 6px;
  border: 1px solid var(--border);
  border-radius: 4px;
}
.group-heading > p {
  font-size: 12px;
  color: var(--muted-foreground);
  margin-top: 6px;
}
.airport-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
}
.airport-card {
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--card);
  box-shadow: var(--shadow);
  padding: 16px;
  position: relative;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.airport-card:hover {
  border-color: var(--primary);
  box-shadow: 0 8px 22px -8px #60352220;
  transform: translateY(-3px);
}
.recommended-card {
  border-color: var(--primary);
}
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  height: 14px;
}
.slot-no {
  font-size: 12px;
  color: var(--muted-foreground);
  letter-spacing: 1.1px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.card-tools {
  display: flex;
  gap: 10px;
}
.card-tools button {
  padding: 0;
  color: var(--muted-foreground);
  background: transparent;
}
.card-tools button:hover,
.card-tools .is-active {
  color: var(--primary);
}
.card-identity {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.airport-logo {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--secondary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.airport-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tone-1 {
  background: #f0f3f6;
  color: #91a4b2;
}
.tone-2 {
  background: #f4f2eb;
  color: #b1aa89;
}
.tone-3 {
  background: #f0eff5;
  color: #a399b2;
}
.dark .airport-logo {
  background: var(--secondary);
  color: var(--muted-foreground);
}
.card-identity > div:last-child {
  min-width: 0;
}
.card-identity h3 {
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card-identity h3.unfilled {
  color: var(--foreground);
  font-weight: 500;
  font-size: 13px;
}
.dark .card-identity h3.unfilled {
  color: var(--muted-foreground);
}
.card-identity p {
  font-size: 12px;
  color: var(--muted-foreground);
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 14px;
  min-height: 20px;
}
.card-tags > span {
  font-size: 12px;
  background: var(--muted);
  color: var(--muted-foreground);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--border);
  line-height: 1.7;
}
.status-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted-foreground);
}
.status-tag i {
  width: 4px;
  height: 4px;
  background: var(--subtle);
  border-radius: 50%;
  display: block;
}
.card-tags > .running {
  color: var(--primary);
  background: var(--secondary);
}
.running i {
  background: var(--primary);
}
.rating-row {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 12px;
  font-family: var(--site-font);
  font-size: 12px;
  color: var(--muted-foreground);
}
.stars {
  display: flex;
  gap: 2px;
  color: var(--subtle);
  margin-right: 2px;
}
.stars .rated {
  color: #c3a263;
}
.rating-row b {
  color: var(--foreground);
  font-size: 12px;
  margin-inline: 2px;
}
.rating-row small {
  font-size: 12px;
}
.compare-check {
  display: flex;
  gap: 3px;
  align-items: center;
  background: transparent;
  color: var(--muted-foreground);
  margin-left: auto;
  font-size: 12px;
  padding: 2px 0;
}
.compare-check.checked {
  color: var(--primary);
}
.card-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--muted);
  margin: 15px -1px 13px;
  padding: 12px 0;
  border: 1px solid var(--border);
  border-radius: 6px;
}
.card-metrics > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  border-right: 1px solid var(--border);
  min-width: 0;
}
.card-metrics > div:last-child {
  border-right: 0;
}
.card-metrics strong {
  font-family: var(--site-font);
  color: var(--foreground);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.1;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-metrics span {
  font-size: 12px;
  color: var(--muted-foreground);
  white-space: nowrap;
}
.card-description {
  min-height: 57px;
  color: var(--muted-foreground);
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.empty-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--muted-foreground);
  gap: 7px;
  font-size: 12px;
  padding-top: 2px;
}
.placeholder-rule {
  width: 100%;
  height: 4px;
  border-radius: 5px;
  background: var(--muted);
  display: block;
}
.placeholder-rule.short {
  width: 65%;
}
.card-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  margin-bottom: 11px;
}
.card-price > div {
  display: flex;
  align-items: baseline;
  gap: 3px;
}
.card-price .currency {
  color: var(--primary);
  font-size: 12px;
  font-weight: 500;
}
.card-price strong {
  font-family: var(--site-font);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--primary);
}
.card-price > div > span:last-child {
  font-size: 12px;
  color: var(--muted-foreground);
  margin-left: 2px;
}
.card-price > span {
  font-size: 12px;
  color: var(--muted-foreground);
}
.card-actions {
  display: flex;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  align-items: center;
}
.card-actions > button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--secondary);
  color: var(--primary);
  flex: 1;
  min-height: 32px;
  padding: 7px 9px;
  border: 1px solid var(--border);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}
.card-actions > button:hover {
  background: var(--primary);
  color: var(--card);
}
.card-actions > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--muted-foreground);
  font-size: 12px;
  white-space: nowrap;
  padding: 5px 2px;
}
.card-actions > a:hover {
  color: var(--primary);
}
.advanced-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 18px;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 8px;
  margin-top: 12px;
  font-size: 12px;
}
.advanced-filters > label {
  display: flex;
  gap: 10px;
  align-items: center;
}
.advanced-filters select,
.advanced-filters input[type="number"] {
  border: 1px solid var(--border);
  padding: 6px 9px;
  border-radius: 5px;
  background: var(--background);
  width: 135px;
}
.empty-state {
  text-align: center;
  padding: 65px 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 15px;
  color: var(--muted-foreground);
  border: 1px dashed var(--border);
  border-radius: 10px;
  margin-block: 22px;
}
.empty-state h3 {
  color: var(--foreground);
  font-size: 19px;
}
.empty-state p {
  font-size: 12px;
}
.empty-state > .button {
  margin-top: 8px;
}
.gentle-notice {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--secondary);
  color: var(--muted-foreground);
  border: 1px solid var(--border);
  border-radius: 9px;
  margin-top: 36px;
  padding: 22px 24px;
}
.gentle-notice b {
  color: var(--foreground);
  font-size: 12px;
  font-weight: 500;
}
.gentle-notice p {
  font-size: 12px;
  margin-top: 3px;
}
.gentle-notice > a {
  margin-left: auto;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.dark .gentle-notice {
  background: var(--secondary);
  border-color: var(--border);
  color: var(--muted-foreground);
}
.dark .gentle-notice b {
  color: var(--foreground);
}
.faq-section {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: 70px;
  padding: 61px 0 65px;
}
.faq-section h2 {
  font-size: 23px;
  font-weight: 550;
  margin: 10px 0;
}
.faq-section > div > p {
  color: var(--muted-foreground);
  font-size: 12px;
}
.faq-section > div > a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-size: 12px;
  margin-top: 21px;
}
.faq-items details {
  border-bottom: 1px solid var(--border);
  padding: 15px 0;
}
.faq-items summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  cursor: pointer;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
.faq-items summary svg {
  color: var(--muted-foreground);
}
.faq-items details[open] summary svg {
  transform: rotate(45deg);
}
.faq-items details p {
  color: var(--muted-foreground);
  font-size: 12px;
  line-height: 1.9;
  padding: 13px 28px 3px 0;
}
/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--card);
  padding-top: 31px;
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 27px;
}
.footer-main .brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px 9px 9px 3px;
}
.footer-main .brand strong {
  font-size: 17px;
}
.footer-main .brand div > span {
  font-size: 12px;
}
.footer-main > div > p {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted-foreground);
}
.footer-links {
  display: flex;
  gap: 27px;
  font-size: 12px;
  color: var(--muted-foreground);
}
.footer-links button {
  background: transparent;
  display: flex;
  gap: 6px;
  align-items: center;
  color: var(--primary);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 19px 0;
  font-size: 12px;
  color: var(--muted-foreground);
}
.footer-bottom p,
.footer-bottom a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  border: 1px solid var(--border);
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--card);
  color: var(--primary);
  box-shadow: 0 3px 12px #0001;
}
.floating-compare {
  display: flex;
  align-items: center;
  gap: 22px;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--foreground);
  color: var(--card);
  border-radius: 10px;
  padding: 13px 17px;
  box-shadow: 0 5px 25px #0003;
  z-index: 35;
  font-size: 12px;
  white-space: nowrap;
}
.floating-compare > span {
  display: flex;
  gap: 6px;
  align-items: center;
}
.floating-compare > a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--foreground);
}
.floating-compare > button {
  background: transparent;
  color: inherit;
}
/* Secondary pages */
.subpage {
  padding-bottom: 45px;
}
.subpage-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 30px 0 34px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted-foreground);
  font-size: 12px;
  margin-bottom: 28px;
}
.subpage-heading h1 {
  font-size: 34px;
  font-weight: 650;
  margin-top: 9px;
}
.subpage-heading p {
  font-size: 12px;
  color: var(--muted-foreground);
  margin-top: 10px;
  line-height: 1.9;
}
.subpage-heading > .button {
  margin-top: 55px;
}
.panel {
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 21px;
}
.section-header h2 {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-header p {
  font-size: 12px;
  color: var(--muted-foreground);
  margin-top: 6px;
}
.dimension-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 17px;
  margin: 4px 0 30px;
}
.dimension-grid > div {
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 22px;
}
.dimension-grid svg {
  color: var(--primary);
  margin-bottom: 14px;
}
.dimension-grid b {
  font-size: 13px;
  font-weight: 550;
  display: block;
}
.dimension-grid p {
  color: var(--muted-foreground);
  font-size: 12px;
  margin-top: 4px;
}
.compare-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
}
.compare-slots > button {
  display: flex;
  align-items: center;
  flex-direction: column;
  border: 1px dashed var(--border);
  background: var(--background);
  color: var(--muted-foreground);
  border-radius: 8px;
  padding: 25px;
  gap: 11px;
  position: relative;
}
.compare-slots > button:hover {
  background: var(--secondary);
  color: var(--primary);
}
.compare-slots small {
  position: absolute;
  top: 12px;
  left: 13px;
  font-size: 12px;
  color: var(--subtle);
}
.compare-slots > button > span {
  font-size: 12px;
}
.table-scroll {
  width: 100%;
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 12px;
}
th {
  padding: 15px 12px;
  background: var(--muted);
  font-weight: 500;
  font-size: 12px;
  color: var(--muted-foreground);
  white-space: nowrap;
}
td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
  color: var(--muted-foreground);
}
td b {
  color: var(--foreground);
  font-weight: 500;
}
td small {
  display: block;
  font-size: 12px;
  margin-top: 3px;
  color: var(--subtle);
}
td a {
  color: var(--primary);
}
tr:last-child td {
  border: 0;
}
.data-table {
  min-width: 900px;
}
.data-table tbody tr:hover {
  background: var(--background);
}
.table-tools {
  display: flex;
  gap: 14px;
  align-items: center;
}
.table-tools select {
  font-size: 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 8px;
}
.comparison-table {
  min-width: 550px;
}
.comparison-table th:not(:first-child),
.comparison-table td:not(:first-child) {
  text-align: center;
}
.comparison-table th {
  color: var(--primary);
}
.comparison-table td a {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}
.difference-toggle {
  margin-bottom: 15px;
}
.review-summary {
  display: flex;
  justify-content: space-between;
  gap: 45px;
  padding: 29px;
  background: var(--secondary);
  border-color: var(--border);
}
.review-summary h2 {
  font-size: 25px;
  margin: 8px 0;
}
.review-summary p {
  color: var(--muted-foreground);
  font-size: 12px;
  max-width: 700px;
}
.summary-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted-foreground);
  font-size: 12px;
  margin-top: 18px;
}
.review-summary > div:last-child {
  min-width: 170px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.detail-price {
  color: var(--primary);
  font-size: 17px;
}
.detail-price b {
  font-size: 37px;
  font-weight: 550;
}
.detail-price > span {
  font-size: 12px;
  color: var(--muted-foreground);
  margin-left: 7px;
}
.review-layout {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 40px;
  padding: 13px 0;
}
.review-toc {
  align-self: start;
  position: sticky;
  top: 110px;
  padding: 10px 0;
}
.review-toc > .eyebrow {
  margin-bottom: 15px;
}
.review-toc > a {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 12px;
  color: var(--muted-foreground);
  padding: 11px 0;
}
.review-toc > a > span {
  font-size: 12px;
  color: var(--subtle);
}
.review-toc > a:last-child {
  border-top: 1px solid var(--border);
  margin-top: 20px;
  color: var(--primary);
}
.review-article > section {
  padding: 27px 0;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 100px;
}
.review-article h2 {
  font-size: 24px;
  margin: 8px 0 20px;
  font-weight: 550;
}
.review-text {
  font-size: 13px;
  line-height: 2;
  color: var(--muted-foreground);
  white-space: pre-wrap;
  margin-block: 14px;
  overflow-wrap: anywhere;
}
.unfilled-text {
  background: var(--muted);
  border: 1px dashed var(--border);
  border-radius: 7px;
  padding: 20px;
  color: var(--subtle);
}
.info-pair {
  display: flex;
  gap: 50px;
  margin-top: 20px;
  font-size: 12px;
  color: var(--muted-foreground);
}
.info-pair span {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.info-pair b {
  font-size: 13px;
  font-weight: 500;
  color: var(--foreground);
}
.detail-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--card);
  padding: 23px;
}
.detail-metrics > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  border-right: 1px solid var(--border);
  gap: 5px;
}
.detail-metrics > div:last-child {
  border: 0;
}
.detail-metrics b {
  font-size: 30px;
  color: var(--primary);
  font-weight: 500;
}
.detail-metrics span {
  font-size: 12px;
  color: var(--muted-foreground);
}
.unlock-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.unlock-grid > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 17px;
}
.unlock-grid b {
  font-size: 12px;
  font-weight: 600;
}
.unlock-grid span {
  color: var(--muted-foreground);
  font-size: 12px;
}
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.plans-grid > div {
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plans-grid > div > span {
  font-size: 12px;
  letter-spacing: 1px;
  color: var(--muted-foreground);
}
.plans-grid h3 {
  font-size: 12px;
  font-weight: 500;
}
.plans-grid strong {
  font-size: 26px;
  color: var(--primary);
  font-weight: 500;
}
.plans-grid b {
  font-size: 12px;
  font-weight: 500;
}
.plans-grid p {
  color: var(--muted-foreground);
  font-size: 12px;
}
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pros-cons h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
}
.coupon-inline {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--secondary);
  border: 1px solid var(--border);
  padding: 17px;
  border-radius: 6px;
  margin-top: 20px;
  font-size: 12px;
}
.coupon-inline button {
  margin-left: auto;
  background: transparent;
  color: var(--primary);
}
.article-bottom-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  font-size: 12px;
  color: var(--primary);
}
.article-bottom-nav a {
  display: flex;
  align-items: center;
  gap: 8px;
}
/* Articles and about */
.library-banner {
  padding: 30px;
  background: var(--secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 26px;
  border-radius: 10px;
  margin-bottom: 35px;
}
.library-big-icon {
  display: grid;
  place-items: center;
  background: var(--card);
  border-radius: 16px;
  width: 86px;
  height: 86px;
  color: var(--primary);
  flex-shrink: 0;
}
.library-banner h2 {
  font-weight: 550;
  font-size: 22px;
  margin: 7px 0;
}
.library-banner p {
  font-size: 12px;
  color: var(--muted-foreground);
}
.library-banner > .button {
  margin-left: auto;
}
.library-filters {
  margin-bottom: 24px;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 35px;
}
.article-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform 0.2s var(--ease-out),
    box-shadow 0.2s;
}
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px #60352212;
}
.article-visual {
  position: relative;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--primary);
  overflow: hidden;
}
.article-visual > span {
  position: absolute;
  top: 13px;
  left: 16px;
  font-size: 12px;
  letter-spacing: 2px;
  opacity: 0.7;
}
.article-visual > svg {
  z-index: 1;
  stroke-width: 1;
  transform: rotate(-9deg);
  width: 62px;
  height: 62px;
}
.visual-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#c34e3812 1px, transparent 1px),
    linear-gradient(90deg, #c34e3812 1px, transparent 1px);
  background-size: 24px 24px;
}
.visual-1 {
  background: #edf0f3;
  color: #9baab7;
}
.visual-2 {
  background: #f2efe6;
  color: #bdb194;
}
.dark .article-visual {
  background: var(--secondary);
}
.article-card-body {
  padding: 23px;
}
.category-label {
  display: inline-block;
  padding: 3px 7px;
  background: var(--secondary);
  border-radius: 4px;
  color: var(--primary);
  font-size: 12px;
}
.article-card h3 {
  margin: 12px 0 9px;
  font-weight: 550;
  font-size: 17px;
  line-height: 1.65;
}
.article-card p {
  font-size: 12px;
  color: var(--muted-foreground);
  line-height: 1.9;
  min-height: 44px;
}
.article-card-body > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  margin-top: 20px;
  padding-top: 14px;
  color: var(--primary);
}
.article-card-body > div > span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted-foreground);
}
.reading-page {
  max-width: 770px;
  margin: 0 auto;
  padding: 30px 0 40px;
}
.back-link {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted-foreground);
  font-size: 12px;
  margin-bottom: 40px;
}
.reading-page h1 {
  font-size: 35px;
  line-height: 1.5;
  margin-top: 15px;
  font-weight: 600;
}
.article-deck {
  font-size: 14px;
  color: var(--muted-foreground);
  margin-top: 15px;
}
.reading-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted-foreground);
  font-size: 12px;
  border-bottom: 1px solid var(--border);
  padding: 23px 0;
}
.reading-toc {
  margin: 30px 0;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--secondary);
}
.reading-toc b {
  display: block;
  font-size: 12px;
  margin-bottom: 10px;
}
.reading-toc a {
  display: block;
  color: var(--primary);
  font-size: 12px;
  line-height: 2.2;
}
.reading-page section {
  margin: 40px 0;
  scroll-margin-top: 110px;
}
.reading-page section h2 {
  font-size: 24px;
  font-weight: 550;
  margin-bottom: 15px;
}
.reading-page section p {
  line-height: 2.2;
  color: var(--muted-foreground);
  font-size: 14px;
}
.reading-note {
  display: flex;
  gap: 12px;
  color: var(--muted-foreground);
  font-size: 12px;
  padding: 22px;
  background: var(--muted);
  border-radius: 8px;
  line-height: 1.9;
  margin: 35px 0;
}
.deals-notice,
.local-notice {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 21px 24px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--secondary);
  color: var(--primary);
  margin-bottom: 28px;
}
.deals-notice b,
.local-notice b {
  font-size: 13px;
  font-weight: 550;
}
.deals-notice p,
.local-notice p {
  color: var(--muted-foreground);
  font-size: 12px;
  margin-top: 5px;
  line-height: 1.9;
}
.deal-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 23px;
  background: var(--card);
}
.deal-card > .between {
  color: var(--primary);
}
.deal-card h3 {
  font-size: 15px;
  margin-top: 20px;
  font-weight: 550;
}
.deal-card p {
  font-size: 12px;
  color: var(--muted-foreground);
  margin: 8px 0 20px;
  min-height: 38px;
}
.coupon-code {
  font-family: var(--site-font);
  text-align: center;
  border: 1px dashed var(--border);
  background: var(--secondary);
  padding: 13px;
  color: var(--primary);
  border-radius: 6px;
  font-size: 18px;
  letter-spacing: 2px;
}
.deal-card > small {
  font-size: 12px;
  color: var(--muted-foreground);
  display: block;
  margin: 12px 0 19px;
}
.deal-card > .button {
  width: 100%;
}
.deal-card > .text-button {
  width: 100%;
  margin-top: 14px;
  font-size: 12px;
}
.about-intro {
  background: var(--secondary);
  border-radius: 11px;
  padding: 45px;
  margin-bottom: 30px;
  border: 1px solid var(--border);
}
.about-intro h2 {
  font-size: 38px;
  margin: 15px 0 25px;
  font-weight: 600;
  line-height: 1.5;
}
.about-intro p {
  max-width: 780px;
  font-size: 13px;
  line-height: 2.1;
  color: var(--muted-foreground);
  margin-top: 12px;
}
.about-values > div {
  background: var(--card);
}
.standards h2 {
  font-size: 23px;
  margin-bottom: 25px;
  font-weight: 550;
}
.standards p {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--border);
  padding: 17px 0;
  font-size: 13px;
  color: var(--muted-foreground);
}
.standards p > span {
  font-family: var(--site-font);
  color: var(--primary);
  font-size: 12px;
}
.contact-panel {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.contact-panel h2 {
  font-size: 22px;
  font-weight: 550;
}
.contact-panel p {
  font-size: 12px;
  color: var(--muted-foreground);
  margin-top: 9px;
}
.not-found {
  margin: 60px auto;
  min-height: 50vh;
  justify-content: center;
}
.not-found h1 {
  font-size: 30px;
  color: var(--foreground);
}
/* Content studio and dialogs */
.local-notice code {
  font-size: 12px;
  padding: 2px 4px;
  border-radius: 3px;
  background: #ffffff70;
  color: var(--primary);
  overflow-wrap: anywhere;
}
.manage-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 17px;
  margin-bottom: 30px;
}
.manage-stats > div {
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 20px;
  background: var(--card);
}
.manage-stats > div > span {
  color: var(--muted-foreground);
  font-size: 12px;
}
.manage-stats b {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--site-font);
  font-size: 33px;
  font-weight: 500;
  margin-top: 8px;
}
.manage-stats b small {
  font-size: 12px;
  color: var(--subtle);
  letter-spacing: 1px;
  font-weight: 400;
}
.manage-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.manage-toolbar > div:last-child {
  display: flex;
  gap: 9px;
}
.manage-panel {
  padding: 0;
  overflow: hidden;
}
.manage-panel .section-header {
  padding: 22px 23px;
  margin: 0;
}
.manage-table {
  min-width: 690px;
}
.manage-table th:first-child,
.manage-table td:first-child {
  padding-left: 23px;
}
.manage-name {
  display: flex;
  align-items: center;
  gap: 12px;
}
.manage-name > span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 8px;
}
.fill-state {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  border-radius: 5px;
  padding: 4px 8px;
  background: var(--muted);
}
.fill-state i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--subtle);
}
.fill-state.filled {
  background: var(--secondary);
  color: var(--primary);
}
.fill-state.filled i {
  background: var(--primary);
}
.table-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}
.table-actions > button {
  background: var(--secondary);
  color: var(--primary);
  padding: 6px 9px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-radius: 5px;
  font-size: 12px;
}
.manage-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted-foreground);
  font-size: 12px;
}
.manage-bottom > p {
  display: flex;
  align-items: center;
  gap: 6px;
}
.manage-bottom .text-button {
  font-size: 12px;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 19px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 0;
}
.form-field > span {
  font-size: 12px;
  color: var(--muted-foreground);
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  border: 1px solid var(--border);
  background: var(--background);
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 12px;
  color: var(--foreground);
  width: 100%;
  outline: none;
}
.form-field textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.9;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--subtle);
  font-size: 12px;
}
.check-field {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted-foreground);
}
.checkbox-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.checkbox-row > label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted-foreground);
}
.editor-dialog {
  width: min(760px, calc(100% - 28px)) !important;
  max-width: 760px !important;
  max-height: 90dvh;
  padding: 0 !important;
  gap: 0 !important;
  overflow: hidden;
  display: flex !important;
  flex-direction: column;
  border-radius: 13px !important;
}
.editor-head {
  padding: 25px 28px 19px;
}
.editor-head h2 {
  font-size: 23px;
  margin: 7px 0;
}
.editor-head p {
  font-size: 12px;
}
.editor-tabs {
  display: flex;
  gap: 20px;
  padding-inline: 28px;
  border-bottom: 1px solid var(--border);
}
.editor-tabs button {
  padding: 10px 0;
  color: var(--muted-foreground);
  font-size: 12px;
  background: transparent;
  border-bottom: 2px solid transparent;
}
.editor-tabs button.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.editor-body {
  padding: 24px 28px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}
.editor-footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 17px 28px;
  border-top: 1px solid var(--border);
  background: var(--card);
}
.editor-footer > span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted-foreground);
}
.editor-footer > div {
  display: flex;
  gap: 8px;
}
.editor-footer .button {
  font-size: 12px;
  min-height: 35px;
  padding: 8px 13px;
}
.metric-editor {
  display: grid;
  grid-template-columns: 22px 1fr 1fr;
  align-items: center;
  gap: 14px;
}
.metric-editor > span {
  font-family: var(--site-font);
  color: var(--subtle);
  font-size: 12px;
  margin-top: 23px;
}
.form-note {
  font-size: 12px;
  color: var(--muted-foreground);
}
.package-editor {
  padding: 17px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--muted);
}
.package-editor > .between {
  margin-bottom: 13px;
  font-size: 12px;
}
.settings-dialog {
  max-height: 90vh;
  overflow: auto;
}
.settings-dialog h2 {
  font-size: 22px;
}
.settings-dialog p {
  font-size: 12px;
}
.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 10px;
}
@media (min-width: 1450px) {
  .page-width {
    max-width: 1370px;
    padding-inline: 45px;
  }
  .hero h1 {
    font-size: 47px;
  }
  .hero-inner {
    min-height: 370px;
  }
  .airport-card {
    padding: 18px;
  }
}
@media (max-width: 1180px) {
  .page-width {
    padding-inline: 28px;
  }
  .desktop-nav {
    gap: 17px;
  }
  .header-inner {
    gap: 20px;
  }
  .desktop-nav > a {
    font-size: 12px;
  }
  .header-actions {
    gap: 9px;
  }
  .header-actions .manage-link span {
    display: none;
  }
  .airport-grid {
    gap: 13px;
  }
  .airport-card {
    padding: 13px;
  }
  .filter-tabs > button {
    padding: 8px 10px;
    font-size: 12px;
    gap: 5px;
  }
  .search-field {
    width: 215px;
  }
  .card-identity h3.unfilled {
    font-size: 12px;
  }
  .airport-logo {
    width: 35px;
    height: 35px;
    border-radius: 9px;
  }
  .card-identity {
    gap: 8px;
  }
  .card-actions {
    gap: 6px;
  }
  .card-actions > button {
    gap: 5px;
    padding: 6px;
  }
  .card-actions > a {
    font-size: 12px;
    gap: 3px;
  }
  .hero h1 {
    font-size: 41px;
  }
}
@media (max-width: 1000px) {
  .desktop-nav {
    gap: 14px;
  }
  .header-actions {
    gap: 5px;
  }
  .header-divider {
    display: none;
  }
  .brand strong {
    font-size: 19px;
  }
  .brand-mark {
    width: 35px;
    height: 35px;
  }
  .brand {
    gap: 7px;
  }
  .header-inner {
    gap: 15px;
  }
  .desktop-nav > a {
    font-size: 12px;
  }
  .hero-art {
    width: 50%;
    right: 0;
  }
  .hero-inner {
    min-height: 330px;
  }
  .label-top {
    right: 12px;
  }
  .art-label {
    padding: 9px;
    font-size: 12px;
    gap: 7px;
  }
  .art-label small {
    font-size: 12px;
  }
  .label-bottom {
    left: 0;
  }
  .hero h1 {
    font-size: 38px;
  }
  .hero-copy > p {
    font-size: 12px;
  }
  .principles > a {
    display: none;
  }
  .title-tools {
    gap: 15px;
  }
  .search-field {
    width: 205px;
  }
  .filter-tabs {
    gap: 2px;
  }
  .filter-tabs > button svg {
    display: none;
  }
  .card-identity {
    flex-wrap: wrap;
  }
  .card-identity > div:last-child {
    flex: 1;
    min-width: 100px;
  }
  .card-actions {
    flex-wrap: wrap;
    gap: 6px;
  }
  .card-actions > button {
    flex-basis: 100%;
  }
  .card-actions > a {
    flex-basis: 100%;
    padding-top: 1px;
  }
  .rating-row {
    flex-wrap: wrap;
  }
  .card-description {
    font-size: 12px;
  }
  .card-price > span {
    display: none;
  }
  .card-metrics span {
    font-size: 12px;
  }
  .hero-bottom {
    gap: 16px;
  }
  .table-tools {
    flex-wrap: wrap;
  }
  .manage-toolbar {
    flex-wrap: wrap;
  }
  .faq-section {
    gap: 40px;
  }
  .library-banner {
    gap: 20px;
  }
  .library-banner h2 {
    font-size: 18px;
  }
  .library-big-icon {
    width: 65px;
    height: 65px;
  }
}
@media (max-width: 767px) {
  .page-width {
    padding-inline: 20px;
  }
  .site-header {
    height: 67px;
  }
  .desktop-nav {
    display: none;
  }
  .header-inner {
    gap: 10px;
  }
  .header-actions {
    gap: 11px;
  }
  .header-actions .manage-link span {
    display: inline;
    font-size: 12px;
  }
  .mobile-menu-button {
    display: flex;
    padding: 3px;
  }
  .brand strong {
    font-size: 19px;
  }
  .brand div > span {
    font-size: 12px;
  }
  .hero-inner {
    min-height: 350px;
  }
  .hero-copy {
    width: 100%;
    padding: 30px 0;
  }
  .hero h1 {
    font-size: 38px;
    line-height: 1.42;
    position: relative;
    z-index: 2;
  }
  .hero-eyebrow {
    font-size: 12px;
    gap: 7px;
    letter-spacing: 1.1px;
    margin-bottom: 20px;
  }
  .hero-art {
    width: 53%;
    height: 220px;
    right: -39px;
    top: 16px;
    opacity: 0.42;
  }
  .hero-art > img {
    width: 100%;
    object-fit: cover;
  }
  .art-label,
  .orbit-caption {
    display: none;
  }
  .hero-copy > p {
    font-size: 12px;
    line-height: 1.95;
    max-width: 340px;
  }
  .hero-bottom {
    margin-top: 20px;
    gap: 18px;
  }
  .hero-bottom > span {
    font-size: 12px;
  }
  .hero-bottom svg {
    width: 13px;
  }
  .principles {
    gap: 8px;
    padding: 20px 0;
  }
  .principles > div {
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    border-right: 1px solid var(--border);
    padding-right: 7px;
  }
  .principles > div:last-of-type {
    border: 0;
  }
  .principle-icon {
    background: none;
    width: 24px;
    height: 24px;
  }
  .principles b {
    font-size: 12px;
  }
  .principles small {
    font-size: 12px;
    line-height: 1.6;
    max-width: 105px;
  }
  .catalog {
    padding-top: 28px;
  }
  .catalog-title {
    margin-bottom: 17px;
    align-items: center;
    gap: 10px;
  }
  .catalog-title h2 {
    font-size: 23px;
    gap: 8px;
  }
  .catalog-title .eyebrow {
    font-size: 12px;
    letter-spacing: 1.4px;
  }
  .title-tools {
    gap: 12px;
    padding: 0;
  }
  .title-tools .text-button {
    font-size: 0;
    gap: 2px;
    padding: 8px;
  }
  .title-tools .text-button svg {
    width: 17px;
    height: 17px;
  }
  .count-tag {
    font-size: 12px;
    padding: 0 6px;
  }
  .filter-toolbar {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding-bottom: 14px;
  }
  .filter-tabs {
    max-width: 100%;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 4px;
  }
  .filter-tabs::-webkit-scrollbar {
    display: none;
  }
  .filter-tabs > button {
    flex-shrink: 0;
    padding: 8px 10px;
    font-size: 12px;
    min-height: 33px;
  }
  .filter-tabs > button svg {
    display: none;
  }
  .search-field {
    width: 100%;
    height: 37px;
  }
  .search-field input {
    font-size: 12px;
  }
  .catalog-meta {
    padding-top: 13px;
    font-size: 12px;
  }
  .catalog-meta > div:first-child {
    gap: 4px;
    flex-wrap: wrap;
  }
  .catalog-meta > div:first-child .meta-divider {
    display: none;
  }
  .catalog-meta > div:first-child {
    font-size: 0;
  }
  .catalog-meta > div:first-child b {
    font-size: 12px;
  }
  .catalog-meta > div:first-child b:after {
    content: " 个卡片";
    font-size: 12px;
    color: var(--muted-foreground);
  }
  .catalog-meta > div:last-child {
    gap: 2px;
  }
  .catalog-meta select {
    font-size: 12px;
  }
  .catalog-meta .text-button {
    font-size: 12px;
  }
  .review-group {
    padding-top: 25px;
  }
  .group-heading {
    margin-bottom: 12px;
  }
  .group-heading h3 {
    font-size: 14px;
  }
  .group-icon svg {
    width: 16px;
  }
  .group-heading > div {
    gap: 6px;
  }
  .group-heading > p {
    font-size: 12px;
    margin-top: 5px;
    line-height: 1.8;
  }
  .airport-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .airport-card {
    padding: 14px;
    border-radius: 9px;
  }
  .card-top {
    margin-bottom: 13px;
  }
  .slot-no {
    font-size: 12px;
    letter-spacing: 0.8px;
  }
  .card-tools {
    gap: 8px;
  }
  .card-tools svg {
    width: 12px;
  }
  .card-identity {
    gap: 9px;
    align-items: center;
  }
  .airport-logo {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }
  .airport-logo > svg {
    width: 22px;
  }
  .card-identity > div:last-child {
    min-width: 75px;
  }
  .card-identity h3,
  .card-identity h3.unfilled {
    font-size: 12px;
  }
  .card-identity p {
    font-size: 12px;
    margin-top: 3px;
  }
  .card-tags {
    margin-top: 13px;
    gap: 4px;
  }
  .card-tags > span {
    font-size: 12px;
    padding: 2px 5px;
  }
  .rating-row {
    gap: 3px;
    font-size: 12px;
    margin-top: 10px;
  }
  .stars {
    gap: 1px;
  }
  .stars svg {
    width: 10px;
    height: 10px;
  }
  .rating-row b {
    font-size: 12px;
    margin-inline: 1px;
  }
  .compare-check {
    font-size: 12px;
  }
  .compare-check span {
    display: none;
  }
  .compare-check svg {
    width: 13px;
    height: 13px;
  }
  .card-metrics {
    margin-top: 12px;
    padding-block: 11px;
  }
  .card-metrics strong {
    font-size: 16px;
  }
  .card-metrics span {
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  .card-description {
    min-height: 55px;
    font-size: 12px;
    line-height: 1.85;
    margin-bottom: 10px;
  }
  .empty-description {
    font-size: 12px;
    gap: 7px;
  }
  .card-price {
    margin-bottom: 8px;
  }
  .card-price strong {
    font-size: 22px;
  }
  .card-price > div > span:last-child {
    font-size: 12px;
  }
  .card-actions {
    flex-wrap: wrap;
    padding-top: 10px;
    gap: 4px;
  }
  .card-actions > button {
    min-height: 30px;
    font-size: 12px;
    flex-basis: 100%;
    gap: 8px;
  }
  .card-actions > a {
    font-size: 12px;
    flex-basis: 100%;
    min-height: 26px;
    padding: 3px;
  }
  .gentle-notice {
    margin-top: 28px;
    padding: 17px;
    gap: 10px;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .gentle-notice > svg {
    width: 17px;
    margin-top: 2px;
  }
  .gentle-notice > div {
    flex: 1;
    min-width: 210px;
  }
  .gentle-notice b {
    font-size: 12px;
  }
  .gentle-notice p {
    font-size: 12px;
    line-height: 1.9;
  }
  .gentle-notice > a {
    margin-left: 27px;
    font-size: 12px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 40px 0;
  }
  .faq-section h2 {
    font-size: 21px;
  }
  .faq-section .eyebrow {
    font-size: 12px;
  }
  .faq-section > div > a {
    margin-top: 13px;
  }
  .faq-items summary {
    font-size: 12px;
    gap: 15px;
  }
  .faq-items details p {
    font-size: 12px;
  }
  .site-footer {
    padding-top: 26px;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    padding-bottom: 20px;
  }
  .footer-links {
    gap: 18px;
    font-size: 12px;
    width: 100%;
    flex-wrap: wrap;
  }
  .footer-main > div > p {
    font-size: 12px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 9px;
    font-size: 12px;
    padding: 17px 0 20px;
  }
  .footer-bottom > p:first-child {
    width: 100%;
  }
  .footer-bottom > a {
    margin-left: auto;
  }
  .back-to-top {
    right: 14px;
    bottom: 18px;
    width: 34px;
    height: 34px;
  }
  .floating-compare {
    bottom: 15px;
    padding: 12px 14px;
    gap: 16px;
    font-size: 12px;
  }
  .subpage-heading {
    padding: 23px 0 28px;
    align-items: flex-start;
    gap: 10px;
  }
  .breadcrumb {
    margin-bottom: 23px;
    font-size: 12px;
  }
  .subpage-heading .eyebrow {
    font-size: 12px;
    letter-spacing: 1.2px;
  }
  .subpage-heading h1 {
    font-size: 28px;
  }
  .subpage-heading p {
    font-size: 12px;
  }
  .subpage-heading > .button {
    font-size: 12px;
    padding: 8px;
    margin-top: 57px;
  }
  .dimension-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .dimension-grid > div {
    padding: 17px;
  }
  .dimension-grid svg {
    margin-bottom: 10px;
  }
  .dimension-grid b {
    font-size: 12px;
  }
  .dimension-grid p {
    font-size: 12px;
  }
  .panel {
    padding: 18px;
  }
  .section-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 14px;
  }
  .section-header h2 {
    font-size: 17px;
  }
  .section-header p {
    font-size: 12px;
  }
  .compare-slots {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .compare-slots > button {
    padding: 22px 14px;
    gap: 7px;
  }
  .compare-slots > button > span {
    font-size: 12px;
  }
  .table-tools {
    width: 100%;
    flex-wrap: nowrap;
    gap: 8px;
  }
  .table-tools .search-field {
    width: auto;
    flex: 1;
  }
  .table-tools select {
    font-size: 12px;
    padding: 7px;
  }
  .table-scroll {
    scrollbar-width: thin;
  }
  .review-summary {
    flex-direction: column;
    gap: 23px;
  }
  .review-summary h2 {
    font-size: 22px;
  }
  .review-summary > div:last-child {
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
  }
  .detail-price {
    width: 100%;
  }
  .detail-price b {
    font-size: 32px;
  }
  .summary-tags {
    gap: 10px;
    font-size: 12px;
  }
  .review-layout {
    display: block;
  }
  .review-toc {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 0 15px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
  }
  .review-toc > .eyebrow {
    width: 100%;
    margin-bottom: 4px;
  }
  .review-toc > a {
    font-size: 12px;
    padding: 7px 0;
    gap: 6px;
  }
  .review-toc > a:last-child {
    border: 0;
    margin-top: 0;
  }
  .review-article h2 {
    font-size: 22px;
  }
  .review-article .eyebrow {
    font-size: 12px;
  }
  .review-text {
    font-size: 12px;
  }
  .unfilled-text {
    padding: 17px;
  }
  .detail-metrics {
    padding: 15px 5px;
  }
  .detail-metrics b {
    font-size: 24px;
  }
  .detail-metrics span {
    font-size: 12px;
  }
  .unlock-grid {
    gap: 8px;
  }
  .unlock-grid > div {
    padding: 13px;
  }
  .unlock-grid b {
    font-size: 12px;
  }
  .unlock-grid span {
    font-size: 12px;
  }
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .plans-grid > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 18px;
    gap: 9px;
  }
  .plans-grid h3 {
    grid-column: 1;
  }
  .plans-grid strong {
    grid-column: 2;
    grid-row: 1/3;
    align-self: center;
    text-align: right;
  }
  .plans-grid b {
    grid-column: 1;
  }
  .plans-grid p {
    grid-column: 1/-1;
  }
  .pros-cons {
    gap: 10px;
  }
  .pros-cons h3 {
    font-size: 12px;
  }
  .pros-cons .review-text {
    font-size: 12px;
    padding: 13px;
  }
  .coupon-inline {
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
  }
  .coupon-inline > span {
    width: 100%;
  }
  .info-pair {
    gap: 30px;
  }
  .article-bottom-nav {
    font-size: 12px;
  }
  .library-banner {
    flex-wrap: wrap;
    padding: 22px;
    gap: 15px;
  }
  .library-big-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
  }
  .library-big-icon svg {
    width: 29px;
  }
  .library-banner > div:nth-child(2) {
    flex: 1;
  }
  .library-banner .eyebrow {
    font-size: 12px;
    letter-spacing: 1px;
  }
  .library-banner h2 {
    font-size: 16px;
  }
  .library-banner p {
    font-size: 12px;
  }
  .library-banner > .button {
    margin-left: 0;
    font-size: 12px;
    padding: 8px 12px;
    min-height: 34px;
  }
  .article-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .article-visual {
    height: 115px;
  }
  .article-visual > svg {
    width: 45px;
    height: 45px;
  }
  .article-card-body {
    padding: 14px;
  }
  .article-card h3 {
    font-size: 13px;
    margin: 9px 0;
    line-height: 1.7;
  }
  .article-card p {
    font-size: 12px;
    min-height: 49px;
  }
  .article-card-body > div {
    padding-top: 10px;
    margin-top: 15px;
  }
  .article-card-body > div > span {
    font-size: 12px;
    gap: 4px;
  }
  .category-label {
    font-size: 12px;
  }
  .reading-page {
    padding-top: 24px;
  }
  .back-link {
    margin-bottom: 30px;
  }
  .reading-page h1 {
    font-size: 28px;
  }
  .article-deck {
    font-size: 12px;
  }
  .reading-page section h2 {
    font-size: 21px;
  }
  .reading-page section p {
    font-size: 13px;
  }
  .reading-meta {
    font-size: 12px;
    gap: 6px;
    flex-wrap: wrap;
  }
  .reading-toc {
    padding: 20px;
  }
  .reading-toc a {
    font-size: 12px;
  }
  .deal-card {
    padding: 17px;
  }
  .deal-card h3 {
    font-size: 12px;
  }
  .deal-card p {
    font-size: 12px;
  }
  .deal-card > .button {
    padding: 8px 10px;
    font-size: 12px;
  }
  .coupon-code {
    font-size: 15px;
    padding: 10px;
    letter-spacing: 1px;
  }
  .deals-notice,
  .local-notice {
    padding: 18px;
    gap: 12px;
  }
  .deals-notice svg,
  .local-notice svg {
    width: 19px;
  }
  .deals-notice b,
  .local-notice b {
    font-size: 12px;
  }
  .deals-notice p,
  .local-notice p {
    font-size: 12px;
  }
  .about-intro {
    padding: 25px;
  }
  .about-intro h2 {
    font-size: 29px;
  }
  .about-intro p {
    font-size: 12px;
  }
  .standards p {
    font-size: 12px;
    gap: 13px;
    align-items: flex-start;
  }
  .standards h2 {
    font-size: 22px;
  }
  .contact-panel {
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .contact-panel h2 {
    font-size: 20px;
  }
  .contact-panel p {
    font-size: 12px;
  }
  .manage-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .manage-stats > div {
    padding: 17px;
  }
  .manage-stats b {
    font-size: 28px;
  }
  .manage-stats > div > span {
    font-size: 12px;
  }
  .manage-toolbar {
    gap: 15px;
    flex-direction: column;
    align-items: stretch;
  }
  .manage-toolbar > div:last-child {
    justify-content: flex-end;
  }
  .manage-toolbar .button {
    font-size: 12px;
    padding: 8px 11px;
    min-height: 34px;
  }
  .manage-panel {
    padding: 0;
  }
  .manage-panel .section-header {
    padding: 18px;
    flex-wrap: nowrap;
  }
  .manage-panel .search-field {
    width: 180px;
  }
  .manage-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    font-size: 12px;
  }
  .manage-bottom .text-button {
    font-size: 12px;
  }
  .advanced-filters {
    padding: 14px;
    gap: 13px;
    font-size: 12px;
  }
  .advanced-filters > label {
    flex: 1;
    white-space: nowrap;
  }
  .advanced-filters select,
  .advanced-filters input[type="number"] {
    width: 100px;
  }
  .advanced-filters .check-field {
    font-size: 12px;
  }
  .editor-dialog {
    max-height: 92dvh;
  }
  .editor-head {
    padding: 21px 20px 15px;
  }
  .editor-head h2 {
    font-size: 21px;
  }
  .editor-head .eyebrow {
    font-size: 12px;
  }
  .editor-head p {
    font-size: 12px;
  }
  .editor-tabs {
    padding-inline: 20px;
    gap: 16px;
    flex-shrink: 0;
  }
  .editor-tabs button {
    font-size: 12px;
    padding: 10px 0;
    white-space: nowrap;
  }
  .editor-body {
    padding: 20px;
  }
  .form-grid {
    gap: 16px 12px;
  }
  .form-field > span {
    font-size: 12px;
  }
  .form-field input,
  .form-field select,
  .form-field textarea {
    font-size: 12px;
    padding: 9px;
  }
  .form-field input::placeholder,
  .form-field textarea::placeholder {
    font-size: 12px;
  }
  .editor-footer {
    padding: 14px 20px;
    flex-wrap: wrap;
  }
  .editor-footer > span {
    font-size: 12px;
  }
  .editor-footer > div {
    margin-left: auto;
  }
  .editor-footer .button {
    font-size: 12px;
    padding: 7px 11px;
    min-height: 33px;
  }
  .metric-editor {
    gap: 8px;
    grid-template-columns: 18px 1fr 1fr;
  }
  .package-editor {
    padding: 14px;
  }
  .checkbox-row {
    gap: 10px;
  }
  .checkbox-row > label {
    font-size: 12px;
  }
  .form-note {
    font-size: 12px;
  }
  .dialog-actions {
    flex-wrap: wrap;
  }
}
@media (max-width: 400px) {
  .page-width {
    padding-inline: 15px;
  }
  .header-actions {
    gap: 7px;
  }
  .header-actions .manage-link span {
    display: none;
  }
  .hero h1 {
    font-size: 35px;
  }
  .hero-art {
    right: -51px;
    top: 30px;
  }
  .hero-eyebrow {
    letter-spacing: 0.8px;
    font-size: 12px;
  }
  .hero-copy > p {
    font-size: 12px;
  }
  .hero-inner {
    min-height: 330px;
  }
  .hero-bottom > span {
    font-size: 12px;
  }
  .hero-bottom {
    gap: 14px;
  }
  .airport-grid {
    gap: 10px;
  }
  .airport-card {
    padding: 12px 10px;
  }
  .card-identity {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .card-identity > div:last-child {
    width: 100%;
  }
  .airport-logo {
    width: 33px;
    height: 33px;
  }
  .card-identity h3.unfilled {
    font-size: 12px;
  }
  .card-identity p {
    font-size: 12px;
  }
  .card-tools {
    gap: 6px;
  }
  .slot-no {
    font-size: 12px;
  }
  .stars svg {
    width: 9px;
  }
  .rating-row {
    gap: 2px;
    font-size: 12px;
  }
  .card-metrics {
    margin-inline: -2px;
  }
  .card-metrics span {
    font-size: 12px;
    letter-spacing: -0.4px;
  }
  .card-tags > span {
    padding-inline: 4px;
    font-size: 12px;
  }
  .empty-description {
    font-size: 12px;
  }
  .principles small {
    font-size: 12px;
  }
  .filter-tabs > button {
    font-size: 12px;
    padding-inline: 8px;
  }
  .card-description {
    min-height: 57px;
  }
  .editor-tabs {
    gap: 12px;
  }
  .editor-tabs button {
    font-size: 12px;
  }
  .editor-footer > span {
    display: none;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: fade-up 0.5s var(--ease-out) both;
  }
  .hero-art {
    animation: fade-in 0.8s var(--ease-out) both;
  }
  .airport-card {
    animation: fade-up 0.35s var(--ease-out) both;
  }
  .airport-card:nth-child(4n + 2) {
    animation-delay: 0.03s;
  }
  .airport-card:nth-child(4n + 3) {
    animation-delay: 0.06s;
  }
  .airport-card:nth-child(4n + 4) {
    animation-delay: 0.09s;
  }
  @keyframes fade-up {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* Final readability pass: empty values stay quiet, functional labels remain legible. */
.hero-art > img {
  object-fit: contain;
  mask-image: radial-gradient(
    ellipse 66% 83% at 50% 50%,
    #000 43%,
    transparent 80%
  );
}
.card-metrics span {
  color: var(--muted-foreground);
}
.card-tags > span {
  color: var(--muted-foreground);
}
.card-identity p {
  color: var(--muted-foreground);
}
.card-actions > a {
  color: var(--muted-foreground);
}
@media (min-width: 768px) {
  .hero-inner {
    min-height: 320px;
  }
  .hero-copy {
    padding-block: 30px;
  }
  .principles {
    padding-block: 22px;
  }
  .catalog {
    padding-top: 31px;
  }
}
@media (max-width: 767px) {
  .slot-no {
    font-size: 12px;
  }
  .card-top {
    height: 22px;
    margin-bottom: 10px;
  }
  .card-tools {
    gap: 2px;
  }
  .card-tools > button {
    min-width: 22px;
    min-height: 24px;
    display: grid;
    place-items: center;
  }
  .card-tools svg {
    width: 13px;
    height: 13px;
  }
  .card-identity h3,
  .card-identity h3.unfilled {
    font-size: 12px;
  }
  .card-identity p {
    font-size: 12px;
  }
  .card-tags > span {
    font-size: 12px;
    padding: 2px 4px;
  }
  .rating-row {
    font-size: 12px;
    gap: 2px;
  }
  .stars svg {
    width: 10px;
    height: 10px;
  }
  .compare-check {
    min-width: 20px;
    min-height: 22px;
    justify-content: center;
  }
  .card-metrics strong {
    font-size: 18px;
  }
  .card-metrics span {
    font-size: 12px;
    letter-spacing: 0;
    white-space: normal;
    text-align: center;
    line-height: 1.6;
    min-height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 2px;
  }
  .card-description,
  .empty-description {
    font-size: 12px;
    line-height: 1.9;
    min-height: 60px;
  }
  .card-price > div > span:last-child {
    font-size: 12px;
  }
  .card-actions > button {
    font-size: 12px;
    min-height: 34px;
  }
  .card-actions > a {
    font-size: 12px;
    min-height: 29px;
  }
}
