.student-life {
  padding: 110px 0;
  background-color: #f2f2f2;
}
.student-life-inner {
  width: calc(100% - 60px);
  max-width: 1240px;
  margin: auto;
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.student-life-heading {
  max-width: 900px;
  text-align: center;
  margin-bottom: 65px;
  flex-direction: column;
  display: flex;
  align-items: center;
}
.student-life-heading p {
  font-size: 19px;
  color: #5b5550;
  max-width: 760px;
}
.student-life-stories {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.life-story {
  display: flex;
  min-height: 470px;
  background: #ffffff;
  overflow: hidden;
}
.life-story.reverse {
  flex-direction: row-reverse;
}
.life-story-photo {
  flex: 1;
  min-width: 38%;
  overflow: hidden;
}

.life-story-photo img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: center;
}
.life-story-copy {
  flex: 1;
  padding: 62px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.life-story-copy > span {
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 2px;
  font-weight: 500;
  color: #9d151c;
  text-transform: uppercase;
}
.life-story-copy h3 {
  font-size: 39px;
  line-height: 1.05;
  margin: 15px 0;
  max-width: 420px;
  font-family: "PT Serif", Georgia, serif;
}
.life-story-copy p {
  font-size: 17px;
  color: #5c5651;
}
.life-story-copy b {
  font-size: 21px;
  color: #8f1219;
  font-weight: 400;
  margin-top: 15px;
}
@media (max-width: 820px) {
  .student-life {
    padding: 75px 0;
  }
  .student-life-inner {
    width: calc(100% - 36px);
  }
  .life-story,
  .life-story.reverse {
    flex-direction: column;
  }
  .life-story-photo {
    min-height: 340px;
  }
  .life-story-photo img {
    min-height: 340px;
  }
  .life-story-copy {
    padding: 38px 28px;
  }
  .life-story-copy h3 {
    font-size: 32px;
  }
}
