/* Container für Wombach Internet 12.04.2026 */
@charset "UTF-8";
/* Haupt-Container */
		.iframe-container {
		  width: 100%;
		  background: #FFFFFF;
		}

		/* Container 1 */
		.container1 {
		  width: 100%;
		  height: 200px;
		  margin-bottom: 0;
		}

		.container1 iframe {
		  width: 100%;
		  height: 100%;
		  border: none;
		  background: #FFFFFF;
		  display: block;
		}

		/* Container 2 */
		.container2 {
		  width: 100%;
		  height: 225px;
		  margin-bottom: 0;
		}

		.container2 iframe {
		  width: 100%;
		  height: 100%;
		  border: none;
		  background: #FFFFFF;
		  display: block;
		}

		/* Container 3 */
		.container3 {
		  width: 100%;
		  height: 225px;
		  margin-bottom: 0;
		}

		.container3 iframe {
		  width: 100%;
		  height: 100%;
		  border: none;
		  background: #FFFFFF;
		  display: block;
		}

		/* Responsive: Höhen anpassen auf kleinen Bildschirmen */
		@media (max-width: 768px) {
		  .container1 {
			height: auto;
			min-height: 200px;
		  }
		  
		  .container2,
		  .container3 {
			height: auto;
			min-height: 225px;
		  }
		}