:root {
  color-scheme: light;

  /* Surfaces — cool light */
  --bg: #eef1f6;
  --surface: #ffffff;
  --surface-2: #f3f6fb;
  --surface-3: #e9eef6;

  /* Ink */
  --ink: #0d1a2e;
  --ink-2: #2b3b52;
  --muted: #64748b;
  --line: rgba(13, 26, 46, 0.09);
  --line-soft: rgba(13, 26, 46, 0.06);

  /* Brand — navy / automotive blue */
  --navy: #0f2747;
  --navy-2: #16335c;
  --blue: #2f6bf0;
  --blue-deep: #1d4fc2;
  --blue-soft: #e8eefc;
  --blue-tint: #f1f5fe;

  --danger: #c2362c;
  --danger-soft: #fbe9e7;
  --warn: #b06f00;
  --warn-soft: #fdf2da;
  --ok: #11815f;
  --ok-soft: #e3f4ee;

  --focus: #2f6bf0;

  --r-xl: 24px;
  --r-lg: 18px;
  --r-md: 13px;
  --r-sm: 10px;

  --shadow-sm: 0 1px 2px rgba(13, 26, 46, 0.05);
  --shadow-md: 0 12px 30px -14px rgba(13, 26, 46, 0.22);
  --shadow-hero: 0 26px 60px -22px rgba(15, 39, 71, 0.55);

  --font-ui: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-num: "Space Grotesk", var(--font-ui);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(900px 420px at 100% -10%, rgba(47, 107, 240, 0.10), transparent 60%),
    radial-gradient(700px 360px at -10% 0%, rgba(15, 39, 71, 0.07), transparent 55%),
    var(--bg);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

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

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 30;
  transform: translateY(-180%);
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.app-shell {
  width: min(100% - 28px, 1180px);
  margin: 0 auto;
  padding: max(16px, env(safe-area-inset-top)) 0 max(40px, env(safe-area-inset-bottom));
}

/* ===================== TOP BAR ===================== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 -14px 18px;
  padding: 14px;
  background: rgba(238, 241, 246, 0.82);
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand-mark {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(150deg, var(--navy-2), var(--navy));
  color: #fff;
  font-family: var(--font-num);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-md);
}

.brand-text {
  min-width: 0;
}

.eyebrow {
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

h1 {
  margin: 1px 0 0;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h2 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: -0.005em;
}

.odo-chip {
  flex: 0 0 auto;
  display: grid;
  gap: 1px;
  padding: 8px 14px;
  border-radius: 13px;
  background: var(--surface);
  border: 1px solid var(--line);
  text-align: right;
  box-shadow: var(--shadow-sm);
}

.odo-label {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.odo-chip strong {
  font-family: var(--font-num);
  font-size: 1.02rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* ===================== SUMMARY ===================== */
.summary {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.hero-metric {
  position: relative;
  overflow: hidden;
  padding: 22px 22px 18px;
  border-radius: var(--r-xl);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(47, 107, 240, 0.55), transparent 55%),
    linear-gradient(150deg, var(--navy-2) 0%, var(--navy) 70%);
  color: #fff;
  box-shadow: var(--shadow-hero);
}

.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.hero-label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-badge {
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: capitalize;
}

.hero-value {
  display: block;
  font-family: var(--font-num);
  font-size: 2.7rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.hero-spark {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 40px;
  margin-top: 16px;
}

.hero-spark span {
  flex: 1;
  min-width: 0;
  border-radius: 4px 4px 2px 2px;
  background: rgba(255, 255, 255, 0.22);
  transition: height 400ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-spark span.is-current {
  background: rgba(255, 255, 255, 0.92);
}

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

.stat {
  display: grid;
  gap: 6px;
  align-content: start;
  padding: 14px 15px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
}

.stat--wide {
  grid-column: 1 / -1;
}

.stat-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.stat strong {
  font-family: var(--font-num);
  font-size: 1.28rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

/* ===================== INSIGHTS ===================== */
.insights {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.panel {
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  background: var(--surface);
  box-shadow: var(--shadow-md);
}

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

.chart-hint {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Monthly bar chart */
.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 168px;
  padding-top: 6px;
}

.bar-col {
  flex: 1;
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 8px;
  height: 100%;
  text-align: center;
}

.bar-stack {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}

.bar-fill {
  width: 100%;
  max-width: 30px;
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, var(--blue), var(--blue-deep));
  position: relative;
  transition: height 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.bar-col.is-current .bar-fill {
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
}

.bar-amount {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-num);
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--ink-2);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 160ms ease;
}

.bar-col:hover .bar-amount {
  opacity: 1;
}

.bar-label {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: capitalize;
}

/* Category chart */
.category-chart {
  display: grid;
  gap: 13px;
}

.chart-row {
  display: grid;
  grid-template-columns: 92px minmax(40px, 1fr) auto;
  align-items: center;
  gap: 12px;
  font-size: 0.86rem;
}

.chart-label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 600;
}

.chart-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  border-radius: 3px;
  background: var(--cat, var(--blue));
}

.chart-track {
  height: 9px;
  border-radius: 999px;
  background: var(--surface-3);
  overflow: hidden;
}

.chart-bar {
  height: 100%;
  border-radius: inherit;
  background: var(--cat, var(--blue));
  transition: width 500ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.chart-value {
  font-family: var(--font-num);
  color: var(--ink-2);
  text-align: right;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Trend (sparkline) charts */
.trend-chart {
  display: grid;
  gap: 12px;
}

.trend-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.trend-current {
  font-family: var(--font-num);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
}

.trend-delta {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
}

.trend-delta.up {
  color: var(--danger);
  background: var(--danger-soft);
}

.trend-delta.down {
  color: var(--ok);
  background: var(--ok-soft);
}

.trend-delta.flat {
  color: var(--muted);
  background: var(--surface-2);
}

.trend-plot {
  position: relative;
}

.trend-svg {
  display: block;
  width: 100%;
  height: 92px;
  overflow: visible;
}

.trend-dot {
  position: absolute;
  width: 11px;
  height: 11px;
  margin: -5.5px 0 0 -5.5px;
  border-radius: 50%;
  background: var(--dot, var(--blue));
  border: 2.5px solid var(--surface);
  box-shadow: 0 0 0 3px rgba(47, 107, 240, 0.16);
}

.trend-empty {
  color: var(--muted);
  font-size: 0.9rem;
  padding: 18px 0;
  text-align: center;
}

/* ===================== WORKSPACE ===================== */
.workspace {
  display: grid;
  gap: 12px;
}

.sidebar {
  display: contents;
}

.form-panel {
  order: 1;
}
.list-panel {
  order: 2;
}
.reminders-panel {
  order: 3;
}
.sync-panel {
  order: 4;
}

/* ===================== FORM FIELDS ===================== */
.field-grid {
  display: grid;
  gap: 12px;
  margin-bottom: 14px;
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

.field-grid .field {
  margin-bottom: 0;
}

.field-label {
  color: var(--ink-2);
  font-size: 0.82rem;
  font-weight: 600;
}

input,
select {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface-2);
  padding: 0 14px;
  font-size: 16px;
  transition: border-color 120ms ease, background 120ms ease, box-shadow 120ms ease;
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

input::placeholder {
  color: #93a0b2;
}

input:hover,
select:hover {
  border-color: rgba(13, 26, 46, 0.18);
}

input:focus,
select:focus,
button:focus-visible,
.file-button:focus-within {
  outline: none;
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(47, 107, 240, 0.18);
}

input[type="date"],
input[type="search"] {
  background-color: var(--surface-2);
}

.money-input {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--surface-2);
  overflow: hidden;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}

.money-input:focus-within {
  border-color: var(--focus);
  box-shadow: 0 0 0 3px rgba(47, 107, 240, 0.18);
}

.money-input input {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.money-input input:focus {
  box-shadow: none;
}

.money-input span {
  min-width: 46px;
  padding: 0 14px 0 6px;
  color: var(--muted);
  text-align: right;
  font-weight: 600;
  font-family: var(--font-num);
}

.fuel-fields {
  display: grid;
  gap: 12px;
  margin: 0 0 14px;
  padding: 15px;
  border: 1px solid var(--blue-soft);
  border-radius: var(--r-lg);
  background: var(--blue-tint);
}

.fuel-fields[hidden] {
  display: none;
}

.fuel-fields legend {
  padding: 0 8px;
  margin-left: -4px;
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 700;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 2px 0 0;
  font-weight: 600;
  cursor: pointer;
}

.checkbox-row input {
  width: 24px;
  height: 24px;
  min-height: 24px;
  flex: 0 0 24px;
  accent-color: var(--blue);
}

/* ===================== BUTTONS ===================== */
.button,
.small-button,
.icon-button {
  border: 1px solid transparent;
  min-height: 50px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 120ms ease, background 140ms ease, border-color 140ms ease, box-shadow 140ms ease, color 140ms ease;
}

.button:active,
.small-button:active,
.icon-button:active {
  transform: scale(0.98);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  text-align: center;
}

.primary {
  width: 100%;
  margin-top: 4px;
  background: linear-gradient(150deg, var(--blue), var(--blue-deep));
  color: #fff;
  box-shadow: 0 14px 26px -12px rgba(47, 107, 240, 0.7);
}

.primary:hover {
  box-shadow: 0 18px 30px -12px rgba(47, 107, 240, 0.78);
}

.secondary {
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.secondary:hover {
  border-color: rgba(13, 26, 46, 0.2);
  background: var(--surface-2);
}

.button:disabled,
.small-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
  box-shadow: none;
}

.file-button {
  position: relative;
}

.file-button input {
  display: none;
}

.icon-button {
  width: 44px;
  flex: 0 0 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  border-color: var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.icon-button:hover {
  color: var(--ink);
  background: var(--surface-3);
}

.settings-actions,
.sync-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

.supabase-auth {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}

/* ===================== REMINDERS ===================== */
.reminder-list {
  display: grid;
  gap: 0;
  margin-top: 4px;
}

.reminder-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line-soft);
}

.reminder-item:first-child {
  border-top: 0;
}

.reminder-name {
  font-weight: 600;
}

.reminder-date,
.sync-status {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.4;
}

.sync-status {
  margin: 4px 0 0;
}

.status-pill,
.badge {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 12px;
  background: var(--blue-soft);
  color: var(--blue-deep);
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

.status-pill.warning {
  background: var(--warn-soft);
  color: var(--warn);
}

.status-pill.danger {
  background: var(--danger-soft);
  color: var(--danger);
}

/* category badge accent (set via inline var) */
.badge {
  background: var(--cat-soft, var(--blue-soft));
  color: var(--cat-ink, var(--blue-deep));
}

/* ===================== TABLE / LIST (mobile cards) ===================== */
.list-panel .panel-heading {
  display: grid;
  gap: 12px;
  align-items: start;
}

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

.table-wrap {
  overflow: visible;
}

table,
thead,
tbody,
tr,
th,
td {
  display: block;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

thead {
  display: none;
}

tbody {
  display: grid;
  gap: 10px;
}

tr {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  padding: 14px 15px;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  background: var(--surface-2);
}

td {
  display: block;
  min-width: 0;
  padding: 0;
  border: 0;
  text-align: left;
}

.date-cell {
  grid-column: 1;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.category-cell {
  grid-column: 1;
  padding-top: 4px;
}

.amount-cell {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: start;
  font-family: var(--font-num);
  font-size: 1.18rem;
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.note-cell,
.details-cell,
.odometer-cell {
  grid-column: 1 / -1;
  min-width: 0;
}

.note-cell {
  padding-top: 8px;
  font-weight: 500;
}

.details-cell,
.odometer-cell {
  color: var(--muted);
  font-size: 0.86rem;
  padding-top: 3px;
}

td.row-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 13px;
}

.small-button {
  min-height: 44px;
  padding: 0 14px;
  background: var(--surface);
  border-color: var(--line);
  color: var(--ink);
}

.small-button:hover {
  background: var(--surface-2);
}

.danger-button {
  color: var(--danger);
}

.danger-button:hover {
  background: var(--danger-soft);
  border-color: rgba(194, 54, 44, 0.25);
}

.empty-state {
  display: none;
  padding: 30px 8px 14px;
  color: var(--muted);
  text-align: center;
}

.empty-state.visible {
  display: block;
}

@media (prefers-reduced-transparency: reduce) {
  .topbar {
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}

/* ===================== TABLET ===================== */
@media (min-width: 680px) {
  .stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .stat--wide {
    grid-column: auto;
  }

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

  .chart-card--wide {
    grid-column: 1 / -1;
  }

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

  .field-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .fuel-fields {
    grid-template-columns: 1fr 1fr;
  }

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

  .list-panel .panel-heading {
    display: flex;
  }

  .list-actions {
    grid-template-columns: minmax(170px, 1fr) 160px;
  }
}

/* ===================== DESKTOP ===================== */
@media (min-width: 1000px) {
  .app-shell {
    padding-top: 22px;
  }

  h1 {
    font-size: 1.7rem;
  }

  .summary {
    grid-template-columns: 320px minmax(0, 1fr);
    align-items: stretch;
  }

  .hero-metric {
    padding: 26px;
  }

  .hero-value {
    font-size: 3rem;
  }

  .stat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-content: start;
  }

  .insights {
    grid-template-columns: 1.5fr 1fr;
  }

  .workspace {
    grid-template-columns: 360px minmax(0, 1fr);
    align-items: start;
  }

  .form-panel,
  .reminders-panel,
  .sync-panel {
    grid-column: 1;
  }

  .list-panel {
    grid-column: 2;
    grid-row: 1 / span 3;
  }

  .form-panel {
    position: sticky;
    top: 84px;
  }

  /* restore real table on desktop */
  .table-wrap {
    overflow-x: auto;
  }

  table {
    display: table;
    border-collapse: collapse;
  }

  thead {
    display: table-header-group;
  }

  tbody {
    display: table-row-group;
  }

  tr {
    display: table-row;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  tr:hover td {
    background: var(--surface-2);
  }

  th,
  td {
    display: table-cell;
    padding: 13px 12px;
    border-bottom: 1px solid var(--line-soft);
    vertical-align: middle;
  }

  th {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-align: left;
  }

  .date-cell,
  .details-cell,
  .odometer-cell {
    font-size: 0.88rem;
  }

  .note-cell {
    padding-top: 0;
  }

  .amount-col,
  .amount-cell,
  .actions-col,
  .row-actions {
    text-align: right;
  }

  .amount-cell {
    font-size: 1rem;
  }

  td.row-actions {
    display: table-cell;
    white-space: nowrap;
    padding-top: 13px;
  }

  .row-actions .small-button {
    min-height: 38px;
  }

  .row-actions .small-button + .small-button {
    margin-left: 8px;
  }
}

@media (min-width: 1240px) {
  .insights {
    grid-template-columns: 1.6fr 1fr 1fr;
  }

  .chart-card--wide {
    grid-column: span 1;
  }
}
