.student-hero {
  min-height: 820px;
  height: 100vh;
  max-height: 980px;
  position: relative;
  display: flex;
  align-items: flex-end;
  background: #190402;
  overflow: hidden;
}

.student-hero-photo {
  position: absolute;
  inset: 0;
}

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

.student-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(25, 4, 2, 0.92) 0%,
      rgba(25, 4, 2, 0.76) 42%,
      rgba(25, 4, 2, 0.34) 72%,
      rgba(25, 4, 2, 0.12) 100%
    ),
    linear-gradient(0deg, rgba(25, 4, 2, 0.52), transparent 48%);
}
.student-hero-inner {
  position: relative;
  z-index: 2;
  width: calc(100% - 80px);
  max-width: 1280px;
  margin: 0 auto 92px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 55px;
}
.student-hero-copy {
  max-width: 760px;
  color: white;
}
.student-hero-kicker {
  font-size: 22px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: 3px;
  color: #e7c078;
  text-transform: uppercase;
}
.student-hero h1 {
  font-size: 70px;
  line-height: 71px;
  letter-spacing: -2px;
  margin: 20px 0 26px;
}
.student-hero h1 em {
  font-weight: 400;
  color: #ffd47b;
}
.student-hero-copy p {
  font-size: 22px;
  line-height: 30px;
  max-width: 760px;
  color: #f1eae5;
}
.student-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.student-hero-actions a {
  background: #a8131b;
  color: #fff;
  padding: 15px 22px;
  font-size: 15px;
  font-weight: 500;
}
.student-hero-actions a.outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.45);
}
.student-hero-panel {
  width: 260px;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  color: #ffffff;
}
.student-hero-panel > span {
  display: block;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 2px;
  color: #f3f0ee;
  font-weight: 500;
  text-transform: uppercase;
}

.student-hero-online {
  margin-top: 10px;
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.student-hero-online strong {
  font-family: "PT Serif", Georgia, serif;
  display: block;
  color: #ffffff;
  font-size: 54px;
  font-weight: 700;
  line-height: 56px;
}

.student-hero-online em {
  color: #ffd47b;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.student-hero-panel p {
  font-size: 15px;
  line-height: 21px;
  color: #57504c;
}
.student-hero-mini {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #ddd2ca;
}
.student-hero-mini div {
  width: 100%;
  padding: 10px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid #ddd2ca;
}
.student-hero-mini b {
  display: block;
  font-family: "PT Serif", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 26px;
  color: #98151b;
}
.student-hero-mini small {
  color: #57504c;
  font-size: 13px;
  line-height: 17px;
}
.student-hero-scroll {
  position: absolute;
  z-index: 3;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 10px;
  letter-spacing: 2px;
}
@media (max-width: 900px) {
  .student-hero {
    min-height: 780px;
  }
  .student-hero-inner {
    width: calc(100% - 42px);
    margin-bottom: 70px;
  }
  .student-hero-panel {
    display: none;
  }
  .student-hero h1 {
    font-size: 50px;
    line-height: 51px;
  }
  .student-hero-photo img {
    object-position: 62% center;
  }
}
@media (max-width: 600px) {
  .student-hero h1 {
    font-size: 40px;
    line-height: 42px;
  }
  .student-hero-kicker {
    font-size: 18px;
    line-height: 23px;
    letter-spacing: 2px;
  }
  .student-hero-copy p {
    font-size: 18px;
    line-height: 25px;
  }
  .student-hero-shade {
    background:
      linear-gradient(90deg, rgba(15, 8, 7, 0.88), rgba(15, 8, 7, 0.42)),
      linear-gradient(0deg, rgba(10, 6, 5, 0.82), transparent);
  }
}
