:root {
  color-scheme: light;
  --bg: #f5f7f2;
  --surface: #ffffff;
  --surface-2: #f0f4f7;
  --ink: #17201d;
  --muted: #62706b;
  --line: #dbe3df;
  --green: #16745f;
  --green-dark: #0d5c4a;
  --blue: #2458a6;
  --amber: #b86613;
  --red: #b3261e;
  --shadow: 0 12px 30px rgba(27, 40, 35, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  min-height: 40px;
}

.app-shell {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 48px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #ffffff;
  font-weight: 800;
}

.season {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 13px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  font-size: 26px;
  line-height: 1.15;
}

h2 {
  margin-bottom: 0;
  font-size: 18px;
}

h3 {
  margin-bottom: 6px;
  font-size: 16px;
}

.top-actions {
  display: flex;
  align-items: end;
  gap: 10px;
}

.auth-badge {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  max-width: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--muted);
  padding: 0 12px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.auth-badge.is-logged-in {
  border-color: rgba(22, 116, 95, 0.26);
  background: rgba(22, 116, 95, 0.09);
  color: var(--green-dark);
}

.field {
  display: grid;
  gap: 6px;
}

.field span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.field.compact {
  min-width: 220px;
}

.field.tiny {
  min-width: 116px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  outline: none;
}

input,
select {
  height: 42px;
  padding: 0 12px;
}

textarea {
  min-height: 96px;
  padding: 10px 12px;
  line-height: 1.5;
  resize: vertical;
}

select:disabled {
  background: var(--surface-2);
  color: var(--muted);
  cursor: not-allowed;
  opacity: 1;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22, 116, 95, 0.14);
}

.primary,
.secondary,
.icon-button,
.tab,
.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.primary {
  background: var(--green);
  color: #ffffff;
  font-weight: 750;
  padding: 0 14px;
}

.primary:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.secondary {
  background: #ffffff;
  border-color: var(--line);
  color: var(--ink);
  font-weight: 750;
  padding: 0 14px;
}

.secondary:hover {
  border-color: var(--green);
  color: var(--green);
}

.icon-button {
  width: 42px;
  height: 42px;
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
  padding: 0;
}

.icon-button:hover,
.tab:hover,
.mini-btn:hover {
  border-color: var(--green);
}

.icon-button.small {
  width: 34px;
  height: 34px;
  min-height: 34px;
}

.danger-lite {
  color: var(--red);
}

svg {
  width: 18px;
  height: 18px;
}

.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;
}

.sneaker-tape {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(23, 32, 29, 0.38);
}

.modal {
  width: min(440px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 24px 80px rgba(23, 32, 29, 0.24);
  padding: 18px;
}

.modal .panel-head {
  align-items: start;
}

.modal h2 {
  margin-bottom: 8px;
}

.live-bar {
  display: grid;
  grid-template-columns: minmax(230px, 0.76fr) minmax(280px, 1fr);
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 12px;
}

.live-clock {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.live-dot {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--muted);
}

.live-dot.is-live {
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(22, 116, 95, 0.12);
}

.clock-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.live-clock strong {
  display: block;
  margin-top: 2px;
  font-size: 20px;
}

.pill.live {
  color: var(--green);
  background: rgba(22, 116, 95, 0.12);
}

.live-moves {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.move-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  border-radius: 999px;
  background: var(--surface-2);
  color: var(--ink);
  padding: 0 10px;
  font-size: 13px;
  font-weight: 760;
}

.move-chip em {
  color: currentColor;
  font-size: 12px;
  font-style: normal;
  opacity: 0.78;
}

.move-chip.muted {
  color: var(--muted);
  font-weight: 700;
}

.tape-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) 36px;
  align-items: center;
  gap: 12px;
  min-height: 112px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 10px;
}

.tape-card img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 6px;
  background: var(--surface-2);
}

.tape-card p {
  margin: 6px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.card-topline,
.price-line,
.panel-head,
.admin-action,
.admin-action-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tag-row {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
}

.price-line b {
  font-size: 17px;
}

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

.phase,
.status,
.pill,
.source-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 0 8px;
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.source-badge.platform {
  color: var(--blue);
  background: rgba(36, 88, 166, 0.10);
}

.source-badge.participant {
  color: var(--amber);
  background: rgba(184, 102, 19, 0.12);
}

.phase.ipo {
  color: var(--blue);
  background: rgba(36, 88, 166, 0.12);
}

.phase.market,
.status.filled {
  color: var(--green);
  background: rgba(22, 116, 95, 0.12);
}

.phase.delisted {
  color: var(--red);
  background: rgba(179, 38, 30, 0.12);
}

.status.pending {
  color: var(--amber);
  background: rgba(184, 102, 19, 0.12);
}

.status.open {
  color: var(--blue);
  background: rgba(36, 88, 166, 0.12);
}

.status.cancelled,
.status.rejected {
  color: var(--muted);
  background: var(--surface-2);
}

.status.allocated {
  color: var(--blue);
  background: rgba(36, 88, 166, 0.12);
}

.status.forced {
  color: var(--red);
  background: rgba(179, 38, 30, 0.12);
}

.pill {
  background: var(--surface-2);
  color: var(--muted);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.metric-card {
  min-height: 92px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.metric-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 720;
}

.metric-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.positive strong,
.positive {
  color: var(--green);
}

.negative strong,
.negative {
  color: var(--red);
}

.warning strong,
.warning {
  color: var(--amber);
}

.tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.tab {
  min-width: 112px;
  background: var(--surface);
  border-color: var(--line);
  color: var(--muted);
  padding: 0 14px;
  font-weight: 760;
}

.tab.is-active {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

.notice {
  display: none;
  margin-bottom: 12px;
  border: 1px solid rgba(36, 88, 166, 0.24);
  border-radius: var(--radius);
  background: rgba(36, 88, 166, 0.08);
  color: var(--blue);
  padding: 10px 12px;
  font-weight: 700;
}

.notice.is-visible {
  display: block;
}

.view-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
  gap: 14px;
}

.admin-subnav {
  position: sticky;
  top: 8px;
  z-index: 12;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 22px rgba(27, 40, 35, 0.08);
  padding: 6px;
}

.admin-subtab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  padding: 0 10px;
  font-weight: 780;
  cursor: pointer;
}

.admin-subtab:hover {
  border-color: var(--line);
  background: var(--surface-2);
  color: var(--ink);
}

.admin-subtab.is-active {
  border-color: var(--ink);
  background: var(--ink);
  color: #ffffff;
}

.admin-subtab svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hidden {
  display: none;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 16px;
}

.span-2 {
  grid-column: 1 / -1;
}

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

.panel-head.compact {
  margin: 0 0 8px;
}

.panel-head h3 {
  margin: 0;
  font-size: 15px;
}

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

.form-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.full-row {
  grid-column: 1 / -1;
}

.span-2.field {
  grid-column: span 2;
}

.risk-box {
  min-height: 48px;
  margin-top: 12px;
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--muted);
  padding: 10px 12px;
  font-size: 13px;
  line-height: 1.45;
}

.table-wrap {
  overflow-x: auto;
}

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

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

th {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

td span {
  color: var(--muted);
  font-size: 12px;
}

.position-open-count {
  display: inline-flex;
  margin-top: 5px;
  color: var(--blue);
  font-weight: 760;
}

.empty {
  color: var(--muted);
  text-align: center;
}

.empty.block {
  margin: 0;
  padding: 14px;
  text-align: left;
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.open-order-stack {
  display: grid;
  gap: 4px;
  min-width: 150px;
}

.open-order-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.open-order-line .mini-btn {
  min-height: 26px;
  padding: 0 8px;
  font-size: 12px;
}

.open-order-line b {
  color: var(--ink);
  font-weight: 760;
}

.order-note-cell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.order-note-cell > span {
  min-width: 0;
}

.mini-btn {
  min-height: 32px;
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
  padding: 0 10px;
  font-size: 13px;
  font-weight: 750;
}

.mini-btn:disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

.rank {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
  font-weight: 800;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.market-card {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.market-card img {
  width: 160px;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  background: var(--surface-2);
}

.market-body {
  padding: 14px;
}

.market-body p {
  margin-bottom: 12px;
  color: var(--muted);
}

.market-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.market-stats span {
  display: grid;
  gap: 4px;
  min-height: 54px;
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--muted);
  padding: 8px;
  font-size: 12px;
}

.market-stats b {
  color: var(--ink);
  font-size: 15px;
}

.listing-list {
  display: grid;
  gap: 10px;
}

.listing-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  padding: 10px;
}

.listing-card img {
  width: 96px;
  height: 96px;
  border-radius: var(--radius);
  object-fit: cover;
  background: #ffffff;
}

.listing-card p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}

.listing-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 10px;
}

.listing-metrics span {
  display: grid;
  gap: 3px;
  min-height: 48px;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--muted);
  padding: 7px;
  font-size: 12px;
}

.listing-metrics b {
  color: var(--ink);
  font-size: 14px;
}

.review-note {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.listing-disclosure {
  margin: 0 0 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}

.listing-disclosure summary {
  color: var(--green-dark);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.listing-disclosure dl {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
}

.listing-disclosure dl div {
  display: grid;
  gap: 3px;
}

.listing-disclosure dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.listing-disclosure dd {
  margin: 0;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.5;
  white-space: pre-line;
}

.governance-form,
.governance-meeting-panel {
  align-self: start;
}

.governance-list,
.company-action-list {
  display: grid;
}

.governance-proposal {
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.governance-proposal:first-child {
  border-top: 0;
  padding-top: 0;
}

.governance-proposal:last-child {
  padding-bottom: 0;
}

.governance-proposal-head,
.governance-vote-bar,
.vote-totals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.governance-proposal-head > div {
  min-width: 0;
}

.governance-symbol {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
}

.governance-proposal h3 {
  margin: 0;
  overflow-wrap: anywhere;
}

.governance-proposal p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.governance-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.governance-facts span {
  display: grid;
  gap: 4px;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--muted);
  padding: 8px;
  font-size: 11px;
}

.governance-facts b {
  overflow: hidden;
  color: var(--ink);
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vote-meter {
  display: flex;
  width: 100%;
  height: 10px;
  overflow: hidden;
  border-radius: 5px;
  background: var(--surface-2);
}

.vote-meter .yes {
  background: var(--green);
}

.vote-meter .no {
  background: var(--red);
}

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

.vote-totals b {
  color: var(--ink);
}

.governance-vote-bar {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.governance-vote-bar > span {
  color: var(--muted);
  font-size: 12px;
}

.governance-vote-bar > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.vote-yes {
  border-color: rgba(22, 116, 95, 0.36);
  color: var(--green);
}

.vote-no {
  border-color: rgba(179, 38, 30, 0.32);
  color: var(--red);
}

.company-action-row {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 13px 0;
}

.company-action-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.company-action-row time,
.company-action-row span {
  color: var(--muted);
  font-size: 12px;
}

.company-action-row div {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.company-action-row strong,
.company-action-row div span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.primary:disabled,
.secondary:disabled {
  cursor: not-allowed;
  opacity: 0.46;
  transform: none;
}

.review-list {
  display: grid;
  gap: 10px;
}

.review-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  padding: 10px;
}

.registration-review-card {
  grid-template-columns: 1fr;
}

.review-card img {
  width: 132px;
  height: 132px;
  border-radius: var(--radius);
  object-fit: cover;
  background: #ffffff;
}

.review-card-body {
  min-width: 0;
}

.review-card-body p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.sparkline {
  display: block;
  gap: 5px;
  height: 142px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.sparkline.empty {
  display: flex;
}

.sparkline span {
  width: 100%;
  min-width: 8px;
  border-radius: 4px 4px 0 0;
  background: var(--blue);
}

.sparkline.empty {
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 12px;
}

.sparkline.empty span {
  width: auto;
  min-width: 0;
  background: transparent;
}

.kline-chart {
  width: 100%;
  height: 100%;
  min-height: 0;
}

.kline-wrap {
  display: grid;
  grid-template-rows: 24px minmax(0, 1fr) 18px;
  align-self: stretch;
  width: 100%;
  height: 100%;
  min-width: 0;
}

.kline-range-controls {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 4px;
  align-items: center;
}

.kline-range-controls button {
  height: 20px;
  min-height: 20px;
  border-radius: 5px;
  padding: 0;
  border: 1px solid var(--line);
  background: var(--surface-2);
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
}

.kline-range-controls button.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
}

.kline-empty {
  display: grid;
  place-items: center;
  width: 100%;
  min-width: 0;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: transparent;
  color: var(--muted);
  font-size: 12px;
}

.kline-times {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  color: var(--muted);
  font-size: 10px;
  line-height: 1;
}

.kline-times span {
  width: auto;
  min-width: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.kline-times span:nth-child(2) {
  text-align: center;
}

.kline-times span:last-child {
  text-align: right;
}

.kline-chart .grid {
  stroke: var(--line);
  stroke-width: 1;
}

.kline-chart line.positive,
.kline-chart rect.positive {
  stroke: var(--green);
  fill: var(--green);
}

.kline-chart line.negative,
.kline-chart rect.negative {
  stroke: var(--red);
  fill: var(--red);
}

.kline-chart line.positive,
.kline-chart line.negative {
  stroke-width: 1.4;
}

.heat {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.heat > span {
  display: block;
  height: 8px;
  max-width: 100%;
  border-radius: 999px;
  background: var(--green);
}

.heat::after {
  content: "";
  grid-column: 2;
  grid-row: 1;
  z-index: 0;
  height: 8px;
  border-radius: 999px;
  background: var(--surface-2);
}

.heat > span {
  grid-column: 2;
  grid-row: 1;
  z-index: 1;
}

.heat-label {
  display: grid;
  gap: 2px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.1;
}

.heat-label b {
  color: var(--ink);
  font-size: 12px;
}

.news-list {
  display: grid;
  gap: 10px;
  max-height: 360px;
  overflow: auto;
}

.news-card {
  display: grid;
  gap: 8px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--muted);
  border-radius: var(--radius);
  background: var(--surface-2);
  padding: 12px;
}

.news-card.positive {
  border-left-color: var(--green);
}

.news-card.negative {
  border-left-color: var(--red);
}

.news-card-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.news-card-head div {
  display: grid;
  gap: 4px;
}

.news-card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.news-card-head span,
.news-card small {
  color: var(--muted);
  font-size: 12px;
}

.news-card p {
  margin: 0;
  color: var(--ink);
  line-height: 1.55;
  white-space: pre-line;
}

.market-book {
  display: grid;
  gap: 8px;
  min-height: 238px;
}

.book-topline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(76px, auto) minmax(0, 1fr);
  gap: 8px;
  align-items: stretch;
}

.book-quote,
.book-spread {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  padding: 10px;
}

.book-quote span,
.book-spread span,
.book-quote small {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.book-quote b,
.book-spread b {
  display: block;
  margin: 3px 0;
  font-size: 20px;
  line-height: 1.1;
  letter-spacing: 0;
}

.book-quote.bid {
  border-color: rgba(22, 116, 95, 0.28);
}

.book-quote.bid b {
  color: var(--green);
}

.book-quote.ask {
  border-color: rgba(179, 38, 30, 0.24);
  text-align: right;
}

.book-quote.ask b {
  color: var(--red);
}

.book-spread {
  display: grid;
  align-content: center;
  text-align: center;
}

.book-spread b {
  color: var(--ink);
  font-size: 15px;
}

.book-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.book-head {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.book-head span:last-child {
  text-align: right;
}

.book-side {
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  padding: 8px;
}

.book-side.empty-side {
  opacity: 0.38;
}

.book-side b {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  line-height: 1.1;
}

.book-side span {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.book-side.sell {
  border-color: rgba(179, 38, 30, 0.22);
  text-align: right;
}

.book-side.sell b {
  color: var(--red);
}

.book-side.buy {
  border-color: rgba(22, 116, 95, 0.24);
}

.book-side.buy b {
  color: var(--green);
}

.book-side.system {
  background: #f8fbfa;
}

.book-side.company {
  border-color: rgba(151, 105, 20, 0.38);
  background: #fffaf0;
  box-shadow: inset 3px 0 0 #976914;
}

.book-level {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}

.book-level span {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.book-level strong {
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.book-side.buy .book-level strong {
  color: var(--green);
}

.book-side.sell .book-level {
  flex-direction: row-reverse;
}

.book-side.sell .book-level strong {
  color: var(--red);
}

.holder-list {
  display: grid;
  gap: 8px;
  min-height: 182px;
}

.holder-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) minmax(116px, auto);
  gap: 10px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  padding: 8px;
}

.holder-rank {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--green);
  font-weight: 800;
}

.holder-row strong,
.holder-row b,
.holder-row span {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.holder-row span {
  color: var(--muted);
  font-size: 11px;
}

.holder-row div:last-child {
  text-align: right;
}

.admin-stack {
  display: grid;
  gap: 10px;
}

.admin-account-list {
  display: grid;
  gap: 12px;
}

.admin-account-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  padding: 12px;
}

.admin-account-form {
  display: grid;
  gap: 12px;
}

.admin-account-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.8fr) minmax(0, 1.2fr);
  gap: 12px;
  align-items: start;
}

.admin-account-head div:first-child {
  display: grid;
  gap: 4px;
}

.admin-account-head span {
  color: var(--muted);
  font-size: 12px;
}

.admin-account-metrics,
.admin-edit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.admin-account-metrics span {
  display: grid;
  gap: 4px;
  min-height: 54px;
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--muted);
  padding: 8px;
  font-size: 12px;
}

.admin-account-metrics b {
  color: var(--ink);
  font-size: 15px;
}

.admin-edit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  align-items: end;
}

.admin-position-table {
  border-radius: var(--radius);
  background: #ffffff;
}

.admin-position-form {
  display: grid;
  grid-template-columns: minmax(220px, 1.4fr) repeat(2, minmax(150px, 0.8fr)) auto;
  gap: 8px;
  align-items: end;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.admin-position-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.admin-trade-log {
  max-height: 360px;
  overflow: auto;
}

.admin-log-section + .admin-log-section {
  margin-top: 16px;
}

.admin-trade-log strong {
  display: block;
  margin-bottom: 3px;
}

.admin-sneaker-list {
  display: grid;
  gap: 12px;
}

.admin-sneaker-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  padding: 12px;
}

.admin-sneaker-card > img {
  width: 100%;
  height: 100%;
  min-height: 160px;
  border-radius: var(--radius);
  object-fit: cover;
  background: #ffffff;
}

.admin-sneaker-form {
  display: grid;
  gap: 12px;
}

.admin-sneaker-head {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  gap: 12px;
  align-items: start;
}

.admin-sneaker-head div:first-child {
  display: grid;
  gap: 4px;
}

.admin-sneaker-head span {
  color: var(--muted);
  font-size: 12px;
}

.admin-sneaker-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 8px;
  align-items: end;
}

.admin-action {
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
}

.admin-action div:first-child {
  display: grid;
  gap: 4px;
}

.admin-action span,
.event-list time {
  color: var(--muted);
  font-size: 12px;
}

.rule-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 14px;
}

.rule-list div {
  border-radius: var(--radius);
  background: var(--surface-2);
  padding: 10px;
}

.rule-list dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.rule-list dd {
  margin: 6px 0 0;
  font-size: 20px;
  font-weight: 800;
}

.event-list {
  display: grid;
  gap: 8px;
  max-height: 260px;
  overflow: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}

.event-list li {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}

.identity-workspace {
  padding: 10px 0 4px;
}

.identity-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
}

.identity-section-head h2,
.investor-profile-side h2 {
  margin: 4px 0 0;
  font-size: 22px;
}

.identity-kicker {
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0;
}

.investor-card-layout {
  display: grid;
  grid-template-columns: minmax(560px, 820px) minmax(260px, 1fr);
  align-items: start;
  gap: 30px;
}

.investor-card {
  display: grid;
  grid-template-columns: 42% 58%;
  width: 100%;
  aspect-ratio: 8 / 5;
  overflow: hidden;
  border: 1px solid #cad5cf;
  border-radius: var(--radius);
  background: #f8faf7;
  box-shadow: 0 20px 48px rgba(23, 32, 29, 0.16);
}

.investor-card-empty {
  display: grid;
  grid-column: 1 / -1;
  place-items: center;
  height: 100%;
  color: var(--muted);
  padding: 28px;
  text-align: center;
}

.investor-card-top {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: #17201d;
  color: #ffffff;
  padding: 24px 25px 22px;
}

.identity-card-brand,
.identity-card-person,
.identity-card-level,
.identity-card-footer,
.identity-card-style-head {
  display: flex;
  align-items: center;
}

.identity-card-brand {
  justify-content: space-between;
  gap: 12px;
  color: #dce8e2;
  font-size: 10px;
  font-weight: 780;
}

.identity-card-brand > span:nth-child(2) {
  flex: 1;
}

.identity-card-logo {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  background: #f4c35a;
  color: #17201d;
  font-size: 16px;
  font-weight: 900;
}

.identity-card-person {
  align-items: center;
  gap: 16px;
  margin-top: 54px;
  min-width: 0;
}

.identity-card-avatar {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  flex: 0 0 auto;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: #16745f;
  color: #ffffff;
  font-size: 22px;
  font-weight: 880;
}

.identity-card-person > div {
  min-width: 0;
}

.identity-card-person small,
.identity-card-stat span,
.identity-card-style small {
  display: block;
  color: inherit;
  font-size: 10px;
  font-weight: 760;
  opacity: 0.7;
}

.identity-card-person h3 {
  margin: 4px 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.identity-card-person p {
  margin: 0;
  color: #c6d1cc;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.identity-card-level {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 16px;
}

.identity-card-level span {
  color: #f4c35a;
  font-size: 18px;
  font-weight: 900;
}

.identity-card-level strong {
  font-size: 16px;
}

.identity-card-level small {
  grid-column: 2;
  color: #9fb0a8;
  font-size: 9px;
  font-weight: 700;
}

.identity-card-level .identity-card-honor {
  grid-column: 2;
  width: fit-content;
  border: 1px solid rgba(244, 195, 90, 0.48);
  border-radius: 4px;
  color: #f4c35a;
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  padding: 4px 7px;
}

.identity-card-role {
  margin-top: auto;
  color: #dce8e2;
  font-size: 9px;
  font-weight: 760;
}

.investor-card-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 26px 28px 20px;
}

.identity-card-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}

.identity-card-stat {
  min-width: 0;
  border-bottom: 1px solid #d8e0dc;
  padding-bottom: 10px;
}

.identity-card-stat span {
  color: #62706b;
  opacity: 1;
}

.identity-card-stat strong {
  display: block;
  margin-top: 5px;
  color: #17201d;
  font-size: 19px;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

.identity-card-stat strong.positive {
  color: var(--green);
}

.identity-card-stat strong.negative {
  color: var(--red);
}

.identity-card-style {
  margin-top: 22px;
  border-left: 5px solid #16745f;
  background: #eaf1ee;
  padding: 12px 14px;
}

.identity-card-style-head {
  justify-content: space-between;
  gap: 10px;
}

.identity-card-style strong {
  color: #0d5c4a;
  font-size: 17px;
}

.identity-card-style small {
  color: #62706b;
  opacity: 1;
}

.identity-card-style p {
  margin: 7px 0 0;
  color: #40504a;
  font-size: 12px;
  line-height: 1.4;
}

.identity-card-footer {
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 14px;
  color: #62706b;
  font-size: 9px;
  font-weight: 740;
}

.investor-profile-side {
  display: grid;
  gap: 24px;
  border-left: 1px solid var(--line);
  padding: 8px 0 8px 30px;
}

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

.investor-profile-facts div {
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.investor-profile-facts dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 780;
}

.investor-profile-facts dd {
  margin: 6px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 820;
  overflow-wrap: anywhere;
}

.investor-download {
  width: fit-content;
  min-width: 180px;
  min-height: 42px;
  text-decoration: none;
}

.investor-download.is-disabled {
  cursor: not-allowed;
  opacity: 0.46;
}

.investor-profile-side small {
  color: var(--muted);
  font-size: 11px;
}

.investor-password-form {
  display: grid;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.investor-password-form h3 {
  margin: 0;
  font-size: 15px;
}

.investor-password-form .field {
  min-width: 0;
}

.investor-password-form button {
  width: 100%;
}

.investor-missions {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

.mission-section-head,
.mission-title-picker,
.investor-mission > div:first-child,
.mission-copy > div:first-child {
  display: flex;
  align-items: center;
}

.mission-section-head {
  justify-content: space-between;
  gap: 20px;
}

.mission-section-head h2 {
  margin: 4px 0 0;
  font-size: 22px;
}

.mission-title-picker {
  gap: 10px;
}

.mission-title-picker label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
}

.mission-title-picker select {
  width: 190px;
}

.investor-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.investor-mission {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #f3f6f4;
  padding: 15px;
}

.investor-mission.completed {
  border-color: rgba(22, 116, 95, 0.38);
  background: #edf5f1;
}

.mission-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e2e8e5;
  color: var(--muted);
}

.investor-mission.completed .mission-icon {
  background: var(--green);
  color: #ffffff;
}

.mission-icon svg {
  width: 19px;
  height: 19px;
}

.mission-copy {
  min-width: 0;
}

.mission-copy > div:first-child {
  justify-content: space-between;
  gap: 10px;
}

.mission-copy strong {
  color: var(--ink);
  font-size: 14px;
}

.mission-copy > div:first-child span,
.mission-copy small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 740;
}

.mission-copy p {
  min-height: 34px;
  margin: 5px 0 9px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.mission-progress {
  height: 5px;
  overflow: hidden;
  border-radius: 3px;
  background: #dbe3df;
}

.mission-progress span {
  display: block;
  height: 100%;
  background: var(--green);
}

.mission-copy small {
  display: block;
  margin-top: 8px;
  color: var(--green);
}

.merger-vote-breakdown {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 12px 0;
}

.merger-vote-breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-left: 4px solid var(--green);
  background: #edf3f0;
  padding: 10px 12px;
}

.merger-vote-breakdown span {
  color: var(--muted);
  font-size: 11px;
}

.merger-vote-breakdown strong {
  color: var(--ink);
  font-size: 12px;
  text-align: right;
}

@media (max-width: 1180px) {
  .sneaker-tape,
  .live-bar,
  .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-account-head,
  .admin-edit-grid,
  .admin-position-form,
  .admin-sneaker-card,
  .admin-sneaker-head,
  .listing-card,
  .review-card,
  .admin-sneaker-grid {
    grid-template-columns: 1fr;
  }

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

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

  .investor-card-layout {
    grid-template-columns: 1fr;
  }

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

  .investor-card {
    max-width: 820px;
  }

  .investor-profile-side {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 22px 0 0;
  }
}

@media (max-width: 760px) {
  .app-shell {
    width: min(100% - 20px, 1440px);
    padding-top: 12px;
  }

  .topbar,
  .top-actions,
  .tabs {
    align-items: stretch;
    flex-direction: column;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  h1 {
    font-size: 22px;
  }

  .field.compact {
    min-width: 0;
  }

  .sneaker-tape,
  .live-bar,
  .metric-grid,
  .view-grid,
  .market-grid,
  .admin-account-metrics,
  .admin-sneaker-grid,
  .form-grid,
  .form-grid.four {
    grid-template-columns: 1fr;
  }

  .span-2,
  .span-2.field {
    grid-column: auto;
  }

  .admin-subnav {
    position: static;
    display: flex;
    grid-column: auto;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .admin-subtab {
    flex: 0 0 104px;
  }

  .tape-card {
    grid-template-columns: 76px minmax(0, 1fr) 36px;
  }

  .tape-card img {
    width: 76px;
    height: 76px;
  }

  .market-card {
    grid-template-columns: 1fr;
  }

  .market-card img {
    width: 100%;
    min-height: 180px;
    max-height: 240px;
  }

  .book-topline {
    grid-template-columns: 1fr;
  }

  .governance-proposal-head,
  .governance-vote-bar,
  .vote-totals {
    align-items: flex-start;
    flex-direction: column;
  }

  .governance-vote-bar > div {
    width: 100%;
    justify-content: flex-start;
  }

  .governance-facts,
  .company-action-row {
    grid-template-columns: 1fr;
  }

  .book-quote.ask {
    text-align: left;
  }

  .listing-card img {
    width: 100%;
    height: 180px;
  }

  .review-card img {
    width: 100%;
    height: 190px;
  }

  .identity-section-head {
    align-items: flex-start;
  }

  .mission-section-head,
  .mission-title-picker {
    align-items: stretch;
    flex-direction: column;
  }

  .mission-title-picker select {
    width: 100%;
  }

  .investor-mission-grid,
  .merger-vote-breakdown {
    grid-template-columns: 1fr;
  }

  .investor-card-layout,
  .investor-profile-facts {
    grid-template-columns: 1fr;
  }

  .investor-card {
    max-width: 820px;
    margin: 0 auto;
  }

  .investor-profile-side {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 22px 0 0;
  }

  .investor-card-top {
    padding: 12px 11px 10px;
  }

  .investor-card-body {
    padding: 12px 11px 9px;
  }

  .identity-card-brand {
    gap: 6px;
    font-size: 7px;
    line-height: 1.15;
  }

  .identity-card-brand b {
    display: none;
  }

  .identity-card-person h3 {
    margin: 2px 0;
    font-size: 15px;
  }

  .identity-card-avatar {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }

  .identity-card-logo {
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .identity-card-person {
    gap: 7px;
    margin-top: 15px;
  }

  .identity-card-person small,
  .identity-card-stat span,
  .identity-card-style small {
    font-size: 7px;
  }

  .identity-card-person p {
    font-size: 8px;
  }

  .identity-card-level {
    grid-template-columns: 27px minmax(0, 1fr);
    gap: 4px;
    margin-top: 12px;
    padding-top: 7px;
  }

  .identity-card-level span {
    font-size: 13px;
  }

  .identity-card-level strong {
    font-size: 10px;
  }

  .identity-card-level small {
    display: none;
  }

  .identity-card-level .identity-card-honor {
    max-width: 100%;
    font-size: 6px;
    padding: 2px 3px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .identity-card-role {
    font-size: 7px;
  }

  .identity-card-stats {
    gap: 7px 8px;
  }

  .identity-card-stat {
    padding-bottom: 5px;
  }

  .identity-card-stat strong {
    margin-top: 3px;
    font-size: 11px;
  }

  .identity-card-style {
    margin-top: 8px;
    border-left-width: 3px;
    padding: 6px 7px;
  }

  .identity-card-style-head {
    gap: 4px;
  }

  .identity-card-style strong {
    font-size: 10px;
  }

  .identity-card-style p {
    margin-top: 3px;
    font-size: 7px;
    line-height: 1.25;
  }

  .identity-card-footer {
    gap: 4px;
    padding-top: 5px;
    font-size: 6px;
  }

  .event-list li {
    grid-template-columns: 1fr;
    gap: 3px;
  }
}
