.cornerstone__link {
	display: block;
	text-decoration: none;
	width: 100%;
}

.cornerstone__picture {
	display: grid;
	width: 100%;
	height: 100%;
	grid-template-rows: 1.38fr 1fr;
	transition: box-shadow .2s ease, opacity .2s ease;
}

.cornerstone__large-picture {
	grid-area: 1 / 1 / -1 / -1;
	overflow: hidden;
}

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

.cornerstone__picture:hover .cornerstone__image {
	transform: scale(1.2);
}

.cornerstone__description-section {
	display: grid;
	background-image: linear-gradient(0deg, #000, transparent);
	height: 100%;
	width: 100%;
	color: #fff;
	grid-area: 2 / 1 / 3 / 2;
	grid-template-columns: 1fr;
	grid-template-rows: 2fr 1fr;
}

.cornerstone__heading {
	font-family: var(--ringside-ssm);
	font-size: 28px;
	font-weight: 600;
	grid-area: 1 / 1 / 2 / 2;
	margin: 70px 25px 0 25px;
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
}

.cornerstone__description {
	font-family: var(--public-sans);
	line-height: 1.4;
	font-weight: 300;
	font-size: 16px;
	grid-area: 2 / 1 / 3 / 2;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin: 0 25px 18px 25px;
}

@media screen and (min-width: 930px) {
	.cornerstone__link {
		max-width: 915px;
		height: 698px;
	}

	.cornerstone__picture {
		grid-template-rows: 4.72fr 1fr;
	}

	.cornerstone__description-section {
		grid-template-columns: 4fr 3fr;
	}

	.cornerstone__heading {
		grid-area: 1 / 1 / 2 / 3;
		align-self: end;
		padding-bottom: 10px;
	}

	.cornerstone__description {
		margin: 0 0 18px 25px;
	}
}
