/* Simple grid helpers (kept page-scoped so it won't affect other pages) */
.grid {
  display: grid;
  gap: var(--s-5);
}

@media (min-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

/* Accolades list “timeline” polish */
.timeline {
  display: grid;
  gap: var(--s-4);
}

.timeline-item {
  padding-left: var(--s-5);
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1.15rem;
  bottom: -0.75rem;
  width: 2px;
  background: color-mix(in srgb, var(--border) 70%, transparent);
}

.timeline-item:last-child::after {
  display: none;
}

.kicker {
  margin: 0 0 var(--s-2);
  color: var(--muted);
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: var(--text-sm);
}

/* Keeps long paragraphs readable without looking “narrow” vs cards */
.measure {
  max-width: 75ch;
}

