.about__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 30% auto;
  align-items: center;
}

.about__media {
  align-self: stretch;
}

.about__photo {
  display: grid;
  place-items: center;
  aspect-ratio: 1/1;
  background: linear-gradient(145deg, #151c36, #0f1530);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text-dim);
  font-weight: 700;
  letter-spacing: 0.02em;
  overflow: hidden;
}

.about__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about__cta {
  margin-top: 0.75rem;
}

.about {
  padding: 3rem 0 0 0;
}

/* Timeline */
.narrow {
  max-width: 820px;
  margin-inline: auto;
}

.lead {
  color: var(--text-dim);
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline__item {
  position: relative;
  display: block;
  padding: 0 0 1.25rem 1.75rem;
  margin: 0 0 1.25rem 0;
}

.timeline__item:last-child {
  margin-bottom: 0;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 0.35rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-accent);
  box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.18);
}

.timeline__item::after {
  content: "";
  position: absolute;
  left: 0.74rem;
  top: 1.1rem;
  bottom: -1.25rem;
  width: 2px;
  background: var(--border);
}

.timeline__item:last-child::after {
  display: none;
}

.timeline__meta time {
  font-weight: 800;
}

.timeline__label {
  display: inline-block;
  margin-top: 0.2rem;
  color: var(--text-dim);
  font-size: 0.9rem;
}

.timeline__content h3 {
  margin: 0.25rem 0 0.35rem;
}

.timeline__content p {
  margin: 0;
  color: var(--text-dim);
}

@media (max-width: 360px) {
  .timeline__item {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
  }

  .timeline__meta time {
    display: inline-block;
  }
}

@media (max-width: 520px) {
  .timeline__item {
    display: block;
    padding-left: 40px;
  }
}

@media screen and (max-width: 900px) {
  .about__grid {
    grid-template-columns: unset;
  }

  .about__media {
    max-width: 300px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (min-width: 720px) {
  .timeline__item {
    display: grid !important;
    grid-template-columns: 180px 1fr;
    gap: 1rem;
    padding: 1rem 0;
    margin: 0;
    border-top: 1px solid var(--divider);
  }

  .timeline__item:first-child {
    border-top: 0;
  }

  .timeline__item::before,
  .timeline__item::after {
    display: none;
  }

  .timeline__meta {
    position: relative;
    padding-left: 1.5rem;
  }

  .timeline__meta::before {
    content: "";
    position: absolute;
    left: 0.2rem;
    top: 0.2rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--gold-accent);
    box-shadow: 0 0 0 3px rgba(255, 122, 26, 0.18);
  }

  .timeline__meta::after {
    content: "";
    position: absolute;
    left: 0.58rem;
    top: 1rem;
    bottom: -1.25rem;
    width: 2px;
    background: var(--border);
  }

  .timeline__item:last-child .timeline__meta::after {
    display: none;
  }
}
