.doctoral-section {
  padding-block: 108px;
  background: var(--cream);
}

.doctoral-heading {
  margin-bottom: 52px;
}

.doctoral-heading h2,
.other-members-heading h2 {
  margin: 0;
  color: var(--navy);
  font: 400 clamp(42px, 5vw, 68px)/1.04 Georgia, "Times New Roman", serif;
  letter-spacing: -0.045em;
}


.doctoral-grid {
  display: grid;
  gap: 28px;
}

.student-card {
  display: grid;
  grid-template-columns: minmax(310px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 4px solid var(--teal);
  background: var(--white);
  box-shadow: 0 20px 55px rgba(7, 26, 47, 0.08);
}

.student-photo {
  position: relative;
  display: grid;
  min-height: 500px;
  aspect-ratio: 4 / 5;
  place-items: center;
  overflow: hidden;
  background: #e8e6df;
}

.student-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.student-photo-placeholder {
  color: rgba(7, 26, 47, 0.42);
  background:
    radial-gradient(circle at center, rgba(100, 216, 218, 0.22), transparent 35%),
    linear-gradient(rgba(7, 26, 47, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 47, 0.05) 1px, transparent 1px),
    #eeeae1;
  background-size: auto, 36px 36px, 36px 36px, auto;
}

.student-photo-placeholder::before,
.student-photo-placeholder::after {
  position: absolute;
  width: 64%;
  height: 26%;
  border: 1px solid rgba(8, 166, 170, 0.38);
  border-radius: 50%;
  content: "";
}

.student-photo-placeholder::before {
  transform: rotate(28deg);
}

.student-photo-placeholder::after {
  border-color: rgba(255, 138, 42, 0.42);
  transform: rotate(-28deg);
}

.student-photo-placeholder span {
  z-index: 1;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font: 400 34px/1 Georgia, "Times New Roman", serif;
  letter-spacing: 0.08em;
}


.student-copy {
  padding: 34px 36px 38px;
}

.student-role {
  margin: 0 0 12px;
  color: #087d81;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1.45;
  text-transform: uppercase;
}

.student-copy h3 {
  margin: 0 0 24px;
  color: var(--navy);
  font: 400 clamp(30px, 3vw, 42px)/1.08 Georgia, "Times New Roman", serif;
  letter-spacing: -0.035em;
}

.student-copy p:not(.student-role) {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.student-copy p:last-child {
  margin-bottom: 0;
}

.other-members-section {
  background: var(--paper);
}

.other-members-heading {
  max-width: 760px;
}

.other-members-section .roster-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 50px;
}

@media (max-width: 900px) {
  .student-card {
    grid-template-columns: 1fr;
  }

  .student-photo {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 760px) {
  .doctoral-section {
    padding-block: 78px;
  }

  .student-photo {
    min-height: 390px;
    aspect-ratio: 4 / 5;
  }

  .student-copy {
    padding: 28px 25px 31px;
  }

  .other-members-section .roster-grid {
    grid-template-columns: 1fr;
  }
}
