.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 2rem 2rem;
}

.about-left {
  grid-area: 1 / 1;
  text-align: center;
}

.about-right {
  grid-area: 1 / 2;
}

@media (max-width: 840px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

.about-left {
  grid-area: 1 / 1;
  text-align: center;
}

.about-right {
  grid-area: 2 / 1;
  text-align: center;
}

}

.about-headshot {
  width: 220px;
  height: 220px;
  border-radius: 100%;
  object-fit: cover;
  margin: 0 auto 1rem;
  display: block;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  border: 3px solid rgba(255, 255, 255, 0.18);
}

.about-name {
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: bold;
  margin-bottom: 0.35rem;
  color: var(--pizza);
}

.about-role {
  font-size: 0.95rem;
  color: var(--pita-dark);
  margin-bottom: 0.85rem;
}

.about-bio {
  font-size: 1.02rem;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  color: var(--pita);
}
