/* ==========================================================================
   Alumni cards - alumni.html only

   Card order:
       name                     leads the block
       --- M.S. Degree          accent rule and degree on one line beneath it
       Graduated: <date>        detail lines, black
       Now at: <company>
       <job title>

   Also fixes the photos, which were `width:100%` (css/style.css) plus an
   inline `height:360px` with no object-fit - every portrait stretched to a
   box unrelated to its own proportions, and three of the five carried an
   extra inline `padding-top:20px` so their subjects rendered at a different
   scale from the other two.

   Scoped under .team-page, so the shared .single-team-content rules in
   css/style.css keep working everywhere else.
   ========================================================================== */

/* --- photos: one identical frame, nothing stretched or cropped ----------- */

.team-page .single-team-content .image-box {
  background: #f6f8fb;
}

.team-page .single-team-content .image-box img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  object-position: center bottom;
  padding: 20px 12px 0px;
}

/* --- name ---------------------------------------------------------------- */

.team-page .single-team-content .lower-content h4 {
  margin-bottom: 0px;
}

.team-page .single-team-content .lower-content .alumni-name {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  color: #222222;
}

/* --- degree: sits directly under the name, rule inline on the same line -- */

.team-page .single-team-content .lower-content .text {
  margin-top: 6px;
  padding-left: 50px;
  font-size: 15px;
}

.team-page .single-team-content .lower-content .text:before {
  top: 50%;
  left: 0px;
  width: 40px;
}

/* --- details: the "Graduated:" / "Now at:" labels stay quiet, so the values
       they introduce - the date and the company - are what reads first ----- */

.team-page .single-team-content .lower-content .alumni-details {
  margin-top: 12px;
  font-size: 15px;
  line-height: 26px;
  color: #5b6675;
}

.team-page .single-team-content .lower-content .alumni-value {
  font-weight: 500;
  color: #222222;
}

@media (max-width: 575px) {
  .team-page .single-team-content .image-box img {
    height: 300px;
  }
}
