/* === Independent Video Section (Drone Overblik) === */
.spot-video-section {
  margin: 2.5rem 0;
  padding: 1rem 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  overflow: hidden;
}

.video-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 1rem;
  aspect-ratio: 16 / 9;
  /* Keeps 16:9 video shape */
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease;
  box-sizing: border-box;
}

/* Force mobile bounds */
@media (max-width: 768px) {
  .spot-video-section {
    padding: 0 !important;
    margin: 1.5rem 0 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .video-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 1rem !important;
    border-radius: 8px;
    align-self: center;
  }

  .video-wrapper:hover {
    transform: none !important;
  }
}

.video-wrapper:hover {
  transform: scale(1.015);
  /* subtle hover lift */
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: rgba(0, 0, 0, 0.65);
  border: 3px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  font-size: 3.5rem;
  line-height: 84px;
  /* centers the ▶ vertically */
  text-align: center;
  transition: all 0.25s ease;
  pointer-events: none;
  /* so click goes through to wrapper */
}

.video-wrapper:hover .play-button {
  background: #ff0000cc;
  /* YouTube-red on hover */
  transform: translate(-50%, -50%) scale(1.08);
}

.video-caption {
  font-size: 1.1rem;
  color: #444;
  margin: 0.8rem 0 0;
  line-height: 1.4;
}

.video-caption small {
  color: #777;
  font-size: 0.9rem;
}