#next_gen wistia-player {
  border-radius: var(--border_radius);
  overflow: hidden;
  box-shadow: 10px 10px var(--color_pink);
}

#next_gen h2 {
  color: var(--color_white);
  font-size: 3rem;
  margin-bottom: 1rem;
}

#next_gen h2 span {
  color: var(--color_pink);
}

#next_gen ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  margin-left: 0;
}

#next_gen ul li {
  color: var(--color_white_opacity_80);
}

#next_gen ul li span {
  font-size: 1.8rem;
  font-weight: 600;
  text-shadow: -2px 2px var(--color_pink);
}

.next-gen-big-word {
  font-size: 2rem;
  color: var(--color_pink);
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

#next_gen p {
  color: var(--color_white_opacity_80);
  font-style: italic;
}

#next_gen .ast-container {
  position: relative;
  isolation: isolate;
}

#next_gen .ast-container::before {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 15rem;
  height: 255px;
  background: var(--color_black_500);
  content: "";
  z-index: -1;
  border-radius: var(--border_radius);
}

#next_gen {
  background-color: var(--color_black);
}

@media screen and (max-width: 768px) {
  #next_gen h2 {
    font-size: 1.4rem;
  }

  #next_gen ul li {
    font-size: 14px;
  }

  #next_gen ul li span {
    font-size: 1.1rem;
  }

  #next_gen wistia-player {
    height: 175px
  }

  #next_gen .ast-container::before {
    display: none
  }
}