.about-page {
  min-width: 100vw;
  min-height: 100vh;
  background: var(--color-bg);
}

.team {
  padding: 2em 1em 5em 1em;
}

.team-row {
  display: flex;
  gap: 8em;
  margin-bottom: 4em;
}

.team-member {
  flex: 1;
}

.tile {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: var(--color-accent-bg);
  display: flex;
  align-items: flex-end;
  padding: 0.75em;
}

.tile h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  line-height: 1;
}

.team-info {
  position: relative;
  top: 20px;
  opacity: 0;
  transition: all 0.3s;
}

.team-member:hover .team-info {
  top: 5px;
  opacity: 1;
}

.about-subhero {
  padding: 1em;
}

.about-subhero h2 {
  width: 75%;
}

.about-page .hero-visions {
  background: var(--color-accent-bg);
}

.hovers {
  padding: 4em 1em 4em 1em;
  display: flex;
  gap: 1em;
}

.hovers > div {
  flex: 1;
}

.hover-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.3em;
}

.hover-item a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

@media (max-width: 900px) {
  .team-row {
    flex-direction: column;
    gap: 3em;
  }

  .team-row .team-member:empty {
    display: none;
  }

  .tile {
    aspect-ratio: 16 / 7;
  }

  .team-info {
    opacity: 1;
    top: 5px;
  }

  .about-subhero h2 {
    width: 100%;
  }

  .hovers {
    flex-direction: column;
  }
}
