.editorial-teaser {
	display: block;
	margin-bottom: 30px;
	background-color: #f0f0f0;
	color: var(--black);
}

.editorial-teaser .item {
	display: block;
}

.editorial-teaser .item .image-cont {
	position: relative;
	grid-column: auto;
	grid-row: 1;
	overflow: hidden;
}

.editorial-teaser .item .image-cont::after {
	display: block;
	width: 100%;
	height: 240px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	content: '';
	background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(35, 31, 32, 0.8) 100%);
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(35, 31, 32, 0.8) 100%);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(35, 31, 32, 0.8) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#231f20', GradientType=0);
}

.editorial-teaser .item .image-cont img {
	width: 100%;
}

.editorial-teaser .item .content {
	display: flex;
	grid-column: auto;
	grid-row: 1;
	flex-direction: column;
	justify-content: center;
	padding: 15px 30px 20px;
}

.editorial-teaser.is-right .item .content {
	grid-column-end: 1;
}

.editorial-teaser .item .content h3 {
	margin-bottom: 15px;
	font-size: 28px;
	line-height: 33px;
	color: var(--dark-pink);
	text-transform: none !important;
	font-weight: 600;
}

.editorial-teaser .item .content h3>a {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	text-transform: inherit;
}

.editorial-teaser .item .content ul {
	margin: 0 0 12px;
	padding: 0;
	list-style: none;
}

.editorial-teaser .item .content ul li {
	display: inline-block;
	font-size: 20px;
	line-height: 26px;
	color: var(--black);
	cursor: default;
}

.editorial-teaser .item .content ul li:not(:last-of-type)::after {
	content: '|';
	padding: 0 5px 0 8px;
}

.editorial-teaser .item .content p {
	font-size: 20px;
	line-height: 26px;
	color: var(--black);
	cursor: default;
	margin-bottom: var(--space-4);
}

.editorial-teaser .item .content a.readmore {
	font-size: 20px;
	line-height: 26px;
	color: var(--pink);
	font-weight: 600;
}

.editorial-teaser .item .content a.readmore>i.fa {
	padding-left: 4px;
	position: relative;
	top: 3px;
	font-size: 26px;
	line-height: inherit;
	color: inherit;
	font-weight: bold;
}

/* Tablet & up */

@media only screen and (min-width: 40.063em) {
	.editorial-teaser .item {
		display: grid;
		grid-template-columns: 50%;
	}
	.editorial-teaser .item .content {
		padding: 65px;
	}
	.editorial-teaser .item .content h3 {
		font-size: 30px;
		line-height: 35px;
	}
}

@media (hover: hover) {
	.editorial-teaser a:hover {
		text-decoration: none;
	}
}