.paragraph--type--full-width-video {
  max-width: 1392px;
  padding: 0 20px;
  margin: 60px auto;
}
.full-width-video {
  position: relative;
  
  .full-width-video--image {
    object-fit: cover;
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
  }
  .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    @media(max-width: 991px) {
      width: 60px;
      height: 60px;
    }
    @media(max-width: 768px) {
      width: 50px;
      height: 50px;
    }
    &:hover {
      cursor: pointer;
    }
    svg {
      width: 100%;
      height: 100%;
      &:hover {
        opacity: 0.75;
      }
    }
  }
}

/* Make the video container responsive */
.full-width-video--video {
  position: relative;
  width: 100%;             /* Take up full width */
  padding-bottom: 56.25%;  /* 16:9 Aspect Ratio (for 16:9 videos) */
  height: 0;
  overflow: hidden;
}

/* Ensure the video fills the container */
.full-width-video--video video,
.full-width-video--video iframe, 
.full-width-video--video .contextual-region {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;   /* 100% width */
  height: 100%;  /* 100% height */
  object-fit: cover; /* Ensure proper fit */
}