/* Minden YouTube iframe legyen reszponzív, 16:9 arány */
iframe[src*="youtube.com"], 
iframe[src*="youtu.be"] {
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9;       /* modern, egyszerű megoldás */
  display: block;
}