:root {
  color-scheme: dark;
  --bg: #08090a;
  --panel: #111315;
  --panel-strong: #171a1d;
  --line: #2b3033;
  --line-soft: rgba(255, 255, 255, 0.08);
  --text: #f1eee8;
  --muted: #aaa39a;
  --faint: #746f69;
  --red: #d64a2f;
  --amber: #c39a4b;
  --steel: #9fb0b6;
  --green: #66c28a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

button,
select,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(8, 9, 10, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  isolation: isolate;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from -7deg, rgba(214, 74, 47, 0.95) 0deg 4deg, rgba(214, 74, 47, 0.2) 4deg 8deg, transparent 8deg 13deg),
    radial-gradient(circle, #1a1b1d 0 46%, #090a0b 47% 100%);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  box-shadow:
    inset 0 0 0 1px rgba(214, 74, 47, 0.75),
    inset 0 0 0 7px rgba(8, 9, 10, 0.72),
    0 0 24px rgba(214, 74, 47, 0.16);
  text-shadow: 0 0 12px rgba(214, 74, 47, 0.72);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  border: 1px solid rgba(214, 74, 47, 0.48);
  border-radius: 50%;
  background: linear-gradient(145deg, #111315, #070809);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 0.98rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-left: auto;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  border-color: rgba(214, 74, 47, 0.65);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: calc(100svh - 71px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.98) 0%, rgba(8, 9, 10, 0.88) 42%, rgba(8, 9, 10, 0.34) 100%),
    radial-gradient(circle at 75% 46%, rgba(214, 74, 47, 0.2), rgba(8, 9, 10, 0) 34%),
    url("assets/gl1800-car-tire-mounted.jpg") right 7vw center / min(48vw, 620px) auto no-repeat,
    #08090a;
}

.hero-shade {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, rgba(8, 9, 10, 0), var(--bg));
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 82px clamp(18px, 4vw, 42px) 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2.65rem, 6.2vw, 4.85rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  line-height: 1.15;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 1.08rem;
}

.photo-credit {
  max-width: 520px;
  margin-bottom: 34px;
  color: var(--faint);
  font-size: 0.82rem;
}

.photo-credit a {
  color: var(--amber);
  font-weight: 700;
  text-decoration: none;
}

.finder-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1.45fr) minmax(110px, 0.65fr) repeat(2, minmax(150px, 1fr)) minmax(130px, auto) minmax(96px, auto) minmax(96px, auto);
  gap: 12px;
  align-items: end;
  max-width: 1120px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(17, 19, 21, 0.9);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

label span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

select,
button {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b0d0f;
  color: var(--text);
}

select {
  width: 100%;
  padding: 0 36px 0 12px;
}

button {
  padding: 0 18px;
  cursor: pointer;
}

button:hover,
select:hover {
  border-color: rgba(214, 74, 47, 0.72);
}

.find-button {
  border-color: rgba(214, 74, 47, 0.85);
  background: var(--red);
  color: #fff;
  font-weight: 800;
}

.find-button:hover {
  border-color: #ff765b;
  background: #ee5638;
}

.toggle {
  min-height: 46px;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0b0d0f;
}

.toggle input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.toggle span {
  color: var(--text);
  text-transform: none;
}

.results-shell {
  max-width: 1180px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.results-shell[hidden] {
  display: none;
}

.results-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 12px;
}

.results-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
}

.results-heading p:not(.eyebrow),
.tool-note {
  max-width: 760px;
  color: var(--muted);
}

.result-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--muted);
}

.result-toolbar span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: #0c0e10;
  font-size: 0.86rem;
}

.tool-note {
  margin-bottom: 18px;
  font-size: 0.92rem;
}

.hint-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.hint-grid article {
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: rgba(11, 13, 15, 0.72);
}

.hint-grid strong,
.hint-grid span {
  display: block;
}

.hint-grid strong {
  margin-bottom: 5px;
  color: var(--text);
  font-size: 0.9rem;
}

.hint-grid span {
  color: var(--muted);
  font-size: 0.82rem;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.tire-card,
.empty-state {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    var(--panel);
}

.tire-card {
  display: block;
}

.card-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.report-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  list-style: none;
}

.report-summary::-webkit-details-marker {
  display: none;
}

.report-main {
  display: grid;
  min-width: 0;
}

.report-main .card-topline {
  margin-bottom: 12px;
}

.report-name {
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1.14rem;
  font-weight: 800;
  line-height: 1.15;
}

.open-label {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(195, 154, 75, 0.45);
  border-radius: 999px;
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.tire-card[open] .open-label {
  border-color: rgba(102, 194, 138, 0.45);
  color: var(--green);
}

.label-open {
  display: none;
}

.tire-card[open] .label-closed {
  display: none;
}

.tire-card[open] .label-open {
  display: inline;
}

.report-body {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line-soft);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.badge.high,
.badge.runflat,
.badge.verified {
  border-color: rgba(102, 194, 138, 0.4);
  color: var(--green);
}

.badge.medium,
.badge.candidate,
.badge.lead {
  border-color: rgba(195, 154, 75, 0.45);
  color: var(--amber);
}

.badge.low,
.badge.weak {
  border-color: rgba(214, 74, 47, 0.45);
  color: var(--red);
}

.size-line {
  margin-bottom: 8px;
  color: var(--steel);
  font-size: 1.5rem;
  font-weight: 800;
}

.evidence-note {
  max-width: 34ch;
  margin-bottom: 10px;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 700;
}

.verdict {
  margin-bottom: 18px;
  color: var(--muted);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 18px;
  background: var(--line-soft);
}

.spec-grid div {
  min-width: 0;
  padding: 12px;
  background: #0b0d0f;
}

.spec-grid span,
dt {
  display: block;
  margin-bottom: 5px;
  color: var(--faint);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.spec-grid strong,
dd {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  overflow-wrap: anywhere;
}

.commentary,
.anecdote-block p {
  color: var(--muted);
}

.anecdote-block {
  margin-top: 16px;
  color: var(--muted);
}

.anecdote-block strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 0.9rem;
}

.source-row {
  display: grid;
  gap: 5px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}

.source-row span {
  color: var(--faint);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.source-row a {
  color: var(--amber);
  font-weight: 700;
  text-decoration: none;
}

.source-row small {
  color: var(--muted);
  font-size: 0.78rem;
}

.source-row a:hover {
  color: var(--text);
}

.vendor-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 16px;
}

.vendor-button {
  display: grid;
  min-height: 54px;
  align-content: center;
  padding: 8px;
  border: 1px solid rgba(214, 74, 47, 0.5);
  border-radius: 8px;
  background: rgba(214, 74, 47, 0.08);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.vendor-button small {
  display: block;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
}

.vendor-button:hover {
  border-color: var(--red);
  background: rgba(214, 74, 47, 0.16);
}

code {
  color: var(--amber);
}

.economics-calculator {
  padding: 58px clamp(18px, 4vw, 56px) 72px;
  background:
    linear-gradient(180deg, var(--bg), #0d0f11 42%, var(--bg)),
    var(--bg);
}

.calculator-card {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(18px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    rgba(17, 19, 21, 0.84);
  box-shadow: var(--shadow);
}

.calculator-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.calculator-head h2 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.calculator-head p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
}

.calculator-link {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(195, 154, 75, 0.42);
  border-radius: 999px;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.calculator-link:hover {
  border-color: rgba(195, 154, 75, 0.78);
  color: var(--text);
}

.calculator-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}

.range-control {
  gap: 9px;
}

.range-control > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  text-transform: none;
}

.range-control > span > span {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: none;
}

.range-control output {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
}

.range-control input[type="range"] {
  width: 100%;
  height: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.range-control input[type="range"]::-webkit-slider-runnable-track {
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--text) 0 var(--range-value), rgba(255, 255, 255, 0.22) var(--range-value) 100%);
}

.range-control input[type="range"]::-moz-range-track {
  height: 7px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.range-control input[type="range"]::-moz-range-progress {
  height: 7px;
  border-radius: 999px;
  background: var(--text);
}

.range-control input[type="range"]::-webkit-slider-thumb {
  width: 17px;
  height: 17px;
  margin-top: -6px;
  border: 0;
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
  appearance: none;
  -webkit-appearance: none;
}

.range-control input[type="range"]::-moz-range-thumb {
  width: 17px;
  height: 17px;
  border: 0;
  border-radius: 50%;
  background: var(--text);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.range-control input[type="range"]:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

.calculator-totals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.calculator-totals article {
  min-width: 0;
  min-height: 116px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(23, 26, 29, 0.86);
}

.calculator-totals strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  line-height: 1;
  letter-spacing: 0;
}

.calculator-totals span {
  color: var(--muted);
  font-size: 0.86rem;
}

.calculator-totals .savings-total strong {
  color: #5b9cff;
}

.calculator-totals .savings-total.loss strong {
  color: #ff646b;
}

.calculator-chart-block {
  margin-top: 26px;
}

.calculator-chart-block h3 {
  margin-bottom: 12px;
}

.spend-chart {
  display: block;
  width: 100%;
  min-height: 250px;
  overflow: visible;
}

.chart-grid {
  stroke: rgba(255, 255, 255, 0.1);
  stroke-dasharray: 4 6;
  stroke-width: 1;
}

.chart-axis-label {
  fill: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.chart-line {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.chart-line-moto {
  stroke: #ff646b;
}

.chart-line-darkside {
  stroke: #5b9cff;
}

.chart-end-label {
  font-size: 14px;
  font-weight: 900;
}

.chart-moto-label {
  fill: #ff646b;
}

.chart-darkside-label {
  fill: #5b9cff;
}

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.chart-legend span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.chart-legend span::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
}

.moto-line {
  color: #ff646b;
}

.darkside-line {
  color: #5b9cff;
}

.calculator-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: 22px;
  border: 1px solid #5b9cff;
  border-radius: 8px;
  background: #5b9cff;
  color: #040608;
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

.calculator-cta:hover {
  background: #73abff;
}

.article-shell {
  min-height: calc(100svh - 71px);
  padding: 72px clamp(18px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.98), rgba(8, 9, 10, 0.9)),
    url("assets/gl1800-car-tire-mounted.jpg") right 8vw top 96px / min(40vw, 560px) auto no-repeat,
    var(--bg);
}

.article {
  max-width: 920px;
}

.article h1 {
  max-width: 820px;
}

.article-lede {
  max-width: 720px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.12rem;
}

.math-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 900px;
  margin: 0 0 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line-soft);
  box-shadow: var(--shadow);
}

.math-strip div,
.math-grid div,
.savings-list div,
.math-callout {
  background: rgba(17, 19, 21, 0.92);
}

.math-strip div,
.math-grid div {
  min-width: 0;
  padding: 18px;
}

.math-strip span,
.math-grid span,
.savings-list dt {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.math-strip strong {
  color: var(--text);
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.05;
}

.article-section {
  max-width: 820px;
  margin-bottom: 42px;
}

.article-section h2 {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.article-section p {
  color: var(--muted);
}

.math-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line-soft);
}

.math-grid strong,
.savings-list dd {
  display: block;
  color: var(--text);
  font-size: 1.25rem;
}

.math-grid em {
  display: block;
  margin-top: 6px;
  color: var(--steel);
  font-size: 0.86rem;
  font-style: normal;
}

.savings-list {
  display: grid;
  gap: 1px;
  margin: 22px 0 0;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line-soft);
}

.savings-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
}

.savings-list dd {
  margin: 0;
  font-weight: 800;
}

.math-callout {
  margin: 22px 0 14px;
  padding: 20px;
  border: 1px solid rgba(214, 74, 47, 0.45);
  border-radius: 8px;
}

.math-callout strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1.16rem;
}

.math-callout p {
  margin-bottom: 0;
}

.source-note {
  color: var(--faint);
  font-size: 0.88rem;
}

.source-note a {
  color: var(--amber);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .finder-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .article-shell {
    background:
      linear-gradient(90deg, rgba(8, 9, 10, 0.98), rgba(8, 9, 10, 0.92)),
      url("assets/gl1800-car-tire-mounted.jpg") right 4vw top 96px / min(52vw, 480px) auto no-repeat,
      var(--bg);
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(8, 9, 10, 0.84), rgba(8, 9, 10, 0.98)),
      url("assets/gl1800-car-tire-mounted.jpg") center top 22px / min(78vw, 420px) auto no-repeat,
      #08090a;
  }

  .hero-inner {
    padding-top: min(64vw, 330px);
  }

  h1 {
    font-size: 2.35rem;
    line-height: 1;
  }

  .finder-panel,
  .results-grid,
  .hint-grid,
  .calculator-controls,
  .calculator-totals,
  .math-strip,
  .math-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    margin-left: 0;
  }

  .economics-calculator {
    padding: 36px 18px 52px;
  }

  .calculator-head {
    flex-direction: column;
  }

  .calculator-totals article {
    min-height: 0;
  }

  .spend-chart {
    min-height: 210px;
  }

  .results-heading {
    align-items: stretch;
    flex-direction: column;
  }

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

  .report-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .article-shell {
    padding-top: min(52vw, 290px);
    background:
      linear-gradient(180deg, rgba(8, 9, 10, 0.82), rgba(8, 9, 10, 0.98)),
      url("assets/gl1800-car-tire-mounted.jpg") center top 22px / min(78vw, 420px) auto no-repeat,
      var(--bg);
  }

  .savings-list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}
