.tiles-3-across {
	margin-bottom: 50px; 
}

.tiles-3-across .items {
	display: grid;
	grid-gap: 26px;
}

.tiles-3-across .item {
	position: relative;
}

.tiles-3-across .content-container {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgb(0 0 0 / 30%);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 20px;
	transition: background-color 0.3s ease-in-out;
}

.tiles-3-across h3 {
	font-family: 'Open Sans';
	font-size: 32px;
	font-weight: 600;
	font-style: normal;
	color: #fff;
	line-height: 1.2;
	text-transform: uppercase;
	text-align: center;
	margin: 0;
	max-width: 420px;
	transition: text-shadow 0.3s ease-in-out;
}

@media (min-width: 641px) {
	.tiles-3-across .items {
		display: grid;
		grid-gap: 13px;
		grid-template-columns: 1fr 1fr 1fr;
	}

	.tiles-3-across h3 {
		font-size: 22px;
	}
}

@media (min-width: 1025px) {
	.tiles-3-across .items {
		grid-gap: 26px;
	}

	.tiles-3-across .item:hover .content-container {
		background-color: rgb(255 255 255 / 10%);
	}

	.tiles-3-across h3 {
		font-size: 32px;
	}

	.tiles-3-across .item:hover h3 {
		text-shadow: 0 0 5px rgb(0 0 0 / 30%);
	}
}

@media (max-width: 500px) {
	.tiles-3-across h3 {
		font-size: 22px;
		max-width: 320px;
	}
}