:root {
  color-scheme: light;
  --ink: #1d2a25;
  --muted: #66716d;
  --line: #dfe4df;
  --paper: #f7f8f5;
  --white: #ffffff;
  --yellow: #f6c650;
  --coral: #ec725d;
  --teal: #2d8c7f;
  --blue: #4f73c9;
  --lavender: #8573b8;
  --green-soft: #e7f2eb;
  --shadow: 0 18px 50px rgba(29, 42, 37, .12);
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  letter-spacing: 0;
}
button, input, select, textarea { font: inherit; letter-spacing: 0; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { max-width: 100%; }

.shell { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(247, 248, 245, .94);
  border-bottom: 1px solid rgba(29, 42, 37, .1);
  backdrop-filter: blur(16px);
}
.header-inner {
  height: 66px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 21px;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  background: var(--ink);
  color: var(--yellow);
  border-radius: 6px;
  font: 800 18px/1 ui-monospace, SFMono-Regular, Consolas, monospace;
}
.main-nav { display: flex; align-items: center; gap: 24px; }
.main-nav a { color: #4c5753; font-size: 14px; font-weight: 600; }
.main-nav a:hover, .main-nav a:focus-visible { color: var(--ink); }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }

.button {
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 8px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }
.button:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.button-primary { background: var(--ink); color: var(--white); }
.button-primary:hover { background: #304039; }
.button-secondary { background: var(--white); border-color: var(--line); }
.button-secondary:hover { border-color: #aeb8b2; }
.button-dark { background: var(--yellow); color: var(--ink); }
.button-dark:hover { background: #ffd56c; }
.button-symbol { font-size: 19px; line-height: 1; }
.icon-button {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 20px;
}
.mobile-search { display: none; }

.intro-band {
  position: relative;
  overflow: hidden;
  background-color: #eef3ef;
  background-image:
    linear-gradient(rgba(29, 42, 37, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 42, 37, .045) 1px, transparent 1px);
  background-size: 28px 28px;
  border-bottom: 1px solid var(--line);
}
.intro-layout {
  min-height: 480px;
  padding: 64px 0 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: 64px;
  align-items: center;
}
.eyebrow, .section-label {
  margin: 0 0 10px;
  color: var(--teal);
  font: 800 12px/1.2 ui-monospace, SFMono-Regular, Consolas, monospace;
  text-transform: uppercase;
}
.intro-copy h1 {
  margin: 0;
  max-width: 700px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
  font-weight: 850;
}
.intro-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 20px 0 0;
  color: #53605b;
  font-size: 17px;
}
.search-box {
  height: 54px;
  max-width: 620px;
  margin-top: 28px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid #cdd5cf;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(29, 42, 37, .08);
}
.search-box:focus-within { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(45, 140, 127, .14); }
.search-symbol { font-size: 25px; line-height: 1; color: #52615b; }
.search-box input { width: 100%; border: 0; outline: 0; background: transparent; font-size: 15px; }
kbd {
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 5px;
  padding: 2px 7px;
  color: #7a8580;
  background: #f8faf8;
  font: 600 11px/1.4 ui-monospace, SFMono-Regular, Consolas, monospace;
}
.catalog-stats { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 9px 22px; color: #69736f; font-size: 13px; }
.catalog-stats span { position: relative; }
.catalog-stats span + span::before { content: ""; position: absolute; left: -12px; top: 50%; width: 3px; height: 3px; border-radius: 50%; background: #a3ada8; }
.catalog-stats strong { color: var(--ink); }

.pet-stage { display: flex; justify-content: center; }
.stage-window {
  position: relative;
  width: min(410px, 100%);
  aspect-ratio: 1.04;
  overflow: hidden;
  background: #fdfcf8;
  border: 1px solid #cfd7d1;
  border-radius: 8px;
  box-shadow: 16px 18px 0 #d8e4dc, var(--shadow);
}
.stage-toolbar {
  height: 42px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid #dfe4df;
  background: #f4f5f1;
}
.stage-toolbar span { width: 9px; height: 9px; border-radius: 50%; background: #d26355; }
.stage-toolbar span:nth-child(2) { background: #e3b642; }
.stage-toolbar span:nth-child(3) { background: #4c9c70; }
.stage-toolbar small { margin-left: auto; color: #7b8681; font: 600 10px/1 ui-monospace, monospace; }
.hero-sprite {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 192px;
  height: 208px;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.stage-message {
  position: absolute;
  z-index: 3;
  left: 18px;
  right: 18px;
  bottom: 16px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  color: #55615c;
  font-size: 11px;
}
.stage-message strong { color: var(--ink); font-size: 13px; }
.stage-floor {
  position: absolute;
  left: 50%;
  bottom: 68px;
  width: 210px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(29, 42, 37, .1);
  filter: blur(4px);
}

.sprite {
  background-repeat: no-repeat;
  background-size: 800% 900%;
  background-position: 0 0;
  image-rendering: pixelated;
  animation: petFrames 1.05s steps(5, end) infinite;
}
@keyframes petFrames {
  from { background-position: 0 0; }
  to { background-position: 71.4286% 0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .sprite { animation: none; }
  .button { transition: none; }
}

.gallery-section { padding: 68px 0 76px; }
.gallery-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 24px; }
.gallery-heading h2, .publish-layout h2, .dialog-heading h2 { margin: 0; font-size: 30px; line-height: 1.2; }
.gallery-heading > p { margin: 0; color: var(--muted); font-size: 14px; }
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0 20px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.category-scroll { min-width: 0; display: flex; gap: 7px; overflow-x: auto; scrollbar-width: none; }
.category-scroll::-webkit-scrollbar { display: none; }
.filter-chip {
  min-height: 34px;
  flex: 0 0 auto;
  padding: 6px 11px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: transparent;
  color: #5d6864;
  font-size: 13px;
  cursor: pointer;
}
.filter-chip:hover, .filter-chip.is-active { color: var(--ink); border-color: var(--ink); background: var(--white); }
.filter-controls { flex: 0 0 auto; display: flex; align-items: center; gap: 9px; }
.segmented { padding: 3px; display: flex; border: 1px solid var(--line); border-radius: 7px; background: #eef1ed; }
.segmented button { min-width: 48px; height: 30px; padding: 0 9px; border: 0; border-radius: 5px; background: transparent; color: #68736e; font-size: 12px; cursor: pointer; }
.segmented button.is-active { color: var(--ink); background: var(--white); box-shadow: 0 1px 4px rgba(29, 42, 37, .12); }
.select-label select, .field select {
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 34px 0 10px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
}

.pet-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.pet-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.pet-card:hover { transform: translateY(-3px); border-color: #b8c2bc; box-shadow: 0 14px 28px rgba(29, 42, 37, .09); }
.pet-card:focus-within { border-color: var(--teal); }
.pet-preview {
  position: relative;
  height: 188px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #edf3ef;
  border-bottom: 1px solid #e3e8e3;
}
.pet-card[data-category="猫咪"] .pet-preview { background: #f4eceb; }
.pet-card[data-category="狗狗"] .pet-preview { background: #f5f0df; }
.pet-card[data-category="机器人"] .pet-preview,
.pet-card[data-category="AI 助手"] .pet-preview { background: #e9eef7; }
.pet-card[data-category="奇幻生物"] .pet-preview { background: #eeeaf5; }
.pet-card[data-category="搞笑"] .pet-preview { background: #f5ebdf; }
.card-sprite { width: 132px; height: 143px; }
.origin-badge {
  position: absolute;
  left: 9px;
  top: 9px;
  z-index: 2;
  padding: 3px 7px;
  border: 1px solid rgba(29, 42, 37, .13);
  border-radius: 5px;
  color: #4f5b56;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(8px);
  font-size: 10px;
  font-weight: 800;
}
.favorite-button {
  position: absolute;
  z-index: 3;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(29, 42, 37, .13);
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 16px;
}
.favorite-button.is-active { color: #d45656; background: #fff2f1; }
.pet-card-body { min-height: 154px; padding: 14px 15px 15px; display: flex; flex-direction: column; }
.card-title-row { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; }
.card-title-row h3 { min-width: 0; margin: 0; font-size: 16px; line-height: 1.3; overflow-wrap: anywhere; }
.card-title-row span { flex: 0 0 auto; color: #8a938f; font-size: 11px; }
.pet-card-body p { margin: 8px 0 11px; color: #66716d; font-size: 12px; line-height: 1.55; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; overflow: hidden; }
.card-meta { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; color: #7b8581; font-size: 11px; }
.card-tags { display: flex; min-width: 0; gap: 5px; overflow: hidden; }
.card-tags span { max-width: 82px; padding: 2px 6px; border-radius: 4px; background: #f0f2ef; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.card-open {
  position: absolute;
  inset: 0;
  z-index: 2;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.favorite-button { z-index: 4; }
.skeleton-card { min-height: 344px; background: #eef1ed; border: 1px solid #e1e5e1; border-radius: 8px; animation: skeletonPulse 1.1s ease-in-out infinite alternate; }
@keyframes skeletonPulse { to { opacity: .55; } }

.empty-state { padding: 70px 20px; text-align: center; border: 1px dashed #c5cec8; border-radius: 8px; background: var(--white); }
.empty-state strong, .empty-state span { display: block; }
.empty-state strong { font-size: 20px; }
.empty-state span { margin: 6px 0 18px; color: var(--muted); }
.pagination { margin-top: 28px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.pagination span { color: var(--muted); font-size: 13px; }

.publish-band { padding: 48px 0; color: var(--white); background: var(--ink); border-top: 1px solid #283a32; }
.publish-layout { display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.publish-layout .section-label { color: var(--yellow); }
.publish-layout p:not(.section-label) { max-width: 720px; margin: 10px 0 0; color: #b8c3bd; }

.site-footer { padding: 28px 0; background: #121c18; color: #d9e1dd; border-top: 1px solid #314039; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-inner > div:first-child { display: flex; align-items: baseline; gap: 12px; }
.footer-inner span { color: #8f9b95; font-size: 12px; }
.footer-links { display: flex; align-items: center; gap: 18px; font-size: 12px; }
.footer-links a, .footer-links button { color: #b8c3bd; }
.footer-links button { padding: 0; border: 0; background: transparent; cursor: pointer; }
.footer-links a:hover, .footer-links button:hover { color: var(--white); }

dialog {
  padding: 0;
  color: var(--ink);
  border: 1px solid #cbd3ce;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}
dialog::backdrop { background: rgba(17, 28, 23, .54); backdrop-filter: blur(4px); }
.dialog-close {
  position: absolute;
  z-index: 10;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, .94);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}
.detail-dialog { width: min(880px, calc(100% - 30px)); max-height: min(760px, calc(100vh - 30px)); }
.detail-layout { display: grid; grid-template-columns: 360px 1fr; min-height: 520px; }
.detail-visual { position: relative; display: grid; place-items: center; min-height: 520px; background: #edf3ef; border-right: 1px solid var(--line); }
.detail-sprite { width: 230px; height: 249px; }
.detail-information { padding: 42px 38px 34px; overflow: auto; }
.detail-information h2 { margin: 0; padding-right: 30px; font-size: 32px; line-height: 1.18; overflow-wrap: anywhere; }
.detail-byline { margin: 8px 0 20px; color: var(--muted); font-size: 13px; }
.detail-description { margin: 0; color: #4f5a56; }
.detail-source-description { margin: 10px 0 0; color: #7a8580; font-size: 12px; }
.detail-tags { margin: 18px 0; display: flex; flex-wrap: wrap; gap: 6px; }
.detail-tags span { padding: 4px 8px; border-radius: 5px; color: #50605a; background: #edf1ed; font-size: 11px; }
.detail-facts { margin: 20px 0; padding: 14px 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.detail-facts div { min-width: 0; padding: 0 10px; border-right: 1px solid var(--line); }
.detail-facts div:first-child { padding-left: 0; }
.detail-facts div:last-child { padding-right: 0; border-right: 0; }
.detail-facts span, .detail-facts strong { display: block; }
.detail-facts span { color: #87908c; font-size: 10px; }
.detail-facts strong { margin-top: 3px; font-size: 12px; overflow-wrap: anywhere; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.detail-actions .button-primary { flex: 1 1 180px; }
.install-note { margin-top: 18px; padding: 12px; border-left: 3px solid var(--yellow); background: #f8f6ec; color: #66716d; font-size: 11px; }

.form-dialog, .account-dialog, .notice-dialog { width: min(690px, calc(100% - 30px)); max-height: min(820px, calc(100vh - 30px)); padding: 36px; overflow: auto; }
.dialog-heading { padding-right: 34px; margin-bottom: 26px; }
.dialog-heading > p:not(.section-label) { margin: 9px 0 0; color: var(--muted); }
.dialog-heading code { padding: 1px 4px; border-radius: 4px; background: #eef1ee; }
#uploadForm { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { min-width: 0; display: flex; flex-direction: column; gap: 6px; }
.field-wide { grid-column: 1 / -1; }
.field > span { font-size: 12px; font-weight: 700; }
.field small { color: #808a85; font-size: 10px; }
.field input, .field textarea {
  width: 100%;
  border: 1px solid #cfd6d1;
  border-radius: 6px;
  padding: 9px 10px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}
.field input { min-height: 40px; }
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(45, 140, 127, .12); }
.rights-check { display: flex; align-items: flex-start; gap: 9px; color: #59645f; font-size: 12px; }
.rights-check input { margin-top: 3px; accent-color: var(--teal); }
.form-status { min-height: 20px; color: #bc4b42; font-size: 12px; }
.form-status.is-success { color: #28795e; }
.dialog-actions { display: flex; justify-content: flex-end; gap: 8px; }
.notice-copy { color: #55615c; }
.notice-copy p { margin: 0 0 14px; }

.account-header { padding: 2px 38px 22px 0; display: flex; align-items: center; gap: 14px; border-bottom: 1px solid var(--line); }
.account-avatar { width: 48px; height: 48px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 8px; color: var(--white); background: var(--teal); font-weight: 800; font-size: 20px; }
.account-header strong, .account-header span { display: block; }
.account-header span { color: var(--muted); font-size: 12px; }
.account-section { padding-top: 22px; }
.account-section h3 { margin: 0 0 12px; font-size: 15px; }
.my-pet-list { display: grid; gap: 8px; }
.my-pet-row { padding: 10px 12px; display: flex; align-items: center; justify-content: space-between; gap: 12px; border: 1px solid var(--line); border-radius: 6px; }
.my-pet-row strong, .my-pet-row span { display: block; }
.my-pet-row span { color: var(--muted); font-size: 11px; }
.status-badge { padding: 3px 7px; border-radius: 4px; background: #f2e9c8; font-size: 10px; }
.status-badge.published { color: #206a50; background: #dff0e8; }
.status-badge.rejected { color: #9b403a; background: #f6dddd; }
.account-actions { margin-top: 20px; display: flex; justify-content: space-between; gap: 8px; }
.moderation-actions { display: flex; gap: 5px; }
.mini-button { min-height: 28px; padding: 3px 8px; border: 1px solid var(--line); border-radius: 5px; background: var(--white); font-size: 10px; cursor: pointer; }

.toast-region { position: fixed; z-index: 80; right: 20px; bottom: 20px; display: grid; gap: 8px; }
.toast { max-width: min(360px, calc(100vw - 40px)); padding: 11px 14px; border: 1px solid #35483f; border-radius: 6px; color: var(--white); background: #1d2a25; box-shadow: var(--shadow); font-size: 13px; animation: toastIn .18s ease-out; }
.toast.is-error { border-color: #a84a43; background: #7c3833; }
@keyframes toastIn { from { opacity: 0; transform: translateY(8px); } }

@media (max-width: 980px) {
  .main-nav { display: none; }
  .intro-layout { grid-template-columns: 1fr 360px; gap: 30px; }
  .pet-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .filter-bar { align-items: flex-start; flex-direction: column; }
  .filter-controls { width: 100%; justify-content: space-between; }
}

@media (max-width: 760px) {
  .shell { width: min(100% - 24px, 1180px); }
  .header-inner { height: 60px; gap: 10px; }
  .brand { font-size: 18px; }
  .brand-mark { width: 29px; height: 29px; }
  .header-actions .button-secondary { width: 38px; padding: 0; border-radius: 50%; font-size: 0; }
  .header-actions .button-secondary .button-symbol { font-size: 21px; }
  .header-actions .button-primary { max-width: 92px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .mobile-search { display: grid; }
  .intro-layout { min-height: auto; padding: 42px 0 36px; grid-template-columns: 1fr; }
  .intro-copy h1 { font-size: 39px; }
  .intro-copy > p:not(.eyebrow) { font-size: 15px; }
  .search-box { margin-top: 22px; }
  .pet-stage { margin-top: 10px; }
  .stage-window { width: min(360px, calc(100% - 14px)); }
  .gallery-section { padding: 48px 0 58px; }
  .gallery-heading { align-items: flex-start; }
  .gallery-heading h2 { font-size: 26px; }
  .gallery-heading > p { padding-top: 24px; white-space: nowrap; }
  .pet-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .pet-preview { height: 166px; }
  .card-sprite { width: 116px; height: 126px; }
  .pet-card-body { min-height: 148px; padding: 12px; }
  .filter-controls { align-items: stretch; flex-direction: column; }
  .segmented { align-self: flex-start; }
  .select-label select { width: 100%; }
  .publish-layout { align-items: flex-start; flex-direction: column; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-inner > div:first-child { align-items: flex-start; flex-direction: column; gap: 2px; }
  .footer-links { flex-wrap: wrap; gap: 10px 16px; }
  .detail-layout { grid-template-columns: 1fr; }
  .detail-visual { min-height: 330px; border-right: 0; border-bottom: 1px solid var(--line); }
  .detail-sprite { width: 186px; height: 202px; }
  .detail-information { padding: 28px 22px 24px; }
  .detail-information h2 { font-size: 27px; }
  .form-dialog, .account-dialog, .notice-dialog { padding: 28px 20px 22px; }
  #uploadForm { grid-template-columns: 1fr; }
  .field-wide { grid-column: 1; }
}

@media (max-width: 430px) {
  .intro-copy h1 { font-size: 34px; }
  .catalog-stats span + span::before { display: none; }
  .catalog-stats { gap: 6px 14px; }
  .pet-grid { grid-template-columns: 1fr; }
  .pet-card { display: grid; grid-template-columns: 142px 1fr; min-height: 154px; }
  .pet-preview { height: 100%; min-height: 154px; border-bottom: 0; border-right: 1px solid #e3e8e3; }
  .card-sprite { width: 104px; height: 113px; }
  .pet-card-body { min-height: 154px; }
  .card-title-row { align-items: flex-start; flex-direction: column; gap: 2px; }
  .card-tags span:nth-child(n+2) { display: none; }
  .detail-facts { grid-template-columns: 1fr; gap: 9px; }
  .detail-facts div { padding: 0; border-right: 0; }
}
