.trending-module {
	font-family: var(--ringside-ssm);
	width: 100%;
}

.trending-link {
	display: block;
	text-decoration: none;
}

.trending-module__key-picture {
	display: grid;
	grid-template-rows: 3fr auto;
	height: 100%;
}

.trending-module__picture {
	max-height: 475px;
	grid-area: 1 / 1 / -1 / -1;
	overflow: hidden;
}

.trending-module__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: transform 0.25s ease, margin 0.25s ease;
}

.trending-link:hover .trending-module__image {
	transform: scale(1.2);
}

.trending-module__description {
	background-image: linear-gradient(0deg, #000, transparent);
	color: #fff;
	grid-area: 2 / 1 / 3 / 2;
	padding-bottom: 1.5em;
}

.trending-module__key-heading {
	font-size: 40px;
	font-weight: 500;
	margin: 70px 40px 0;
	line-height: 1.2;
}

.trending-module__key-description {
	font-family: var(--public-sans);
	font-size: 16px;
	margin: 10px 40px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

.trending-list {
	display: flex;
	flex-direction: column;
	margin: 30px 0 30px 0;
	padding: 0 10px;
}

.trending-article__link {
	text-decoration: none;
	width: 100%;
	color: #292929;
	overflow: hidden;
	display: flex;
}

.trending-list a:hover {
	transition: background-color 0.2s ease;
	background-color: var(--byu-grey-light);
}

.trending-list a:hover .trending-list__article-title {
	transition: color 0.2s ease;
	color: var(--byu-royal);
}

.trending-title {
	font-size: 40px;
	font-weight: 500;
	color: var(--mag-grey);
	padding-left: 20px;
}

.trending-article {
	border-bottom: solid var(--byu-grey-medium-light) 1px;
	display: flex;
}

.trending-list__article-counter,
.trending-list__article-title {
	display: inline-block;
}

.trending-list__article-counter {
	line-height: 67px;
	color: var(--byu-royal);
	font-size: 25px;
	font-weight: 500;
	margin: 0 30px 0 30px;
}

.trending-list__article-title {
	float: left;
	line-height: 67px;
	font-size: 20px;
	font-weight: 500;
	max-width: calc(100% - 30px);
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	color: #000;
}

@media screen and (min-width: 930px) {

	.trending-module {
		display: grid;
		grid-template-columns: auto 400px;
		grid-column-gap: 20px;
		box-sizing: border-box;
		max-width: 1200px;
		margin: 0 auto;
	}

	.trending-module__key-picture {
		max-height: 475px;
	}

	.trending-module__key-heading {
		grid-area: 1 / 1 / 2 / 3;
		margin: 12px 0 0 20px;
	}

	.trending-module__key-description {
		grid-area: 2 / 1 / 3 / 3;
		margin: 0 0 5px 20px;
	}

	.trending-list {
		margin: 0;
	}

	.trending-title {
		font-size: 50px;
		line-height: 1;
		margin-bottom: 17px;
	}

	.trending-list__article-counter {
		line-height: 25px;
	}

	.trending-list__article-title {
		line-height: 25px;
		max-width: 330px;
	}

	.trending-article__link {
		padding: 28px 0;
	}
}
