/* Video Embed Panel Styles */

.video-embed-section {
  padding: 0;
  margin: 2rem 0;
}

.video-embed-container {
  max-width: 1200px;
  margin: 0 auto;
}

.video-embed-header {
  margin-bottom: 0.5rem;
}

.video-embed-title {
  font-size: 1.5rem;
  font-weight: normal;
  color: var(--color-dark, #000);
  margin-bottom: 0;
}

.video-embed-description {
  margin-bottom: 1.5rem;
  color: var(--color-dark, #000);
  line-height: 1.6;
}

.video-embed-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  background: #000;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-embed-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .video-embed-section {
    margin: 1rem 0;
  }
  
  .video-embed-title {
    font-size: 1.25rem;
  }
  
  .video-embed-description {
    margin-bottom: 1rem;
  }
  
}

@media (max-width: 480px) {
  .video-embed-title {
    font-size: 1.1rem;
  }
  
  .video-embed-description {
    font-size: 0.9rem;
  }
}
