.hero-image .hero__image {
  display: flex;
  align-items: flex-end;
  margin-top: var(--spacing);
  position: relative;
}

.hero-image .hero__image img {
  border-radius: var(--border-radius);
}

.hero-image .hero__content {
  display: flex;
  flex-direction: column;
}

.hero-image.hero-reduced .hero__content {
  justify-content: end;
}

.hero-image .hero__title,
.hero-image p {
  margin: 0 0 var(--spacing-2) 0;
}

.hero-image p {
  font-size: var(--text-large);
}

.hero-image .hero__play,
.hero-image .hero__pause {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}

.hero-image .hero__play .button__icon,
.hero-image .hero__pause .button__icon,
.hero-image .hero__play.button--icon:hover .button__icon,
.hero-image .hero__pause.button--icon:hover .button__icon {
  background-color: var(--c-primary-light);
  border: 0.1rem solid var(--c-grey);
}

.hero-image .hero__pause {
  display: none;
}

.hero-image .hero__image.is-playing .hero__play {
  display: none;
}

.hero-image .hero__image.is-playing .hero__pause {
  display: block;
}

@media (min-width: 768px) {
  .hero-image .hero-image-wrapper {
    display: flex;
    justify-content: space-between;
  }

  .hero-image p {
    margin-bottom: 0;
  }

  .hero-image .hero__title {
    margin-bottom: var(--padding-large);
  }

  .hero-image .hero__title.hero__title-nospace {
    margin-bottom: var(--spacing-2);
  }

  .hero-image .hero__image {
    max-width: 50%;
    margin-top: 0;
    flex-shrink: 0;
    margin-left: 2rem;
    position: relative;
  }
}

@media (min-width: 1440px) {
  .hero-image .hero__content {
    max-width: 50%;
  }

  .hero-image.hero-reduced .hero__content {
    margin-bottom: var(--spacing-8);
  }
}

@media (min-width: 1920px) {
  .hero-image:not(.hero-reduced) .hero__content {
    margin-top: 9rem;
  }
}
