/* TEASER TILE  */
.teaser-tile {
	display:flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 15px;
	flex-flow: column;
}

.teaser-tile .overlay { 
	position: relative; 
	min-height: 200px;
}
.teaser-tile .overlay a {color: white; }
.teaser-tile .overlay .mask {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-attachment: fixed; 
	background: linear-gradient(to top, #000, transparent);
	opacity: 0.6;
    transition: all .4s ease-in-out;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.teaser-tile .overlay .mask:hover {
    opacity: 1;
}
.teaser-tile .overlay img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
}
.overlay .teaser-title { 
	transition: all .4s ease-in-out;
	font-size: 31px;
	line-height: 1.1;
	text-align: center;
	hyphens: none;
	margin: 10px;
}
