/* Desktop-only Facebook video player. Mobile keeps the existing preview/link. */
.sd-news-video-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(105, 255, 41, 0.2), rgba(255, 255, 255, 0.04)), #101412;
}

.sd-news-video-preview-link,
.sd-news-video-shell iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.sd-news-video-shell .sd-news-video-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sd-news-video-play-cue {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.62);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

@media (min-width: 1025px) {
  .sd-news-video-shell {
    aspect-ratio: 16 / 9;
  }

  .sd-news-video-shell iframe {
    z-index: 2;
    background: #000;
  }

  .sd-news-video-shell.is-loaded .sd-news-video-preview-link {
    visibility: hidden;
  }
}

@media (max-width: 1024px) {
  .sd-news-video-shell {
    aspect-ratio: auto;
    height: 340px;
  }

  .sd-news-video-shell iframe {
    display: none !important;
  }
}
