.cell {
	display: block;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	margin-left: 3.5rem;
	overflow: hidden;
	position: relative;
}
.cell:first-child {
	margin-left: 0;
}
.cell a {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	text-decoration: none;
	color: white;
	transition: box-shadow ease 0.1s;
}
.cell h2 {
	margin: 1rem 0;
}

.cell--vertical {
	width: 28rem;
	height: 40rem;
	transition: transform ease 0.35s;
}
.cell--vertical:hover a {
	transition: box-shadow ease 0.15s;
	box-shadow: inset 0 0 15rem rgba(0,0,0,0.3);
}
.cell--vertical .cell-item-texts {
	padding: 2.75rem 2rem;
}

.cell--horizontal {
	width: 40rem;
	height: 28rem;
	transition: transform ease 0.35s;
}
.cell--horizontal:hover a {
	transition: box-shadow ease 0.15s;
	box-shadow: inset 0 0 14rem rgba(0,0,0,0.3);
}
.cell--horizontal .cell-item-texts {
	padding: 2.25rem 5rem;
}

.cell--cast-shadow {
	box-shadow: 0 2.75rem 4.25rem -2rem #363636;
}

.heading--cell {
	font-size: 3.125rem;
	line-height: 1.26;
	letter-spacing: 0.22rem;
	margin-top: 2.625rem;
	margin-bottom: 3rem;
	text-shadow: 0 0 1rem black;
}

.text--title-cell {
	font-size: 1.625rem;
	text-shadow: 0 0 1rem black;
}

.text--footer-cell {
	position: relative;
	font-size: 1.25rem;
	text-shadow: 0 0 1rem black;
}

.cell-right-arrow {
	width: 2rem;
	margin-left: 1rem;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

@media only screen and (max-width: 720px) {
	.cell--vertical {
		width: 100%;
		height: auto;
	}
	.cell--horizontal {
		width: 100%;
		height: auto;
	}
	.heading--cell {
		font-size: 2rem;
	}
}

@media only screen and (max-width: 720px) {
	.cell {
		margin-left: 0.75rem;
	}

	.cell--cast-shadow {
		box-shadow: none;
	}

	.cell--vertical,
	.cell--horizontal {
		width: 90%;
		margin-left: 0;
		max-width: 20rem;
		height: 16rem;
	}
	.cell--vertical .cell-item-texts,
	.cell--horizontal .cell-item-texts {
		padding: 1.5rem;
	}
	.cell--vertical .heading--cell,
	.cell--horizontal .heading--cell {
		font-size: 1.75rem;
	}
	.cell--vertical .text--footer-cell,
	.cell--horizontal .text--footer-cell {
		font-size: 1rem;
	}

	.text--title-cell {
		font-size: 0.85rem;
	}

	.heading--cell {
		font-size: 1.25rem;
		line-height: 1.36;
		margin: 0.5rem 0;
	}

	.text--footer-cell {
		font-size: 0.75rem;
	}

	.cell-right-arrow {
		display: none;
	}
}