/* Video Block Styles */

.video-block {
  position: relative;
  width: 100%;
}

.video-block video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.video-block iframe {
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.video-block .video-placeholder {
  background-color: #f3f4f6;
  border-radius: 0.5rem;
  padding: 2rem;
  text-align: center;
  color: #6b7280;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .video-block {
    margin: 0 -1rem;
  }

  .video-block video,
  .video-block iframe {
    border-radius: 0;
  }
}
