/*
 * SunCube team portrait controls
 *
 * --photo-scale: photo size. 1 = original, 1.1 = 10% larger, 0.9 = 10% smaller.
 * --photo-x: horizontal position. 50% = centered; smaller moves left; larger moves right.
 * --photo-y: vertical position. Smaller moves the visible area upward; larger moves it downward.
 */

img[alt="Dr. LU Yijun"] {
  --photo-scale: 0.6;
  --photo-x: 50%;
  --photo-y: 22%;
}

img[alt="TING Shi An"] {
  --photo-scale: 1;
  --photo-x: 50%;
  --photo-y: 28%;
}

img[alt="YUE Jiaming"] {
  --photo-scale: 1;
  --photo-x: 50%;
  --photo-y: 28%;
}

img[alt="MO Zhihui"] {
  --photo-scale: 1.44;
  --photo-x: 50%;
  --photo-y: 25%;
  --photo-translate-y: 5%;
}

.team-photo-portrait .team-photo-crop {
  display: block;
  width: 116px;
  height: 116px;
  overflow: hidden;
  border-radius: 50%;
}

.team-photo-portrait .team-photo-crop img {
  width: 100%;
  height: 100%;
  border-radius: 0;
}

img[alt="Jonald KHAW"] {
  --photo-scale: 1;
  --photo-x: 50%;
  --photo-y: 28%;
}

img[alt="Prof. ANG Yu Qian"] {
  --photo-scale: 1;
  --photo-x: 50%;
  --photo-y: 28%;
}

img[alt="Prof. WONG Nyuk Hien"] {
  --photo-scale: 1;
  --photo-x: 50%;
  --photo-y: 28%;
}

img[alt="Prof. Stephen TAY En Rong"] {
  --photo-scale: 1;
  --photo-x: 50%;
  --photo-y: 28%;
}

.team-member .team-photo img {
  object-position: var(--photo-x, 50%) var(--photo-y, 28%);
  transform: translateY(var(--photo-translate-y, 0%)) scale(var(--photo-scale, 1));
  transform-origin: var(--photo-x, 50%) var(--photo-y, 50%);
}

@media (max-width: 560px) {
  .team-photo-portrait .team-photo-crop {
    width: 190px;
    height: 190px;
  }
}
