/* Proportionaler YouTube-Embed */
.yt-box{
  position: relative;
  width: 100%;
  max-width: 560px;      /* optional, kannst du auch löschen */
  margin: 10px auto;
  aspect-ratio: 16 / 9;  /* moderne, sauberste Lösung */
  background: #000;
  overflow: hidden;
}

.yt-box iframe{
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
}