@charset "UTF-8";
/* CSS Document */

.tile-link {
	text-decoration: none;
}

.tile {
	border-radius: var(--sml-radius);
	border: 1px solid var(--act-primary);
	padding: 30px;
	display: grid;
	gap: 20px;
	background-color: var(--act-light);
	color: var(--text);
}

.tile h3 {
	color: var(--act-dark);
}

.tile img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

.tile .text-box {
	grid-template-rows: auto 1fr auto;
}

.tile .button {
	justify-self: center;
}

@media screen and (max-width: 1180px) and (orientation: portrait),
screen and (max-width: 1024px) {
    
}

@media screen and (max-width: 768px) {
	
}