/*#############################*/
/*####### NEWS-BILDER #########*/
/*#############################*/

.reference-news .image-box{
  /*display: inline-block;*/
  position: relative;
  overflow: hidden;
  height:270px;
  border-radius:1rem;
}

.reference-news .image-link {position:absolute; bottom:0;}
.reference-news img.card-img-top{
	border-radius:1rem;
	width: 100%;
	height: auto;
	  display: block;
	  transform-origin: bottom center;
	  transition: transform 0.3s ease;
	  will-change: transform;	
	/* SCALE */
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
	/* VERZÖGERUNG */
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-ms-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}
.reference-news .wrap-inner:hover img.card-img-top {
	-webkit-transform: scale(1.5);
	-moz-transform: scale(1.5);
	-ms-transform: scale(1.5);
	-o-transform: scale(1.5);
	transform: scale(1.5);
	
}


.news.news-single .hero-image picture img {width: 100%; object-fit: cover;}
.news.news-single .teaser-text {font-weight: 500; font-size: 1.25rem;}