.c-remote-video {
  position: relative;
  max-width: 1070px;
  margin: 0 auto 2rem;
}
.c-remote-video__trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}
.c-remote-video__thumbnail {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #212121;
  border-radius: 8px;
  overflow: hidden;
}
.c-remote-video__thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-remote-video__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: rgba(33, 33, 33, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
@media (min-width: 992px) {
  .c-remote-video__play-button {
    width: 80px;
    height: 80px;
  }
}
.c-remote-video__play-icon {
  width: 20px;
  height: 20px;
  fill: #FFFFFF;
}
@media (min-width: 992px) {
  .c-remote-video__play-icon {
    width: 30px;
    height: 30px;
  }
}
.c-remote-video__modal {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.c-remote-video__modal[hidden] {
  display: none;
}
.c-remote-video__modal.is-active {
  opacity: 1;
  visibility: visible;
  display: flex;
}
.c-remote-video__modal iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
}
.c-remote-video__player {
  width: 80%;
  height: 80%;
}
.c-remote-video__close {
  position: absolute;
  top: 0;
  right: -10px;
  color: white;
  font-size: 2.5rem;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 5;
}
.c-remote-video__close:hover {
  background-color: transparent !important;
  color: #fff !important;
}
