.flex-content.image-cards {
	padding: 120px 0;
	z-index: 2;
}

.flex-content.image-cards .top-cut {
	margin-top: -80px;
	z-index: 2;
}

.flex-content.image-cards .card-row {
	align-items: stretch;
	flex-wrap: wrap;
	gap: 15px;
}

.flex-content.image-cards .card {
	border-width: 0px;
	border-radius: 10px;
	display: block;
	height: 100%;
	overflow: hidden;
	padding: 40px 30px;
}

.flex-content.image-cards .card .content {
	align-items: flex-start;
	display: flex;
	flex-direction: column;
	flex: 1 0 0;
	gap: 24px;
}

.flex-content.image-cards .card :is( h3, p ) {
	margin-bottom: 0px;
}

.flex-content.image-cards .card h3 {
	font-size: 26px;
}

.flex-content.image-cards .card a.outline {
	margin-top: auto;
}

.card.color-blue {
  background:
    linear-gradient(174deg, #79BCFE 52.53%, rgba(225, 239, 253, 0) 95.58%),
    var(--card-img-url) center bottom / cover no-repeat,
    lightgray;
}

.card.color-light-blue {
  background:
    linear-gradient(174deg, #E1EFFD 43.59%, rgba(225, 239, 253, 0) 95.58%),
    var(--card-img-url) center bottom / cover no-repeat,
    lightgray;
}

.card.color-stone {
  background:
    linear-gradient(183deg, #F0EDE8 56.48%, rgba(240, 237, 232, 0) 100.82%),
    var(--card-img-url) center bottom / cover no-repeat,
    lightgray;
}

.card.color-yellow {
  background:
    linear-gradient(180deg, #FFEFC8 55.68%, rgba(255, 239, 200, 0) 100%),
    var(--card-img-url) center bottom / cover no-repeat,
    lightgray;
}

.flex-content.image-cards .card .img {
	bottom: 0;
	left: 0;
	position: absolute;
	overflow: hidden;
	max-width: unset;
	width: 100%;
}

@media (min-width: 1200px) {
	.flex-content.image-cards .card { 
		min-height: 516px;
	}

	.flex-content.image-cards .card .content {
		height: 250px;
	}
}

@media (max-width: 1200px) {
	.flex-content.image-cards .card { 
		flex: 0 1 calc(50% - 7.5px);
		min-height: 400px;
	}
}

@media (max-width: 768px) {
	.flex-content.image-cards .card { 
		flex: 0 1 100%;
	}
	.flex-content.image-cards .top-cut {
		height: 40px;
		margin-top: -40px;
	}
}