
.impr {
	padding-top: 100px;
    padding-bottom: 100px;
}

.impr section {
	flex-direction: column;
	position: relative;
	align-items: flex-start;
}
  .impr h1 {
   
  }
    .impr h2 {
   font-size: var(--font-size-h3);
  }
.impr-images {
  	position: relative;
	padding-left: 100px;
 }
 .impr-text {
    background: #fff;
    padding: 40px 50px;
    z-index: 2;
    position: absolute;
    min-width: 450px;
    max-width: 450px;
    left: 0px;
}
.impr-text h3 {
    margin-bottom: 30px;
}
.impr-text:before {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    content: "";
    border: 1px solid #212223;
    position: absolute;
    left: 10px;
    top: 10px;
}

@media (max-width: 768px) { 

	 .impr-text {
	 	min-width: auto;
	 	position: relative;
	 	width: 100%;
	 	margin-bottom: 10px;
	 }
	.impr-images {
	  	position: relative;
		padding-left: 0px;
	 }

}
/* Grundlegende Styles für alle Image-Container */
.imprir-image {
    overflow: hidden;
    position: relative;
}

.imprir-image img {
    width: 120%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Container für die Image-Rows */
.impri-row {
    display: flex;
    gap: 1px;
    margin-bottom: 1px;
    max-height: 650px;
}

/* One Image Layout - volle Breite */
.impri-row.one_image .imprir-image {
    width: 100%;
    flex: 1;
}

/* Two Images Layout - 2 Bilder nebeneinander */
.impri-row.two_images .imprir-image {
    width: 50%;
    flex: 1;
}

/* Three Images Layout - 3 Bilder nebeneinander */
.impri-row.three_images .imprir-image {
    width: 33.333%;
    flex: 1;
}

/* Mobile Styles - Alle Bilder untereinander */
@media (max-width: 768px) {
    .impr h1 {
        margin-left: 0;
    }
    .impri-row {
        flex-direction: column;
        gap: 1px;
        max-height: none;
    }
    
    .impri-row.one_image .imprir-image,
    .impri-row.two_images .imprir-image,
    .impri-row.three_images .imprir-image {
        width: 100%;
        height: 300px; /* oder eine andere angemessene Höhe für Mobile */
    }
    
    .imprir-image img {
        width: 100%;
        height: 100%;
    }
}

/* Optional: Hover-Effekt für die Bilder */
.imprir-image img {
    transition: transform 0.3s ease;
}

.imprir-image:hover img {
    transform: scale(1.05);
}