.fl-responsive-video {
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}

.fl-responsive-video__variant {
  display: none;
  width: 100%;
}

.fl-responsive-video__variant--desktop {
  display: block;
}

.fl-responsive-video__link {
  display: block;
  width: 100%;
}

.fl-responsive-video__media {
  display: block;
  width: 100%;
  height: auto;
}

.fl-responsive-video__image {
  display: block;
  width: 100%;
  height: auto;
}

/* Tablet */
@media (max-width: 980px) {
  .fl-responsive-video__variant--desktop {
    display: none;
  }

  .fl-responsive-video__variant--tablet {
    display: block;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .fl-responsive-video__variant--tablet {
    display: none;
  }

  .fl-responsive-video__variant--mobile {
    display: block;
  }
}

/* Existing effect */
.shine-on {
  position: relative;
  overflow: hidden;
  border: 3px solid transparent;
  border-radius: 10px;
  z-index: 1;
}

.shine-on:before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 10px;
  background: linear-gradient(
    90deg,
    rgba(128, 0, 128, 0) 0%,
    rgba(242, 232, 242, 0.85) 50%,
    rgba(128, 0, 128, 0) 100%
  );
  z-index: -1;
  animation: shine-move 2s linear infinite;
}

@keyframes shine-move {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}