.pin-scale-media .container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.pin-scale-media .pinned {
  
  padding: 30px 0 0 0;
  @media (min-width: 768px) {
    padding: 60px 0 0 0;
  }
  @media (min-width: 992px) {
    padding: 80px 0 0 0;
  }
  @media (min-width: 1230px) {
    padding: 100px 0 0 0;
  }
  @media (min-width: 1400px) {
    padding: 120px 0 0 0;
  }
}

.pin-scale-media .wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.pin-scale-media .image {
  position: relative;
  aspect-ratio: 16/9;
  width: 80%;
  margin: 0 30px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;

  border-radius: 20px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .pin-scale-media .image { width: 50%; }
}

.pin-scale-media .video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pin-scale-media .video:hover {cursor: pointer;}

.pin-scale-media .image--before,
.pin-scale-media .image--after {
  position: relative;
  width: 10%;
}

@media (min-width: 768px) {
  .pin-scale-media .image--before,
  .pin-scale-media .image--after { width: 25%; }
}

.pin-scale-media .image--before .inner,
.pin-scale-media .image--after .inner {
  aspect-ratio: 16/9;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 0;
}
.pin-scale-media .image--before .inner { right: 0; }
.pin-scale-media .image--after .inner { left: 0; }
