.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--hit-space-md);
  margin-top: var(--hit-space-lg);
}

.value-card {
  border-left: 3px solid var(--hit-ember);
  padding: var(--hit-space-md);
  background: var(--hit-white);
}

.value-card__title {
  font-family: var(--hit-font-body);
  font-size: var(--hit-text-base);
  font-weight: 500;
  color: var(--hit-ink);
  margin-bottom: 8px;
}

.value-card__body {
  font-size: var(--hit-text-sm);
  font-weight: 300;
  color: var(--hit-slate);
  line-height: var(--hit-lh-loose);
}

.compare-wrap {
  overflow-x: auto;
  margin-top: var(--hit-space-lg);
}

.about-compare-table {
  min-width: 600px;
}

.about-compare-table .hit-table__highlight {
  color: var(--hit-ember);
}

.about-history {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--hit-space-2xl);
}

.timeline {
  position: relative;
  padding-left: 32px;
  margin-top: var(--hit-space-lg);
}

.timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.15);
}

.timeline__item {
  position: relative;
  margin-bottom: var(--hit-space-md);
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -38px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--hit-ember);
  border: 2px solid var(--hit-ink);
}

.timeline__year {
  font-size: var(--hit-text-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--hit-ember);
  margin-bottom: 4px;
}

.timeline__title {
  font-family: var(--hit-font-body);
  font-size: var(--hit-text-base);
  font-weight: 500;
  color: var(--hit-parch);
  margin-bottom: 4px;
}

.timeline__body {
  font-size: var(--hit-text-sm);
  font-weight: 300;
  color: var(--hit-slate);
  line-height: var(--hit-lh-normal);
}

@media (max-width: 768px) {
  .about-history {
    grid-template-columns: 1fr;
  }
}
