/* PODCASTS */
.homepage-podcasts {
  position: relative;
  aspect-ratio: 16 / 9;

  .container {
    position: absolute;
    height: 100%;
    width: 100%;
  }

  > img {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 80px;
    z-index: 1;
    height: auto;
  }

  video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  h3 {
    text-transform: uppercase;
    color: #fff;
    font-weight: 400;
    bottom: 2rem;
    left: 20px;
    z-index: 3;
    position: absolute;
    display: block;
    mix-blend-mode: exclusion;
    font-size: clamp(2.5rem, 14vw, 40rem);
  }
}

@media (min-width: 1200px) {
  .homepage-podcasts {
    > img {
      height: auto;
      top: 4rem;
      right: 4rem;
      width: 200px;
    }
    h3 {
      bottom: 7rem;
    }
  }
}

@media (min-width: 1400px) {
  .homepage-podcasts {
    > img {
      height: auto;
      top: 5rem;
      right: 5rem;
      width: 310px;
    }
    h3 {
      bottom: 11rem;
      left: 8rem;
    }
  }
}
