/**
 * GSA homepage featured video player.
 * Responsive 16:9 wrapper around an adaptive HLS <video>.
 */
.gsa-video-player {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background: #000;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.gsa-video-player::before {
  content: "";
  display: block;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}

.gsa-video-player video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
