/* ── Meet the team section ── */
.about-team-section {
  padding: 0 0 3rem;
}
.about-team-section > .container {
  border-top: 1px solid #767676;;
  padding-top: 2rem;
}
.about-team-title {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 0 1.75rem;
  text-align: left;
}
.about-team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}
.about-team-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.about-team-card__link:hover .about-team-card__name {
  text-decoration: underline;
}
/* Square image with border-radius — NOT circle */
.about-team-card__img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  overflow: hidden;
  background: #f0f0f0;
  margin-bottom: 0.65rem;
}
.about-team-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.about-team-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: #dde3ea;
  border-radius: 8px;
}
.about-team-card__info {
  padding: 0 0.1rem;
}
.about-team-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.2rem;
  line-height: 1.3;
}
.about-team-card__role {
  font-size: 0.775rem;
  color: #666;
  margin: 0;
  line-height: 1.3;
}
.about-team-card__division {
  font-size: 0.725rem;
  color: #999;
  margin: 0.2rem 0 0;
  line-height: 1.3;
}
/* Tablet: 3 columns */
@media (max-width: 1024px) {
  .about-team-grid { grid-template-columns: repeat(3, 1fr); }
}
/* Mobile: 2 columns */
@media (max-width: 600px) {
  .about-team-grid { grid-template-columns: repeat(2, 1fr); }
  .about-team-title { font-size: 1.3rem; }
}
/* Small phones: 2 columns still fine */
