/**
 * Video Ad Styling
 * Placeholder for video advertising components
 * Generated: 2025-11-09 (BUILD-001 fix)
 * UPDATED: 2025-11-09 - ALL VIDEO ADS DISABLED
 */

/* ========================================
   AD DISABLING - ALL VIDEO ADS HIDDEN
   ======================================== */
.video-ad,
.video-ad-container,
.video-ad-wrapper,
.video-ad-player,
.video-ad-placeholder,
[class*="video-ad"] {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* Video Ad Container */
.video-ad-container {
  margin: 1em 0;
  padding: 0;
  background: transparent;
}

/* Responsive video wrapper */
.video-ad-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-ad-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Prevent layout shift */
.video-ad-placeholder {
  min-height: 250px;
  display: block;
}

/* Add specific styling as needed */
