/**
 * Одинаковый кадр фото студентов в сетке и на карточке.
 * Пропорция 3:4, лишнее обрезается object-fit: cover.
 */

#students .team-thumb .brd {
  aspect-ratio: 3 / 4;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: var(--color-bg-section, #fcfaf8);
}

#students .team-thumb img,
#students .team-thumb .brd img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}

#students .single-team {
  height: 100%;
  cursor: default;
}

#students .team-info {
  min-height: 6.5rem;
}

#students .team-info .students-card__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  color: #06070b;
  cursor: default;
  text-decoration: none;
  pointer-events: none;
}

#students .single-team:hover .team-info .students-card__name,
#students .single-team:hover .team-info h4 {
  color: #06070b;
}

#students .single-team a {
  pointer-events: none;
  cursor: default;
  color: inherit;
  text-decoration: none;
}

.student-single .team-img-box {
  aspect-ratio: 3 / 4;
  max-width: 28rem;
  overflow: hidden;
  background: var(--color-bg-section, #fcfaf8);
}

.student-single .team-img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (prefers-reduced-motion: reduce) {
  #students .team-thumb img,
  .student-single .team-img-box img {
    transition: none;
  }
}
