/* Team biographies live in an article column, so each person gets a full row. */
.roster.about-team {
  grid-template-columns: minmax(0, 1fr);
  gap: 32px;
  margin-block: 32px 48px;
}
.about-team .operator {
  grid-template-columns: 160px minmax(0, 1fr);
  column-gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid #353a37;
  overflow: visible;
  min-width: 0;
}
.about-team .operator__photo { max-width: 160px; }
.about-team .operator h3 { margin: 0; font-size: 1.65rem; line-height: 1.2; }
.about-team .operator p { margin: 10px 0 0; font-size: .8rem; line-height: 1.6; }
.about-team .operator em {
  display: block;
  margin-top: 16px;
  max-width: 60ch;
  font-size: 1rem;
  font-style: normal;
  line-height: 1.65;
  color: #c9cdc7;
}
@media (max-width: 600px) {
  .about-team .operator { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .about-team .operator__photo { grid-row: auto; max-width: 132px; margin-bottom: 20px; }
  .about-team .operator h3, .about-team .operator p, .about-team .operator em { grid-column: 1; }
  .about-team .operator em { margin-top: 14px; }
}
