.mixed-media-v3 {
  position: relative;
  width: 100%;
  background-color: $white;
  padding: 32px $gutter;
  margin: 40px 0;

  @include sm {
    padding: 24px $gutter-mobile;
    margin: 30px 0;
  }

  &.block-bg--light-gray {
    background-color: $gray-bluish-light;
  }

  &.block-bg--light-blue {
    background-color: $gray-bluish;
  }

  &.block-bg--dark-blue {
    background-color: $dark-color;
    color: $white;

    .mixed-media-v3__title,
    .mixed-media-v3__content,
    .mixed-media-v3__cta {
      color: $white;
    }
  }

  &--invert {
    .mixed-media-v3__container {
      flex-direction: row-reverse;

      @include sm {
        flex-direction: column;
      }
    }
  }

  &__wrapper {
    margin: 0 auto;
    width: 100%;
    max-width: $projects-detail-width;
  }

  &__container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    column-gap: 32px;

    @include sm {
      flex-direction: column;
      row-gap: 32px;
    }
  }

  &__media-container {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 100px;
    border-bottom-right-radius: 100px;
    width: 100%;
    max-width: 438px;
    height: auto;
    flex: 1;

    @include sm {
      max-width: 100%;
    }

    &[data-video] {
      border-top-left-radius: 0;
      border-bottom-right-radius: 0;
      max-width: 550px;

      @include sm {
        max-width: 100%;
      }
    }

    &.js-playing {
      border-radius: 0;
    }

    iframe {
      width: 100%;
      height: 100%;
      border: none;
      aspect-ratio: 16 / 9;
    }
  }

  &__media-video {
    position: relative;
    width: 100%;
    height: 100%;
  }

  &__play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: url('/path/to/play-icon.svg') no-repeat center;
    background-size: contain;
    cursor: pointer;
    z-index: 2;
  }

  &__image {
    display: block;
    width: 100%;
    height: auto;
    border-top-left-radius: 20%;
    border-bottom-right-radius: 20%;
  }

  &__info {
    flex: 1;
    padding: 0 32px;

    @include sm {
      padding: 0;
    }
  }

  &__title {
    margin-bottom: 0;
    margin-top: 0;
  }

  &__subject {
    color: $medium-color;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: 0.16px;
    margin: 0 0 14px;
  }

  &__content {
    margin-top: 16px;

    p, li {
      font-size: 1.8rem;
      font-family: $font-default;
      font-style: normal;
      font-weight: 400;
      line-height: 150%;

      @include sm {
        font-size: 1.6rem;
        letter-spacing: -0.16px;
      }
    }
  }

  &__cta {
    margin-top: 32px;

    .std-button {
      padding: 0 32px;
    }
  }
}
