.hero-section {
  display: flex;
  padding: 120px 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  position: relative;
}

.hero-section video {
  position: absolute;
  top: -222px;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
  pointer-events: none;
  user-select: none;
}

.hero-section .hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  z-index: 2;
}

.hero-content .course-category {
  align-self: stretch;
  color: var(--Text-On-Primary, #fff);
  font-feature-settings: "dlig" on;
  font-family: Manrope;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.28px;
  background: linear-gradient(to right, #cf157f, #fa515e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.headline-row .headline-serif {
  color: var(--Text-Light-Grey, #e9ebed);
  font-feature-settings: "dlig" on;
  font-family: "Antic Didone";
  font-size: 104px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}

.headline-row .headline-sans {
  color: var(--Text-On-Primary, #fff);
  font-feature-settings: "dlig" on;
  font-family: "Manrope";
  font-size: 104px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -2.08px;
  text-transform: uppercase;
}

.headline-inline {
  display: flex;
  align-items: baseline;
  gap: 24px;
  align-self: stretch;
  flex-wrap: wrap;
}

.headline-inline .headline-serif {
  color: var(--Text-Light-Grey, #e9ebed);
  font-feature-settings: "dlig" on;
  font-family: "Antic Didone";
  font-size: 104px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  text-transform: uppercase;
}

.headline-inline .headline-sans {
  color: var(--Text-On-Primary, #fff);
  font-feature-settings: "dlig" on;
  font-family: Manrope;
  font-size: 104px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -2.08px;
  text-transform: uppercase;
}

.features-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  align-self: stretch;
  z-index: 2;
}

.features-section .features-list {
  display: flex;
  align-items: center;
  gap: 40px;
  align-self: stretch;
}

.features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.features-list .feature-text {
  color: var(--Text-Light-Grey, #e9ebed);

  font-family: Manrope;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.18px;
}

/* MOBILE VIEW */

@media screen and (width <= 768px) {
  .hero-section {
    display: flex;
    padding: 120px 20px 80px 20px;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    align-self: stretch;
  }

  .hero-content .course-category {
    color: var(--Text-On-Primary, #fff);
    font-family: Manrope;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.4px;
  }

  .hero-section .hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
  }
  .headline-container {
    width: 100%;
  }

  .headline-row .headline-serif {
    color: var(--Text-Light-Grey, #e9ebed);
    font-family: "Antic Didone";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
  }

  .headline-row .headline-sans {
    color: var(--Text-On-Primary, #fff);
    font-family: Manrope;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.4px;
  }

  .headline-inline {
    gap: unset;
  }

  .headline-inline .headline-serif {
    color: var(--Text-Light-Grey, #e9ebed);
    font-family: "Antic Didone";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
  }

  .headline-inline .headline-sans {
    color: var(--Text-On-Primary, #fff);
    font-family: Manrope;
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 38px;
    letter-spacing: -0.4px;
  }

  .features-section {
    gap: 48px;
  }

  .features-section .features-list {
    display: flex;
    align-items: center;
    align-content: center;
    gap: 12px 56px;
    align-self: stretch;
    flex-wrap: wrap;
  }

  .features-list .feature-text {
    color: var(--Text-Light-Grey, #e9ebed);
    font-family: Manrope;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.28px;
  }

  .hero-section video {
    width: 100vw;
    height: 100vh;
  }

  #hero-section {
    min-height: auto;
  }
}
