




	
	.news-teaser-list > li + li {
		margin-top: max(45px, calc(60 * var(--base-unit)));
	}
	
	.news-teaser-list-item a {
		display: flex;
		flex-flow: row nowrap;
		pointer-events: none;
	}
	
	.news-teaser-list-item figure {
		width: calc(322 * var(--base-unit));
    flex-shrink: 0;
	}
	
	.news-teaser-list-item .copy {
		width: 100%;
		padding-left: calc(91 * var(--base-unit));
		box-sizing: border-box;
		pointer-events: all;
	}
	
	.news-teaser-list-item .excerpt {
		margin-top: calc(15 * var(--base-unit));
	}
  
  .news-teaser-list-item .excerpt-icon {
    display: block;
    margin-top: 3px;
  }
  
  .news-teaser-list-item .excerpt-icon svg path {
    fill: #029dd8;
    transition: fill 150ms;
  }
  
  .news-teaser-list-item a:hover .excerpt-icon svg path {
    fill: #ffd92f;
  }
  
  .news-teaser-list-item .headline {
    transition: color 150ms;
  }
  
  .news-teaser-list-item a:hover .headline {
    color: #3a4390;
  }
	
	.news-teaser-list-item figure span {
		display: block;
		overflow: hidden;
	}
	
	.news-teaser-list-item figure img {
		pointer-events: all;
		will-change: transform;
		transition: transform 750ms;
		transition-timing-function: var(--ttf);
	}
	
	.news-teaser-list-item a:hover figure img {
		transform: scale(1.02);
	}
  
  .module-news .module-footer,
  .module-news nav.pagination {
    margin-top: calc(100 * var(--base-unit));
    text-align: left;
  }
	
	
	
  
  
  
  
  
  @media (max-width: 500px) {
    
    .news-teaser-list-item a {
      display: block;
    }
    
    .news-teaser-list-item .copy {
      padding-left: 0;
      margin-top: 15px;
    }
    
    .news-teaser-list figure {
      max-width: var(--grid-4-);
      width: 100%;
    }
    
    .news-teaser-list-item .excerpt-icon {
      margin-top: 6px;
    }
    
    .news-teaser-list-item .excerpt-icon svg {
      width: 20px;
      height: auto;
    }
    
  }
	
	