@charset "UTF-8";

@media all {
	.teaser-tiles.block {
		margin-top: 70px;
	}

	.row.tiles {
		row-gap: 40px;
	}

	.tile__wrapper {
		display: flex;
		flex-direction: column;
		min-height: 220px;
		height: calc(100% - 20px - 15px - 10px - 1px - 1px);
		border: 1px solid var(--font-color);
		border-radius: 20px;
		padding: 20px 20px 25px;
		text-align: center;
	}

	.tile__wrapper .tile__image-wrapper {
		position: relative;
		top: -55px;
		display: flex;
		justify-content: center;
		align-items: center;
		align-self: center;
		width: 115px;
		height: 115px;
		margin-bottom: -55px;
		border-radius: 50%;
		background-color: var(--primary-color);
		box-shadow: 0 3px 10px var(--box-shadow-color);
	}

	.tile__wrapper .tile__image-wrapper img {
		width: 60px;
		height: 60px;
		object-fit: contain;
	}

	.tile__wrapper h2 {
		margin: 15px 0;
	}

	.tile__wrapper .tile__content {
		flex-grow: 1;
	}

	.tile__wrapper .tile__button {
		margin-top: 50px;
	}

	.tile__content p {
		margin-top: 0;
	}
}

@media (min-width: 992px) {
	.teaser-tiles.block {
		margin-top: 80px;
	}
}