.homepage-feature__highlight {
	background-color: var(--byu-royal);
	color: #fff;
	height: 51px;
	width: 132px;
	font-family: var(--ringside-ssm);
	font-size: 25px;
	font-weight: 600;
	position: relative;
	left: 25px;
	top: 30px;
	z-index: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.homepage-feature__cards-wrapper {
	display: grid;
	row-gap: 10px;
	column-gap: 10px;
	grid-template-columns: 1fr 1fr;
    grid-template-rows: 430px 260px;
}

.featured-card {
	position: relative;
    height: 100%;
	overflow: hidden;
}

.featured-card:hover .featured-card__background-image {
	transform: scale(1.2);
}

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

.homepage-feature__cards-wrapper .featured-card__link:first-of-type {
	grid-area: 1 / 1 / 2 / -1;
}

.featured-card__text {
	background-image: linear-gradient(0deg, rgba(0, 0, 0, 1), transparent);
	position: absolute;
	font-family: var(--ringside-ssm);
	bottom: 0;
	height: 90px;
	width: 100%;
	color: #fff;
	padding: 45px 18px 15px;
	box-sizing: border-box;
}

.featured-card__main .featured-card__text {
	height: 122px;
}

.featured-card__text .text__title {
	font-size: 20px;
	font-weight: 500;
	margin: 0 0 10px 0;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.featured-card__main .text__title {
	font-size: 28px;
}

.featured-card__text .text__subtitle {
	font-family: var(--public-sans);
	font-size: 16px;
	margin: 0;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	display: none;
}

@media (min-width: 930px) {

	.homepage-feature {
		max-width: 1200px;
		margin: 0 auto 30px;
	}

	.homepage-feature__cards-wrapper {
		display: flex;
		column-gap: 0;
		row-gap: 0;
		justify-content: space-between;
	}

	.featured-card {
		width: calc((100vw / 4) - 15px);
		transition: width 0.75s, max-width 0.75s;
		max-width: 290px;
		height: 280px;
	}

	.featured-card__selected {
		max-width: 590px;
		width: calc((100vw / 2) - 15px);
		flex-grow: 2;
	}

	.featured-card__text {
		height: 160px;
		padding-top: 60px;
	}

	.featured-card__text .text__title {
		font-size: 28px;
		height: 31px;
		line-height: 1em;
	}

	.featured-card__text .text__subtitle {
		display: -webkit-box;
		-webkit-line-clamp: 2;
		opacity: 0;
		width: 100%;
	}

	.featured-card__selected .featured-card__text {
		padding: 60px 18px 12px;
	}

	.featured-card__selected .text__subtitle {
		opacity: 1;
		transition: opacity 0.75s;
		transition-delay: 0.5s;
		line-height: 2rem;
		padding-right: 100px;
		box-sizing: border-box;
	}
}
