@charset "utf-8";
/* CSS Document */

/*---------------------------------*/
/* S+C News Modul                  */
/*---------------------------------*/

/* Hintergründe News-Kacheln */
.suc-news-teaser .container.sc-corp-white,
.suc-news-teaser .teaser-story.sc-corp-white {
  background-color: white;
}

/* Bild erster Artikel auf h100 */
@media (min-width: 992px) {    
.suc-news-teaser .row.d-flex {
    align-items: stretch;
}

.suc-news-teaser .teaser-story.news-top-story, .suc-news-teaser .bg-image.news-top-image {
    height: 100%;
}

.suc-news-teaser .bg-image.news-top-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

@media (max-width: 1199.98px) {  
.news-teaser-text .services-box,
.news-teaser-text .services-box-py-0 {
    padding-left: 0px;
    padding-right: 0px; }
}

/*--------------------------------*/
/* Gleiche Höhe für alle Boxen    */
/*--------------------------------*/
.teaser-news-equal {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.teaser-news-equal .services-box:last-child {
  /*margin-top: auto;*/
}


.teaser-news-equal .news-button {
  margin-top: auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
}





/*---------------------------*/
/* Animation beim switch     */
/*---------------------------*/
.suc-news-teaser .news-item {
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.suc-news-teaser .news-item.hide {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
}

/* Waypoints */
/* Startzustand */
.suc-news-teaser .animate-card {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}

/* Wenn sichtbar */
.suc-news-teaser .animate-card.in-view {
  opacity: 1;
  transform: translateY(0);
}



/*---------------------------*/
/* Pagination Links          */
/*---------------------------*/

.suc-news-teaser .news-navigation .nav-link {		
    color: #222;
    font-weight: 500;
    font-size: 1.3rem;
}
@media (min-width: 992px) {    
.suc-news-teaser .news-navigation .nav-link {
    font-size: 1.4rem;
}
@media (min-width: 2000px) {    
.suc-news-teaser .news-navigation .nav-link {
    font-size: 1.6rem;
}
    }
.suc-news-teaser .news-navigation a:hover {
    color: #0069b3;
    font-weight: 600;
    text-decoration: none;
}
	
.suc-news-teaser .news-navigation .nav-link:hover {		
    text-decoration: none;
}
	
.suc-news-teaser .nav-underline .nav-link.active {		
    color: #002060;
    font-weight: 600;
    border-bottom-color: #002060;
}
	








	


