:root {
  --bg: #f4efe4;
  --paper: rgba(255, 251, 245, 0.86);
  --ink: #1e1a16;
  --muted: #6d665e;
  --accent: #c45d2d;
  --accent-2: #174a68;
  --line: rgba(30, 26, 22, 0.12);
  --shadow: 0 18px 50px rgba(32, 24, 18, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(196, 93, 45, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(23, 74, 104, 0.18), transparent 24%),
    linear-gradient(180deg, #efe6d6 0%, var(--bg) 60%);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
}

.shell {
  width: min(1220px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
}

.hero {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 20px;
  align-items: end;
  margin-bottom: 20px;
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
}

h1, h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  font-size: clamp(36px, 6vw, 62px);
  line-height: 0.95;
}

.intro, .panel-head p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 62ch;
}

.hero-meta,
.summary-grid,
.two-up {
  display: grid;
  gap: 16px;
}

.hero-meta {
  grid-template-columns: 1fr;
}

.meta-card,
.stat-card,
.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.meta-card {
  padding: 16px 18px;
}

.meta-card-action {
  padding-bottom: 14px;
}

.meta-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.meta-value {
  display: block;
  font-weight: 700;
  font-size: 24px;
}

.records-button {
  display: grid;
  justify-items: start;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
}

.records-button:hover .meta-value,
.records-button:focus-visible .meta-value {
  color: var(--accent);
}

.records-button:focus-visible {
  outline: 2px solid rgba(196, 93, 45, 0.5);
  outline-offset: 6px;
  border-radius: 12px;
}

.records-hint {
  margin-top: 6px;
  font-size: 13px;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.summary-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin-bottom: 16px;
}

.stat-card {
  padding: 18px;
}

.stat-card strong {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-card span {
  display: block;
  font-size: 29px;
  font-weight: 700;
  line-height: 1;
}

.panel {
  padding: 18px;
  margin-bottom: 16px;
}

.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero > *,
.two-up > *,
.detail-grid > * {
  min-width: 0;
}

.panel-head {
  margin-bottom: 12px;
}

.app-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.back-link:hover {
  background: rgba(196, 93, 45, 0.12);
}

.gallery-page {
  padding-top: 22px;
}

.gallery-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

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

.gallery-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: transform 120ms ease, box-shadow 120ms ease;
}

.gallery-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(32, 24, 18, 0.14);
}

.item-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at top right, rgba(196, 93, 45, 0.28), transparent 35%),
    linear-gradient(135deg, rgba(23, 74, 104, 0.95), rgba(196, 93, 45, 0.85));
  background-size: cover;
  background-position: center;
}

.item-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 14, 12, 0.48));
}

.item-badge,
.item-photo-state {
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.item-badge {
  top: 10px;
  left: 10px;
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 700;
  color: white;
  background: rgba(23, 74, 104, 0.72);
}

.item-photo-state {
  right: 10px;
  bottom: 10px;
  padding: 5px 8px;
  font-size: 11px;
  color: white;
  background: rgba(30, 26, 22, 0.56);
}

.item-status-badge {
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 10px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: white;
  background: rgba(30, 26, 22, 0.8);
  backdrop-filter: blur(10px);
}

.item-media-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
}

.item-body {
  padding: 12px 12px 10px;
}

.gallery-content {
  padding: 12px;
}

.gallery-price {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}

.gallery-title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 52px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 13px;
  line-height: 1.3;
}

.gallery-sub {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

.item-price {
  display: block;
  margin-bottom: 8px;
  font-size: 21px;
  font-weight: 700;
}

.item-title {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 13px;
  line-height: 1.3;
}

.item-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.item-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 0 12px 12px;
}

.item-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  color: white;
  background: var(--accent-2);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.item-link:hover {
  background: var(--accent);
}

.item-order {
  font-size: 12px;
  color: var(--muted);
}

.detail-shell {
  padding-top: 22px;
}

.detail-nav {
  justify-content: space-between;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: start;
}

.detail-media {
  min-height: 420px;
  border-radius: 20px;
  overflow: hidden;
}

.detail-copy {
  padding-top: 4px;
}

.detail-title {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.02;
}

.detail-price {
  margin-top: 14px;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
}

.detail-text {
  margin: 16px 0 18px;
  color: var(--muted);
  max-width: 58ch;
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 18px;
}

.detail-facts div {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.5);
}

.detail-facts dt {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.detail-facts dd {
  margin: 0;
  font-weight: 700;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-secondary {
  background: rgba(23, 74, 104, 0.12);
  color: var(--accent-2);
  border: none;
  cursor: pointer;
  font: inherit;
}

.inquiry-form {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.inquiry-heading {
  margin: 0;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.inquiry-form input,
.inquiry-form textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  padding: 12px 16px;
  font: inherit;
  font-size: 14px;
  resize: vertical;
}

[data-theme="midnight"] .inquiry-form input,
[data-theme="midnight"] .inquiry-form textarea {
  background: rgba(28, 28, 38, 0.5);
}

.inquiry-send {
  justify-self: start;
}

.inquiry-send:disabled {
  opacity: 0.6;
  cursor: default;
}

.inquiry-status {
  margin: 0;
  font-size: 13px;
}

.inquiry-ok {
  color: var(--accent-2);
}

.inquiry-error {
  color: var(--accent);
}

.detail-pagination {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
}

.detail-gallery-wrap {
  margin-top: 24px;
}

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

.detail-thumb {
  display: block;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  padding: 0;
  cursor: pointer;
}

.detail-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}

.lightbox-stage {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 85vh;
  display: grid;
  place-items: center;
}

.lightbox-stage img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 12px;
}

.lightbox-counter {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-align: center;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: white;
  cursor: pointer;
  backdrop-filter: blur(6px);
  border-radius: 50%;
}

.lightbox-close {
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  font-size: 24px;
  line-height: 1;
}

.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 28px;
  line-height: 1;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

.chart-frame {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.5);
  padding: 10px;
}

.bars {
  display: grid;
  gap: 10px;
}

.bar-row {
  display: grid;
  grid-template-columns: 110px 1fr 60px 90px;
  gap: 10px;
  align-items: center;
}

.bar-track {
  height: 14px;
  border-radius: 999px;
  background: rgba(23, 74, 104, 0.1);
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
}

.bar-label,
.bar-count,
.bar-value {
  font-size: 13px;
}

.bar-value,
.money,
.num {
  font-variant-numeric: tabular-nums;
}

.condition-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 14px;
}

.condition-table th,
.condition-table td {
  padding: 10px 8px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.condition-table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.condition-filter-row {
  cursor: pointer;
}

.condition-filter-row:focus-visible {
  outline: 2px solid rgba(196, 93, 45, 0.5);
  outline-offset: -2px;
}

.condition-link {
  color: var(--accent-2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.table-link {
  color: var(--accent-2);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.condition-link:hover,
.condition-link:focus-visible,
.table-link:hover,
.table-link:focus-visible {
  color: var(--accent);
  border-bottom-color: currentColor;
}

.table-links-divider {
  color: var(--muted);
}

.table-sub {
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted);
}

.table-note,
.detail-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.gallery-controls {
  margin-bottom: 14px;
}

.gallery-controls-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-controls-row select {
  appearance: none;
  min-height: 38px;
  padding: 0 32px 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236d665e'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

[data-theme="midnight"] .gallery-controls-row select {
  background-color: rgba(28, 28, 38, 0.8);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%238b8899'/%3E%3C/svg%3E");
}

.gallery-card-sold {
  opacity: 0.55;
}

.gallery-card-sold .gallery-price s {
  text-decoration: line-through;
  color: var(--muted);
}

.gallery-filter-bar {
  margin-bottom: 16px;
}

.filter-chip-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(23, 74, 104, 0.18);
  background: rgba(23, 74, 104, 0.1);
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 700;
}

.filter-clear {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  text-decoration: none;
}

.filter-clear:hover {
  background: rgba(196, 93, 45, 0.12);
}

.top-list {
  margin: 0;
  padding-left: 24px;
}

.top-list li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
}

.top-list strong {
  display: block;
  margin-bottom: 4px;
  overflow-wrap: anywhere;
}

.top-list .money,
.top-list .tiny {
  display: block;
}

.search-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: end;
}

input[type="search"] {
  width: min(340px, 100%);
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  padding: 12px 16px;
  font: inherit;
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

thead th {
  position: sticky;
  top: 0;
  background: #f7efe4;
}

th,
td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 14px;
  vertical-align: top;
}

tbody tr:hover {
  background: rgba(196, 93, 45, 0.06);
}

.tiny {
  color: var(--muted);
  font-size: 12px;
}

svg {
  display: block;
  width: 100%;
  height: auto;
}

.axis {
  stroke: rgba(30, 26, 22, 0.22);
  stroke-width: 1;
}

.price-line {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
}

.point {
  fill: var(--accent-2);
}

/* Theme: Midnight */
[data-theme="midnight"] {
  --bg: #121218;
  --paper: rgba(28, 28, 38, 0.92);
  --ink: #e4e2de;
  --muted: #8b8899;
  --accent: #e07a3a;
  --accent-2: #5ea8d4;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

[data-theme="midnight"] body {
  background:
    radial-gradient(circle at top left, rgba(224, 122, 58, 0.12), transparent 28%),
    radial-gradient(circle at top right, rgba(94, 168, 212, 0.1), transparent 24%),
    linear-gradient(180deg, #1a1a24 0%, var(--bg) 60%);
}

[data-theme="midnight"] thead th {
  background: #1c1c28;
}

[data-theme="midnight"] .gallery-card {
  background: rgba(28, 28, 38, 0.8);
}

[data-theme="midnight"] .detail-facts div {
  background: rgba(28, 28, 38, 0.5);
}

/* Theme: Slate */
[data-theme="slate"] {
  --bg: #e8ecf0;
  --paper: rgba(248, 250, 252, 0.9);
  --ink: #1a1e24;
  --muted: #5a6270;
  --accent: #2563eb;
  --accent-2: #0f766e;
  --line: rgba(30, 40, 60, 0.1);
  --shadow: 0 18px 50px rgba(30, 40, 60, 0.1);
}

[data-theme="slate"] body {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.08), transparent 24%),
    linear-gradient(180deg, #dde3ea 0%, var(--bg) 60%);
}

[data-theme="slate"] thead th {
  background: #e4e8ed;
}

[data-theme="slate"] .gallery-card {
  background: rgba(248, 250, 252, 0.8);
}

[data-theme="slate"] .detail-facts div {
  background: rgba(248, 250, 252, 0.5);
}

[data-theme="slate"] .item-media {
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.28), transparent 35%),
    linear-gradient(135deg, rgba(15, 118, 110, 0.95), rgba(37, 99, 235, 0.85));
  background-size: cover;
  background-position: center;
}

[data-theme="slate"] .item-badge {
  background: rgba(15, 118, 110, 0.72);
}

/* Theme: Warmth */
[data-theme="warmth"] {
  --bg: #faf5ee;
  --paper: rgba(255, 253, 250, 0.9);
  --ink: #2c1810;
  --muted: #8c6e5a;
  --accent: #b84c1e;
  --accent-2: #6b4423;
  --line: rgba(44, 24, 16, 0.1);
  --shadow: 0 18px 50px rgba(44, 24, 16, 0.1);
}

[data-theme="warmth"] body {
  background:
    radial-gradient(circle at top left, rgba(184, 76, 30, 0.1), transparent 28%),
    radial-gradient(circle at top right, rgba(107, 68, 35, 0.1), transparent 24%),
    linear-gradient(180deg, #f0e6d6 0%, var(--bg) 60%);
}

[data-theme="warmth"] thead th {
  background: #f0e6d6;
}

[data-theme="warmth"] .gallery-card {
  background: rgba(255, 253, 250, 0.8);
}

[data-theme="warmth"] .detail-facts div {
  background: rgba(255, 253, 250, 0.5);
}

[data-theme="warmth"] .item-media {
  background:
    radial-gradient(circle at top right, rgba(184, 76, 30, 0.28), transparent 35%),
    linear-gradient(135deg, rgba(107, 68, 35, 0.95), rgba(184, 76, 30, 0.85));
  background-size: cover;
  background-position: center;
}

[data-theme="warmth"] .item-badge {
  background: rgba(107, 68, 35, 0.72);
}

/* Theme switcher */
.theme-switcher {
  position: relative;
}

.theme-switcher select {
  appearance: none;
  min-height: 38px;
  padding: 0 32px 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%236d665e'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

[data-theme="midnight"] .theme-switcher select {
  background-color: rgba(28, 28, 38, 0.8);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%238b8899'/%3E%3C/svg%3E");
}

.theme-switcher select:hover {
  background-color: rgba(196, 93, 45, 0.12);
}

[data-theme="midnight"] .theme-switcher select:hover {
  background-color: rgba(224, 122, 58, 0.15);
}

@media (max-width: 980px) {
  .hero,
  .two-up {
    grid-template-columns: 1fr;
  }

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

  .search-head {
    flex-direction: column;
    align-items: stretch;
  }

  .detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100vw, calc(100vw - 20px));
  }

  .summary-grid {
    grid-template-columns: 1fr;
  }

  .bar-row {
    grid-template-columns: 1fr;
  }

  .gallery-summary,
  .detail-facts,
  .detail-pagination {
    grid-template-columns: 1fr;
  }
}
