.wp-block-gtt-tiles__tile {
	height: 100%;
	position: relative;
	display: flex;
	flex-direction: column;
	background-color: var(--color-surface-3);
	overflow: hidden;
}

.wp-block-gtt-tiles__image {
	position: absolute;
	inset: 0;
	height: 100% !important;
	width: 100%;
	object-fit: cover;
	transition: transform 200ms ease;
}
a:hover .wp-block-gtt-tiles__image,
a:focus .wp-block-gtt-tiles__image {
	transform: scale(110%);
}

.wp-block-gtt-tiles__caption {
	margin-top: auto;
	color: #fff;
	padding: 3rem 1.5rem 1.5rem;
	position: relative;
	font-size: 1.125rem;

	background: linear-gradient(
		to top,
		black 0%,
		rgba(0, 0, 0, 0.738) 19%,
		rgba(0, 0, 0, 0.541) 34%,
		rgba(0, 0, 0, 0.382) 47%,
		rgba(0, 0, 0, 0.278) 56.5%,
		rgba(0, 0, 0, 0.194) 65%,
		rgba(0, 0, 0, 0.126) 73%,
		rgba(0, 0, 0, 0.075) 80.2%,
		rgba(0, 0, 0, 0.042) 86.1%,
		rgba(0, 0, 0, 0.021) 91%,
		rgba(0, 0, 0, 0.008) 95.2%,
		rgba(0, 0, 0, 0.002) 98.2%,
		transparent 100%
	);
}
.wp-block-gtt-tiles__caption::before {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: #fff;
	margin-bottom: 1.5rem;
}
