.featured-videos {
	padding: 0 10px 52px;
	margin-top: 25px;
}

.featured-video {
	display: flex;
	flex-direction: column;
	font-family: var(--ringside-ssm);
}

.featured-video:hover > .featured-video__title {
	color: #80a5d0;
}

.featured-videos__video-list .featured-video:hover {
	cursor: pointer;
}

.featured-video__information {
	display: flex;
	flex-direction: column;
}

.featured-video__label-link {
	width: fit-content;
}

.featured-video__label {
	font-size: 11px;
	color: #e5e5e5;
	margin-top: 20px;
}

.featured-video--first .featured-video__label {
	color: #68a7fd;
}

.featured-video--first .featured-video__title {
	font-size: 28px;
	font-weight: 500;
	line-height: 41px;
}

.featured-videos__video-list .featured-video__title {
	font-size: 14px;
	font-family: var(--public-sans);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	line-height: 17px;
	margin-top: 10px;
	transition: color .2s ease;
}

.featured-video__description {
	font-size: 19px;
	font-family: var(--public-sans);
	margin: 25px 0 20px;
	padding-right: 10px;
	line-height: 25px;
}

.featured-videos__video-list {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-column-gap: 10px;
}

.featured-videos__video-list .featured-video__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.featured-video--playing,
.featured-video__now-playing-wrapper {
	display: none;
}

.featured-videos__video-list .featured-video__label,
.featured-videos__video-list .featured-video__description,
.featured-videos__video-list .featured-video__label-link {
	display: none;
}

.featured-videos__video-list .featured-video__duration {
	display: none;
}
@media (max-width: 640px) {

	.featured-video__title {
		height: 100%;
	}
}

@media (min-width: 640px) {

	.featured-video .video-player__wrapper {
		align-self: center;
	}

	.featured-video--playing {
		display: flex;
	}

	.featured-videos__video-list {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}

	.featured-videos__video-list .featured-video {
		position: relative;
		display: grid;
		grid-template-rows: 130px auto;
	}

	.featured-video__image {
		grid-area: 1 / 1 / 2 / 2;
	}

	.featured-video--playing .featured-video__now-playing-wrapper {
		grid-area: 1 / 1 / 2 / 2;
		display: flex;
		align-items: center;
		justify-content: center;
		background-color: rgba(255, 255, 255, 0.56);
	}

	.now-playing-wrapper__now-playing {
		font-family: var(--ringside-ssm);
		color: var(--byu-navy);
		font-size: 15px;
		font-weight: 500;
	}

	.featured-videos__video-list .featured-video__duration {
		display: inline-block;
		grid-area: 1 / 1 / 2 / 2;
		align-self: end;
		justify-self: end;
		background-color: rgba(0, 0, 0, 0.6);
		color: #fff;
		border-radius: 5%;
		margin: 0 5px 4px 0;
		padding: 0 5px;
		font-family: var(--ringside-ssm);
		font-weight: 500;
	}
}

@media (min-width: 840px) {

	.featured-video--first {
		display: grid;
		grid-template-columns: auto 560px;
	}

	.featured-video--first .video-player__wrapper {
		grid-column: 2 / 2;
	}

	.featured-video--first .featured-video__information {
		grid-column: 1 / 1;
		grid-row: 1 / 1;
		padding-right: 10px;
	}

	.featured-videos__video-list {
		margin-top: 20px;
	}

	.featured-video--first .featured-video__label {
		margin-top: 0;
		font-size: 16px;
		transition: color .2s ease;
	}

	.featured-video__label:hover {
		color: var(--byu-royal-light);
	}

	.featured-video--first .featured-video__title {
		font-size: 32px;
	}
}

@media (min-width: 1024px) {

	.featured-video .video-player__wrapper {
		max-height: 377px;
		max-width: 670px;
	}

	.featured-video--first {
		grid-template-columns: auto 670px;
	}
}
