/**
 * Person card component (for parts products).
 *
 * Note: intentionally no color/background rules here
 * to avoid changing the theme color scheme.
 */

.person-card {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15.5px;
  line-height: 1.25;
}

.person-card__photo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 2px;
  flex: 0 0 72px;
}

.person-card__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.person-card__role {
  font-weight: 400;
}

.person-card__name {
  font-weight: 700;
}

