Wie verhindert man, dass das Video/One-Box zu breit wird


100% Zoom im Brave-Browser

/* --- 7. EMBEDS & MEDIA --- */
.twitterstatus {
  max-width: 345px !important;
  width: auto !important;
}

.video-placeholder-container,
.video-placeholder-wrapper,
.lazy-video-wrapper {
  max-width: 690px !important;
  width: auto !important;
}

.allowlistedgeneric {
  max-width: 690px !important;
  width: auto !important;
  padding: 10px !important;
  margin: 0 3px 3px 3px !important;
}

Vergleichsweise ist dies bei Discourse bei 100%

100% in Firefox

Nun, ich denke, ich habe es mit Gemini gelöst:
*Wenn das übertrieben ist, lass es mich wissen.

/* YouTube/Video-Player-Fix */
.video-placeholder-container,
.video-placeholder-wrapper,
.lazy-video-wrapper {
  /* Dies ist der Schild: Er sperrt die Player-Benutzeroberfläche auf 690px */
  max-width: 690px !important;
  width: 100% !important; 
}

.lazy-video-wrapper iframe,
.lazy-video-wrapper video {
  /* Dies füllt den Schild */
  width: 100% !important;
  max-width: 100% !important; 
  height: auto !important;
  aspect-ratio: 16 / 9 !important;
  margin: 0 !important;

}

/* Spezifisches Targeting des hochgeladenen Video-Player-Containers */
.video-container {
  max-width: 690px !important;
  text-align: left !important;
}

100% im Brave-Browser: