.opp-teaser-list {
	display: grid;
	gap: 32px;
	margin: 48px 0;
}

.opp-teaser {
	display: grid;
	overflow: hidden;
	border-radius: 8px;
	background: #ffffff;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}

.opp-teaser--layout-1 {
	grid-template-columns: 52.2% 47.8%;
}

.opp-teaser--layout-1 .opp-teaser__content,
.opp-teaser--layout-1 .opp-teaser__media {
	width: 100%;
	box-sizing: border-box;
}

.opp-teaser--layout-1 .opp-teaser__content {
	background: #74709b;
	color: #ffffff;
}

.opp-teaser--layout-1 .opp-teaser__media {
	background: #ffffff;
}

.opp-teaser--layout-2 {
	grid-template-columns: 1fr 2fr;
}

.opp-teaser--layout-2 .opp-teaser__media {
	background: #74709b;
}

.opp-teaser__content,
.opp-teaser__media {
	padding: 56px;
}

.opp-teaser__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.opp-teaser__media {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.opp-teaser__title {
	margin: 0 0 24px;
	font-size: clamp(1.8rem, 3vw, 3rem);
	line-height: 1.1;
}

.opp-teaser--layout-1 h2.opp-teaser__title {
	color: #000000 !important;
}
.opp-teaser--layout-2 h2.opp-teaser__title {
	color: #000000 !important;
}

.opp-teaser__text {
	max-width: 680px;
	margin: 0 0 32px;
	font-size: 1.125rem;
	line-height: 1.55;
}

.opp-teaser a.opp-teaser__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;

	max-width: 100%;
	box-sizing: border-box;

	padding: 14px 24px;
	border-radius: 5px;

	background: #f1eadc;
	color: #000000 !important;

	font-weight: 700;
	text-decoration: none !important;
	text-transform: uppercase;
	letter-spacing: 0.02em;

	white-space: normal;
}

.opp-teaser--layout-1 a.opp-teaser__button:hover,
.opp-teaser--layout-1 a.opp-teaser__button:focus {
	background: #ffffff;
	color: #000000 !important;
	box-shadow: 0 0 0 2px #ffffff;
	text-decoration: none;
}

.opp-teaser--layout-2 a.opp-teaser__button:hover,
.opp-teaser--layout-2 a.opp-teaser__button:focus {
	background: #ffffff;
	color: #000000 !important;
	outline: 2px solid #74709b;
	outline-offset: 0;
}

.opp-teaser a.opp-teaser__button span {
	display: inline-block;
	color: #000000;
	font-size: 1.4rem;
	line-height: 1;
}

.opp-teaser__image {
	display: block;
	width: auto;
	max-width: 260px;
	max-height: 360px;
	object-fit: contain;
	box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.opp-teaser__image-frame {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 0;
}

.opp-teaser--layout-1 .opp-teaser__media::after,
.opp-teaser--layout-2 .opp-teaser__content::after {
	content: "";
	position: absolute;
	right: -80px;
	bottom: -80px;
	width: 220px;
	height: 220px;
	border-radius: 50%;
	background: #f1eadc;
}

.opp-teaser--layout-2 .opp-teaser__content {
	position: relative;
}

.opp-teaser--layout-2 .opp-teaser__content > * {
	position: relative;
	z-index: 1;
}

@media (max-width: 900px) {

	.opp-teaser--layout-1,
	.opp-teaser--layout-2 {
		grid-template-columns: 1fr;
	}

	.opp-teaser__content,
	.opp-teaser__media {
		padding: 32px;
	}

	.opp-teaser a.opp-teaser__button {
		width: 100%;
		max-width: 100%;
	}

	.opp-teaser--layout-1 .opp-teaser__media::after,
	.opp-teaser--layout-2 .opp-teaser__content::after {
		display: none;
	}
}