.editorial-grid {
	display: block;
	margin-bottom: 15px;
	position: relative;
}

.editorial-grid .item {
	display: block;
	grid-row: auto;
	grid-column: auto;
	position: relative;
	margin-bottom: 15px;
	overflow: hidden;
}

.editorial-grid .item::after {
	display: block;
	width: 100%;
	height: 250px;
	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-grid .item::before {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	content: '';
	opacity: 0;
	pointer-events: none;
	background-color: #000;
	transition: opacity 0.5s ease;
	z-index: 1;
}

.editorial-grid .item:hover::before {
	opacity: 0.6;
	pointer-events: all;
	transition: opacity 0.5s ease;
}

.editorial-grid .item.is-tall {
	grid-row: 1 / span 2;
	grid-column: 2;
}

.editorial-grid .item.is-tall:nth-of-type(1) {
	grid-column: 1;
}

.editorial-grid .item img {
	width: 100%;
	transform: scale(1.1);
	transition: transform 0.5s ease;
}

.editorial-grid .item:hover img {
	transform: scale(1);
	transition: transform 0.5s ease;
}

.editorial-grid .item .content {
	display: block;
	width: 100%;
	padding: 15px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1;
}

.editorial-grid .item .content h3 {
	display: block;
	margin-bottom: 0px;
	font-size: 24px;
	line-height: 30px;
	font-weight: 700;
	color: #fff;
}

.editorial-grid .item .content ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.editorial-grid .item .content ul li {
	display: inline-block;
	font-size: 18px;
	line-height: 20px;
	font-weight: normal;
	color: #fff;
}

.editorial-grid .item .content ul li:not(:last-of-type)::after {
	content: '|';
	padding: 0 8px 0 12px;
	color: var(--dark-pink);
}

/* Tablet & up */

@media only screen and (min-width: 40.063em) {
	.editorial-grid {
		display: grid;
		grid-template-columns: 50% 50%;
		margin-bottom: 30px;
		position: relative;
	}
	.editorial-grid.is-left .item.is-tall {
		margin-right: 15px;
	}
	.editorial-grid.is-right .item.is-tall {
		margin-left: 15px;
	}
	.editorial-grid .item .content {
		padding: 20px 27px;
	}
	.editorial-grid .item .content h3 {
		font-size: 30px;
		line-height: 35px;
	}
	.editorial-grid .item .content ul li {
		font-size: 20px;
		line-height: 26px;
	}
}

/* Desktop & up */

@media only screen and (min-width: 64.063em) {}