.listing {
  padding: 4rem 1rem 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 1rem;
}

.listing__title {
  grid-column: 1 / 5;
  margin: 0 0 4rem;
  font-family: 'Geist', sans-serif;
  font-weight: 400;
  font-size: 7rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.listing__intro {
  grid-column: 1 / 4;
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 6rem;
}

/* Mobile: widen the intro to match the homepage bio (.hero__bio spans 1/5) */
@media (max-width: 640px) {
  .listing__intro {
    grid-column: 1 / 5;
  }
}

.listing__items {
  grid-column: 1 / 7;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid black;
}

.listing__item {
  border-bottom: 1px solid black;
}

.listing__link {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 2rem 0;
  text-decoration: none;
  color: black;
  font-size: 3rem;
  line-height: 1.2;
  width: 100%;
  max-width: 100%;
}

.listing__link {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.listing__link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: black;
  transform: translateX(-101%);
  z-index: -1;
}

.listing__link:hover {
  color: white;
}

.listing__link:hover::before {
  transform: translateX(0);
}

.listing__item-date {
  font-size: 1.6rem;
  opacity: 0.7;
}
