.about-page {
  max-width: 640px;
}

.about-hero {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 2rem;
}

.about-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
}

.about-intro h1 {
  margin: 0 0 0.25rem 0;
  font-size: 1.5rem;
}

.tagline {
  color: #2563eb;
  margin: 0 0 1rem 0;
  font-weight: bold;
}

.about-intro p {
  margin: 0;
}

.accent {
  color: #2563eb;
  font-weight: bold;
}

.about-connect {
  text-align: center;
}

.about-currently ul {
  list-style: none;
  padding: 0;
}

.about-currently li {
  margin: 0.5rem 0;
}

.about-interests-content {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 2rem;
  align-items: start;
}

.about-interests-text p {
  margin: 0;
}

.about-interests-photo {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 480px) {
  .about-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo {
    margin: 0 auto;
  }

  .about-interests-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-interests-photo {
    margin: 1rem auto 0;
  }
}
