/* Sichtbarkeits-Klassen als 1:1-Gegenstueck zu Elementors .elementor-hidden-<breakpoint>.
 *
 * Elementor blendet auf dieser Site grossflaechig per Klasse aus statt zu loeschen (z.B. der
 * stillgelegte Investoren-Login-Block oder Deko-Grafiken, die nur in einem Bereich sichtbar
 * sind). Ohne diese Klassen rendert der Bricks-Umbau Elemente, die auf der Live-Site
 * unsichtbar sind — auf der Startseite hat genau das die Seite horizontal ueberlaufen lassen.
 *
 * Die Bereichsgrenzen sind aus dem Live-CSS uebernommen und entsprechen exakt den
 * Elementor-Breakpoints (2400 / 1366 / 1200 / 1024 / 880 / 767).
 * Erzeugt am 2026-08-19.
 */
@media (min-width: 2400px)                        { .el-hidden-widescreen   { display: none !important; } }
@media (min-width: 1367px) and (max-width: 2399px){ .el-hidden-desktop      { display: none !important; } }
@media (min-width: 1201px) and (max-width: 1366px){ .el-hidden-laptop       { display: none !important; } }
@media (min-width: 1025px) and (max-width: 1200px){ .el-hidden-tablet_extra { display: none !important; } }
@media (min-width:  881px) and (max-width: 1024px){ .el-hidden-tablet       { display: none !important; } }
@media (min-width:  768px) and (max-width:  880px){ .el-hidden-mobile_extra { display: none !important; } }
@media (max-width: 767px)                         { .el-hidden-mobile       { display: none !important; } }
