:root {
  color-scheme: dark;
  --bg: #0d1218;
  --panel: rgba(18, 24, 32, 0.84);
  --panel-strong: rgba(11, 16, 23, 0.94);
  --line: rgba(176, 189, 206, 0.2);
  --line-strong: rgba(216, 177, 79, 0.35);
  --text: #edf2f7;
  --muted: #a9b4c2;
  --accent: #d8b14f;
  --positive: #72d2c1;
  --negative: #f0a780;
  --player: #82d173;
  --enemy: #ff7a6b;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(88, 104, 129, 0.28) 0%, rgba(13, 18, 24, 0) 40%),
    linear-gradient(180deg, #151b23 0%, var(--bg) 100%);
  color: var(--text);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  font-size: clamp(11px, 0.85vw, 14px);
}

button {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(53, 62, 76, 0.96) 0%, rgba(29, 36, 47, 0.96) 100%);
  color: var(--text);
  padding: 0.52rem 0.72rem;
  cursor: pointer;
  font: inherit;
  letter-spacing: 0.01em;
  transition: border-color 120ms ease, transform 120ms ease, background 120ms ease;
}

button:hover:not(:disabled) {
  border-color: var(--accent);
  transform: translateY(-1px);
}

button.is-active {
  border-color: var(--accent);
  box-shadow: inset 0 0 0 1px rgba(216, 177, 79, 0.5);
  background: linear-gradient(180deg, rgba(72, 82, 97, 0.98) 0%, rgba(39, 48, 60, 0.98) 100%);
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.command-card.is-locked:disabled {
  opacity: 1;
}

input {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(8, 12, 18, 0.8);
  color: var(--text);
  padding: 0.56rem 0.72rem;
  font: inherit;
  outline: none;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}

input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(216, 177, 79, 0.26);
}

.app-shell {
  display: flex;
  flex-direction: column;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

.gameplay-stage {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

#battlefield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background:
    radial-gradient(circle at 50% 20%, rgba(83, 101, 125, 0.26) 0%, rgba(22, 29, 38, 0) 34%),
    linear-gradient(180deg, #1a222d 0%, #121923 100%);
  cursor: default;
  touch-action: none;
}

.hud {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hud > * {
  pointer-events: none;
}

.hud button {
  pointer-events: auto;
}

.hud canvas {
  pointer-events: auto;
}

.panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(67, 77, 92, 0.15) 0%, rgba(16, 22, 30, 0) 100%),
    var(--panel);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel h1,
.panel h2 {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f3f6e9;
}

.panel h1 {
  font-size: 0.88rem;
}

.panel-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.panel-title-row > h1,
.panel-title-row > h2 {
  margin-bottom: 0;
}

.panel-match,
.panel-territory,
.panel-menu,
.panel-score,
.panel-debug,
.panel-command {
  padding: 0.68rem 0.8rem 0.78rem;
}

.hud-top-left {
  top: 0.75rem;
  left: 0.75rem;
  width: 20rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hud-top-center {
  top: 0.75rem;
  left: 50%;
  width: 22rem;
  transform: translateX(-50%);
}

.hud-top-right {
  top: 0.75rem;
  right: 0.75rem;
  width: 19rem;
}

.hud-debug {
  top: 0.75rem;
  right: 20.5rem;
  width: 18.5rem;
}

.hud-bottom {
  position: relative;
  inset: auto;
  width: 100%;
  flex: 0 0 auto;
  padding: 0;
}

.hud-bottom.is-pause-blurred {
  filter: blur(12px);
  pointer-events: none;
}

.hud-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.hud-overlay.is-modal {
  z-index: 40;
  pointer-events: auto;
}

.hud-overlay.is-modal #menu-overlay {
  pointer-events: auto;
}

.hud-overlay.is-research-modal {
  z-index: 60;
  background: rgba(6, 9, 14, 0.22);
  backdrop-filter: blur(6px);
}

.hud-overlay.is-pause-modal {
  background: rgba(8, 11, 16, 0.28);
  backdrop-filter: blur(12px);
}

.hud-debug:empty,
.hud-debug.is-hidden {
  display: none;
}

#menu-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  padding: 1rem;
}

#menu-overlay > .panel-menu:not(.panel-research-modal) {
  width: 32rem;
  max-width: calc(100vw - 2rem);
}

.panel-research-modal {
  width: min(98vw, 112rem);
  max-width: calc(100vw - 1rem);
  max-height: calc(100vh - 1rem);
  overflow: auto;
}

.research-modal-layout {
  display: grid;
  grid-template-columns: 20rem minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
}

.research-modal-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.research-modal-status,
.research-modal-queue {
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(67, 77, 92, 0.1) 0%, rgba(16, 22, 30, 0) 100%),
    rgba(18, 24, 32, 0.5);
}

.research-modal-status {
  min-height: 4.8rem;
}

.research-modal-queue {
  min-height: 10rem;
}

#research-modal-tree {
  min-width: 0;
}

.progress-bar {
  width: 100%;
  height: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, rgba(216, 177, 79, 0.72) 0%, var(--accent) 100%);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.row.wide > button {
  flex: 1 1 10rem;
  min-width: 0;
}

.badge {
  display: inline-block;
  padding: 0.2rem 0.48rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.log-entry {
  padding: 0.45rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  font-size: 0.9rem;
}

.log-entry:first-child {
  border-top: 0;
  padding-top: 0;
}

.notice {
  color: var(--accent);
}

.match-time {
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}

.stat-line,
.substat-line {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.stat-line-primary {
  padding-bottom: 0.15rem;
}

.stat-line-net {
  padding-top: 0.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-label,
.stat-group-title {
  color: #f3f6e9;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stat-value {
  font-size: 0.9rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.stat-group {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  padding-top: 0.18rem;
}

.substat-label {
  color: var(--muted);
  font-size: 0.8rem;
}

.substat-value {
  font-size: 0.8rem;
  font-variant-numeric: tabular-nums;
}

.substat-line-total {
  padding-top: 0.12rem;
  margin-top: 0.1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.is-positive {
  color: var(--positive);
}

.is-negative {
  color: var(--negative);
}

.menu-section {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.setup-stack {
  gap: 1rem;
}

.multiplayer-setup-stack {
  padding: 0.2rem 0 0.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.setup-button-row,
.setup-action-row {
  flex-wrap: nowrap;
}

.setup-button-row > button {
  flex: 1 1 0;
  min-width: 0;
}

.setup-action-row {
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.setup-action-row > button {
  flex: 1 1 0;
  min-width: 0;
}

.trace-setup-section,
.trace-runtime-section {
  padding-top: 0.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trace-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.trace-button-grid,
.trace-category-grid {
  gap: 0.6rem;
  flex-wrap: wrap;
}

.trace-button-grid > button,
.trace-category-grid > button {
  flex: 1 1 calc(50% - 0.3rem);
  min-width: 0;
}

.trace-inline-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.trace-category-button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.18rem;
}

.trace-category-hint {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.lobby-code-display {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.8rem 0.95rem;
  border: 1px solid rgba(216, 177, 79, 0.26);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(216, 177, 79, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%),
    rgba(12, 18, 26, 0.72);
  color: #f6e9b9;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
}

.lobby-code-row {
  display: flex;
  align-items: stretch;
  gap: 0.65rem;
}

.lobby-code-row > button {
  flex: 0 0 auto;
  min-width: 5rem;
}

.lobby-code-row-input > input {
  flex: 1 1 auto;
  min-width: 0;
}

.multiplayer-status-card {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.8rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.multiplayer-player-list {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.multiplayer-player-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.62rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.multiplayer-player-name {
  color: #f3f6e9;
  font-size: 0.92rem;
}

.multiplayer-player-status {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.territory-stack {
  gap: 0.5rem;
}

.panel-territory {
  background:
    linear-gradient(180deg, rgba(67, 77, 92, 0.1) 0%, rgba(16, 22, 30, 0) 100%),
    rgba(18, 24, 32, 0.58);
}

.territory-bar {
  display: flex;
  width: 100%;
  height: 0.7rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.territory-fill {
  height: 100%;
}

.territory-fill-player {
  background: linear-gradient(90deg, rgba(98, 165, 90, 0.92) 0%, var(--player) 100%);
}

.territory-fill-neutral {
  background: linear-gradient(90deg, rgba(120, 128, 117, 0.88) 0%, rgba(169, 177, 160, 0.96) 100%);
}

.territory-fill-ai {
  background: linear-gradient(90deg, rgba(210, 95, 83, 0.92) 0%, var(--enemy) 100%);
}

.territory-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
}

.territory-stat {
  display: flex;
  flex-direction: column;
  gap: 0.16rem;
  padding: 0.38rem 0.48rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.territory-stat-player {
  box-shadow: inset 0 0 0 1px rgba(130, 209, 115, 0.12);
}

.territory-stat-neutral {
  box-shadow: inset 0 0 0 1px rgba(198, 204, 192, 0.08);
}

.territory-stat-ai {
  box-shadow: inset 0 0 0 1px rgba(255, 122, 107, 0.12);
}

.territory-label {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.territory-value {
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
}

.score-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.45rem 0.58rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.score-row-header,
.score-values {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.score-player-meta {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.score-swatch {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  background: var(--score-color);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.score-name {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.score-badges {
  display: flex;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.score-badge {
  padding: 0.14rem 0.4rem;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  color: #f6e9b9;
  border-color: rgba(216, 177, 79, 0.35);
  background: rgba(216, 177, 79, 0.12);
}

.score-total {
  font-size: 0.88rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.score-rate {
  font-size: 0.74rem;
  font-variant-numeric: tabular-nums;
}

.ai-overview-stack {
  gap: 0.75rem;
}

.ai-overview-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.ai-overview-title-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.ai-overview-title-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ai-overview-resources {
  font-size: 1.3rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.ai-overview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.ai-overview-card {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
  padding: 0.62rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.ai-overview-strategy {
  font-size: 1rem;
  font-weight: 700;
  color: #f3f6e9;
}

.ai-detail-section {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.ai-detail-card {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  padding: 0.62rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.ai-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.2rem 0.6rem;
}

.panel-command {
  overflow: visible;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.28);
}

.command-layout {
  display: grid;
  grid-template-columns: minmax(0, 18rem) minmax(0, 1fr) 18rem;
  gap: 0.8rem;
  min-height: 13rem;
}

.command-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.command-column > h2 {
  margin-bottom: 0.5rem;
}

.command-column > div {
  min-height: 0;
  flex: 1 1 auto;
}

.command-column-selection,
.command-column-context,
.command-column-minimap {
  padding: 0.1rem;
}

.command-column-selection,
.command-column-context {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.64rem;
}

.command-column-context {
  background:
    linear-gradient(180deg, rgba(216, 177, 79, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%),
    rgba(255, 255, 255, 0.03);
}

.command-tabs {
  display: flex;
  gap: 0.5rem;
}

.command-tabs > button {
  min-width: 7rem;
}

.command-deck-body {
  min-height: 0;
}

.command-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.45rem;
}

.tech-tree-canvas {
  position: relative;
  min-height: calc(100vh - 10rem);
  overflow: hidden;
  padding-bottom: 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%),
    rgba(7, 11, 16, 0.34);
  cursor: grab;
  touch-action: none;
}

.tech-tree-canvas:active {
  cursor: grabbing;
}

.tech-tree-grid {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  width: max-content;
  min-width: max-content;
  will-change: transform;
}

.tech-branch {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: max-content;
  min-width: 14.5rem;
  flex: 0 0 auto;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.14);
}

.tech-branch-header {
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--line);
}

.tech-branch-title {
  color: #f3f6e9;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.research-launcher {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  width: 100%;
  padding: 0.62rem 0.75rem;
  border-radius: 16px;
  text-align: left;
}

.research-launcher-title {
  color: #f3f6e9;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.research-launcher-meta {
  color: var(--muted);
  font-size: 0.74rem;
}

.tech-branch-path {
  position: relative;
  overflow: hidden;
}

.tech-branch-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.tech-branch-lines path {
  fill: none;
  stroke: rgba(176, 189, 206, 0.32);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.command-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.22rem;
  min-height: 4.35rem;
  text-align: left;
  padding: 0.72rem 0.66rem 0.62rem;
  padding-top: 0.82rem;
}

.command-card-title {
  font-size: 0.82rem;
  color: #f3f6e9;
}

.command-card-meta {
  font-size: 0.72rem;
  color: var(--muted);
}

.command-card.is-locked {
  opacity: 1;
  filter: blur(0.6px) saturate(0.4);
  overflow: hidden;
}

.command-card.is-locked::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 11, 16, 0.42);
  pointer-events: none;
}

.command-card-lock {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  line-height: 1;
  filter: none;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.command-card-upgrade {
  min-height: 0;
  align-items: stretch;
}

.tech-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  align-items: stretch;
  padding: 0.8rem;
  border-radius: 8px;
  gap: 0.35rem;
}

.tech-node-tier {
  display: inline-block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.tech-node.is-completed {
  border-color: rgba(114, 210, 193, 0.42);
  background: rgba(63, 105, 96, 0.2);
}

.tech-node.is-active {
  border-color: rgba(216, 177, 79, 0.55);
  background: rgba(216, 177, 79, 0.1);
}

.tech-node.is-queued {
  border-color: rgba(169, 180, 194, 0.34);
  background: rgba(169, 180, 194, 0.08);
}

.tech-node.is-available {
  border-color: rgba(130, 209, 115, 0.36);
  background: rgba(130, 209, 115, 0.08);
}

.tech-node.is-locked {
  opacity: 0.7;
}

.queue-stack {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-height: 6rem;
}

.queue-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.queue-row-copy {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
}

.command-card > .badge {
  position: absolute;
  top: 0.34rem;
  right: 0.38rem;
  padding: 0.1rem 0.32rem;
  font-size: 0.58rem;
  letter-spacing: 0.06em;
}

.minimap-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 12rem;
  padding: 0.28rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(67, 77, 92, 0.12) 0%, rgba(16, 22, 30, 0) 100%),
    rgba(8, 11, 16, 0.38);
}

#minimap {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  cursor: pointer;
}

.meta {
  color: var(--muted);
  line-height: 1.35;
  font-size: 0.78rem;
}
