.main {
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  align-items: flex-start;
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1280px;
  width: 100%;

  @media screen and (min-width: 960px) {
    grid-template-columns: 1fr 1fr;
  }
}

.image {
  @media screen and (min-width: 960px) {
    height: calc(100svh - 80px);
    overflow: auto;
    position: sticky;
    top: 80px;
  }
}

.photo {
  width: 100%;
  height: 100%;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
}

.text {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  padding: 0 20px;

  @media screen and (min-width: 1024px) {
    margin-top: 0;
  }

  & > *:last-child {
    margin-bottom: 40px;
  }

  & a {
    text-decoration: underline;
    text-decoration-thickness: 0.05em;
    text-underline-offset: 0.325em;
  }

  & ul {
    border-bottom: 1px solid;
    margin-bottom: 40px;
    padding-bottom: 20px;
  }
}

.text-content {
  margin: 0 auto;
  max-width: 960px;
  width: 100%;
}

.curriculum {
  border-top: 1px solid;
  color: #000;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0 20px;
  padding: 40px 0;
  width: 100%;
}

.curriculum a {
  color: inherit;
  text-decoration: none;
}

.curriculum svg {
  width: clamp(1.75rem, calc(1.75rem + 0.4vw), 3rem);
  height: clamp(1.75rem, calc(1.75rem + 0.4vw), 3rem);
}