/* ── Model Detail Page ── */

.model-page {
  padding-top: var(--header-h);
}

/* Hero */
.model-hero {
  position: relative;
  height: 70vh;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.model-hero__bg {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
}
.model-hero--profile .model-hero__bg {
  background-size: contain;
  background-color: #1a1a1a;
  background-position: center 55%;
}
.model-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%);
}

.model-hero__content {
  position: relative;
  z-index: 1;
  padding: 48px 32px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.model-hero__logo {
  max-width: min(90vw, 480px);
  width: auto;
  height: auto;
  max-height: 56px;
  margin-bottom: 16px;
  object-fit: contain;
  filter: drop-shadow(0 2px 16px rgba(0, 0, 0, 0.35));
}

.model-hero__logo--white {
  max-height: 72px;
  mix-blend-mode: screen;
  filter: grayscale(1) brightness(4) drop-shadow(0 2px 16px rgba(0, 0, 0, 0.35));
  opacity: 1;
}

.model-hero__logo--color {
  max-height: 72px;
  mix-blend-mode: screen;
  filter: drop-shadow(0 2px 16px rgba(0, 0, 0, 0.35));
}

.model-hero__logo--dark {
  filter: brightness(0) drop-shadow(0 2px 14px rgba(255, 255, 255, 0.35));
}

.model-hero__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, var(--text-hero));
  font-weight: var(--weight-ui);
  line-height: var(--text-hero-lh);
  color: var(--white);
  letter-spacing: normal;
}

.model-hero__tagline {
  font-size: var(--text-product);
  font-weight: var(--weight-body);
  color: rgba(255,255,255,0.8);
  margin-top: 8px;
}

.model-hero__meta {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.model-hero__price {
  font-size: var(--text-product);
  font-weight: var(--weight-ui);
  color: var(--white);
}

.model-hero__promo {
  font-size: 14px;
  color: #4ade80;
  font-weight: 500;
  align-self: center;
}

.launch-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--weight-ui);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  margin-bottom: 16px;
}

.launch-badge--hero {
  backdrop-filter: blur(8px);
}

.docs-empty--teaser .launch-badge {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.12);
  color: var(--gray);
  margin-bottom: 12px;
}

.spec-teaser-note {
  font-size: 13px;
  color: var(--gray-light);
  margin-bottom: 24px;
  padding: 12px 16px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 8px;
}

/* Highlights bar */
.model-highlights {
  background: var(--black);
  color: var(--white);
  padding: 32px;
}

.model-highlights__grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.model-highlights__value {
  display: block;
  font-size: var(--text-hero);
  font-weight: var(--weight-ui);
  letter-spacing: normal;
}

.model-highlights__label {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* Content wrapper */
.model-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 24px;
}

.model-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.model-intro p {
  font-size: var(--text-body);
  line-height: var(--text-body-lh);
  color: var(--gray-light);
}

/* Official chery.my link */
.model-official-link {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 48px;
  padding: 20px 0;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.model-official-link__anchor {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
  text-decoration: none;
  transition: opacity var(--transition);
}

.model-official-link__anchor:hover {
  opacity: 0.65;
}

.model-official-link__arrow {
  font-size: 18px;
  line-height: 1;
}

.model-official-link__note {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray-light);
}

/* Official specs panel (PDF + chery.my — no inline spec tables) */
.official-specs__lead {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 32px;
  font-size: var(--text-body);
  line-height: var(--text-body-lh);
  color: var(--gray-light);
}

.official-specs__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}

.official-specs__note {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray-light);
}

.official-specs .docs-grid {
  margin-top: 0;
}

/* Variants */
.model-variants {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 64px;
}

.variant-card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  transition: border-color var(--transition);
}
.variant-card:hover { border-color: var(--black); }

.variant-card__name {
  font-size: var(--text-product);
  font-weight: var(--weight-ui);
}

.variant-card__price {
  font-size: var(--text-hero);
  font-weight: var(--weight-ui);
  line-height: var(--text-hero-lh);
  margin: 8px 0;
}

.variant-card__otr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 12px 0 8px;
}

.variant-card__otr-label {
  font-size: 12px;
  font-weight: var(--weight-body);
  line-height: 1.35;
  color: var(--gray-light);
  max-width: 12rem;
}

.variant-card__otr-amount {
  font-size: var(--text-hero);
  font-weight: var(--weight-ui);
  line-height: var(--text-hero-lh);
  color: var(--black);
}

.variant-card__promo {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}

/* Tabs */
.model-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 40px;
  overflow-x: auto;
}

.model-tab {
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-light);
  border-bottom: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.model-tab:hover { color: var(--black); }
.model-tab.active {
  color: var(--black);
  border-bottom-color: var(--black);
}

.model-panel { display: none; }
.model-panel.active { display: block; }

/* Spec sheet */
.spec-group {
  margin-bottom: 40px;
}

.spec-group__title {
  font-size: 18px;
  font-weight: var(--weight-ui);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr {
  border-bottom: 1px solid #f0f0f0;
}

.spec-table td {
  padding: 12px 0;
  font-size: 14px;
  vertical-align: top;
}

.spec-table td:first-child {
  color: var(--gray-light);
  width: 45%;
  padding-right: 16px;
}

.spec-table td:last-child {
  font-weight: 500;
}

/* Documents */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.doc-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 160px;
  padding: 28px 24px;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  background: var(--white);
  transition: border-color var(--transition), background var(--transition);
  color: inherit;
}
.doc-card:hover {
  border-color: var(--black);
  box-shadow: none;
  transform: none;
  background: #fafafa;
}

.doc-card__type {
  display: inline-block;
  font-size: 11px;
  font-weight: var(--weight-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0;
  border-radius: 0;
  width: fit-content;
  background: none;
  color: var(--gray-light);
}
.doc-card__type--brochure,
.doc-card__type--specsheet,
.doc-card__type--pricelist {
  background: none;
  color: var(--gray-light);
}

.doc-card__type--service {
  background: none;
  color: #0d7a5f;
}

.doc-card__title {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.doc-card__date {
  font-size: 13px;
  color: var(--gray-light);
}

.doc-card__action {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  margin-top: auto;
  padding-top: 12px;
}

.docs-empty {
  text-align: center;
  padding: 48px 24px;
  background: var(--gray-bg);
  border-radius: 8px;
}
.docs-empty p {
  color: var(--gray-light);
  margin-bottom: 20px;
}

.docs-note {
  font-size: 13px;
  color: var(--gray-light);
  margin-top: 24px;
  text-align: center;
}

.spec-download {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}


/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 28px;
  background: var(--gray-bg);
  border-radius: 8px;
}

.feature-card__title {
  font-size: 16px;
  font-weight: var(--weight-ui);
  margin-bottom: 8px;
}

.feature-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-light);
}

/* Gallery */
.gallery-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.gallery-filter {
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid #ddd;
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.gallery-filter.active,
.gallery-filter:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-item {
  aspect-ratio: 16/10;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item__number {
  position: absolute;
  top: 8px;
  left: 8px;
  background: rgba(0,0,0,0.75);
  color: var(--white);
  font-size: 11px;
  font-weight: var(--weight-ui);
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 0.02em;
}

.gallery-item__label {
  position: absolute;
  bottom: 8px;
  left: 8px;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 3px;
}

/* Colors */
.colors-intro {
  text-align: center;
  max-width: 520px;
  margin: 0 auto 32px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-light);
}

.colors-variant-group {
  margin-bottom: 40px;
}

.colors-variant-group__title {
  text-align: center;
  font-size: 15px;
  font-weight: var(--weight-ui);
  margin: 0 0 20px;
  color: var(--black);
}

.colors-note {
  text-align: center;
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-light);
}

.colors-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.color-swatch {
  text-align: center;
  cursor: pointer;
}

.color-swatch__circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #ddd;
  margin: 0 auto 8px;
  transition: transform var(--transition), border-color var(--transition);
}
.color-swatch.active .color-swatch__circle,
.color-swatch:hover .color-swatch__circle {
  transform: scale(1.1);
  border-color: var(--black);
}

.color-swatch__name {
  font-size: 13px;
  color: var(--gray-light);
  text-align: center;
  max-width: 110px;
  line-height: 1.3;
}

.color-swatch__badge {
  display: block;
  margin-top: 4px;
  font-size: 10px;
  font-weight: var(--weight-ui);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  opacity: 0.55;
}

.variants-note {
  text-align: center;
  margin: -40px 0 48px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray-light);
}

/* CTA section */
.model-cta {
  background: var(--gray-bg);
  padding: 64px 24px;
  text-align: center;
  margin-top: 64px;
}

.model-cta__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, var(--text-section));
  font-weight: var(--weight-ui);
  line-height: var(--text-hero-lh);
  margin-bottom: 12px;
}

.model-cta__text {
  color: var(--gray-light);
  margin-bottom: 28px;
}

.model-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 36px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 48px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  padding: 16px;
  opacity: 0.7;
  transition: opacity var(--transition);
}
.lightbox__nav:hover { opacity: 1; }
.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }

.lightbox__caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* Sticky CTA bar */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid #eee;
  padding: 12px 24px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  padding-left: max(24px, env(safe-area-inset-left));
  padding-right: max(24px, env(safe-area-inset-right));
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.sticky-cta.visible { transform: translateY(0); }

.sticky-cta__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sticky-cta__name {
  display: block;
  font-weight: var(--weight-ui);
  font-size: var(--text-product);
}

.sticky-cta__price {
  display: block;
  font-size: 13px;
  color: var(--gray-light);
}

.sticky-cta__actions {
  display: flex;
  gap: 8px;
}

/* Not found */
.model-not-found {
  text-align: center;
  padding: 120px 24px;
}
.model-not-found h1 { margin-bottom: 16px; }

.model-not-found p {
  color: var(--gray-light);
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.model-not-found code {
  font-size: 13px;
  background: var(--gray-bg);
  padding: 2px 6px;
  border-radius: 4px;
}

.model-not-found__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 640px;
  margin: 0 auto;
}

.model-not-found__link {
  padding: 10px 18px;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
}

.model-not-found__link:hover {
  border-color: var(--black);
  background: var(--gray-bg);
}

/* Responsive */
@media (max-width: 768px) {
  .model-hero { height: 50vh; height: 50dvh; min-height: 360px; }
  .model-hero__content { padding: 32px 20px; }
  .model-highlights__grid { grid-template-columns: 1fr; gap: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .model-tabs { gap: 0; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
  .model-tabs::-webkit-scrollbar { display: none; }
  .model-tab { padding: 12px 16px; font-size: 13px; flex-shrink: 0; min-height: 44px; }
  .sticky-cta__inner { flex-direction: column; text-align: center; }
  .sticky-cta__actions { width: 100%; justify-content: center; }
  .sticky-cta__actions .btn { flex: 1; max-width: 160px; min-height: 44px; }
  .model-page .whatsapp-float {
    bottom: max(96px, calc(12px + env(safe-area-inset-bottom)));
  }
  .header__nav, .header__actions { display: none; }
  .header__menu-btn { display: flex; }
}

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

/* ── Documents Library Page ── */
.docs-library-page {
  background: var(--white);
}

.docs-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 120px 32px 96px;
}

.docs-page__header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 72px;
}

.docs-page__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, var(--text-hero));
  font-weight: var(--weight-ui);
  letter-spacing: normal;
  line-height: var(--text-hero-lh);
}

.docs-page__lead {
  font-size: var(--text-body);
  line-height: var(--text-body-lh);
  color: var(--gray-light);
}

.docs-page__disclaimer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid #eee;
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-light);
  text-align: center;
}

.legal-page .docs-page__header {
  margin-bottom: 32px;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.legal-nav a {
  color: var(--gray-light);
  text-decoration: none;
  transition: color var(--transition);
}

.legal-nav a:hover,
.legal-nav a[aria-current="page"] {
  color: var(--black);
}

.legal-nav a[aria-current="page"] {
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #eee;
}

.legal-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.legal-section__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: var(--weight-ui);
  margin: 0 0 20px;
  letter-spacing: normal;
}

.legal-section__subtitle {
  font-size: 16px;
  font-weight: 500;
  color: var(--black);
  margin: 1.75em 0 0.65em;
}

.legal-section__body {
  font-size: var(--text-body);
  line-height: 1.75;
  color: var(--gray-light);
}

.legal-section__body p {
  margin: 0 0 1.25em;
}

.legal-section__body p:last-child {
  margin-bottom: 0;
}

.legal-section__body ul {
  margin: 0 0 1.25em;
  padding-left: 1.35em;
}

.legal-section__body li {
  margin-bottom: 0.5em;
}

.legal-section__body li:last-child {
  margin-bottom: 0;
}

.legal-section__body a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-section__body a:hover {
  color: var(--chery-red);
}

.docs-model-section {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid #eee;
}
.docs-model-section:last-of-type { border-bottom: none; }

.docs-model-section__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}
.docs-model-section__head h2 {
  font-size: 24px;
  font-weight: var(--weight-ui);
  letter-spacing: normal;
}
.docs-model-section__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.docs-model-section__link:hover {
  opacity: 0.65;
}

/* Monthly promo banner — model page */
.model-promo-banner {
  background: var(--black);
  color: var(--white);
  padding: 48px 32px;
}

.model-promo-banner__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.model-promo-banner__eyebrow {
  font-size: 12px;
  font-weight: var(--weight-ui);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}

.model-promo-banner__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, var(--text-hero));
  font-weight: var(--weight-ui);
  letter-spacing: normal;
  line-height: var(--text-hero-lh);
  margin-bottom: 16px;
}

.model-promo-banner__text {
  font-size: var(--text-body);
  line-height: var(--text-body-lh);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
}

.model-promo-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 20px;
}

.model-promo-banner__actions .btn--dark {
  background: var(--white);
  color: var(--black);
}

.model-promo-banner__actions .btn--dark:hover {
  background: #e8e8e8;
}

.model-promo-banner__note {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 640px) {
  .model-promo-banner { padding: 40px 20px; }
  .model-promo-banner__actions .btn { width: 100%; }
}

.docs-missing {
  margin-top: 64px;
  padding: 40px;
  background: var(--gray-bg);
  border-radius: 12px;
}
.docs-missing__title {
  font-size: 20px;
  font-weight: var(--weight-ui);
  margin-bottom: 8px;
}
.docs-missing__desc {
  font-size: 14px;
  color: var(--gray-light);
  margin-bottom: 24px;
}
.docs-missing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.missing-card {
  background: var(--white);
  border-radius: 8px;
  padding: 20px;
}
.missing-card h3 {
  font-size: 15px;
  font-weight: var(--weight-ui);
  margin-bottom: 12px;
}
.missing-card ul {
  list-style: none;
  padding: 0;
}
.missing-card li {
  font-size: 13px;
  color: var(--gray-light);
  padding: 4px 0;
}
.missing-card li::before {
  content: '○ ';
  color: #f59e0b;
}
