 /* =================================================
   HERO VIDEO – ADMIN / EDITOR KORUMA
   Frontend OK – Editörde KAPALI
================================================= */

/* Varsayılan: video AKTİF (frontend) */
.hero-video {
  display: block;
}

/* Admin / Edit / Panel / Düzenleme ekranlarında KAPAT */
body[class*="admin"] .hero-video,
body[class*="editor"] .hero-video,
body[class*="edit"] .hero-video,
body[class*="panel"] .hero-video,
body[class*="dashboard"] .hero-video,
body[class*="backend"] .hero-video {
  display: none !important;
}

/* Editör iframe içindeyse (çok kritik) */
iframe .hero-video {
  display: none !important;
}

/* Editörlerde body arka planını da sıfırla */
body[class*="admin"],
body[class*="editor"],
body[class*="edit"],
body[class*="panel"] {
  background: #ffffff !important;
}
/* =================================================
   ADMIN EDITOR FIX – HERO VIDEO KAPAT
   (contenteditable editor için)
================================================= */

/* Editör alanı içindeyse HERO VIDEO KAPALI */
.editor .hero-video,
.editor[contenteditable] .hero-video {
  display: none !important;
  position: static !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* Güvenlik: admin layout içinde asla görünmesin */
.adminpage .hero-video,
.adminmain .hero-video {
  display: none !important;
}
