.tdm-widget,
.tdm-widget * {
	box-sizing: border-box;
}

.tdm-widget {
	width: 100%;
	padding: 72px 80px;
	background: #fff;
	border-width: 1px 0;
	border-style: solid;
	border-color: #eaeaea;
}

.tdm-layout {
	--tdm-strip-width: 320px;
	display: flex;
	align-items: stretch;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	background: #fff;
}

.tdm-main {
	position: relative;
	isolation: isolate;
	flex: 1 1 auto;
	min-width: 0;
	min-height: 560px;
	overflow: hidden;
	background-color: #101d27;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.tdm-main::before {
	position: absolute;
	z-index: 0;
	inset: 0;
	content: "";
	pointer-events: none;
	background-color: #07131d;
	opacity: 0.22;
}

.tdm-overlay {
	--tdm-gradient-angle: 90deg;
	--tdm-gradient-start: #e03f54;
	--tdm-gradient-end: rgba(224, 63, 84, 0.8);
	position: absolute;
	z-index: 1;
	top: 72px;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	min-height: 246px;
	padding: 24px;
	background: linear-gradient(var(--tdm-gradient-angle), var(--tdm-gradient-start) 0%, var(--tdm-gradient-end) 100%);
	box-shadow: 0 10px 24px -6px rgba(0, 0, 0, 0.102);
	border-radius: 4px;
}

.tdm-headline {
	width: 100%;
	margin: 0;
	color: #fff;
	font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: clamp(48px, 5vw, 72px);
	font-style: normal;
	font-weight: 800;
	line-height: 0.92;
	letter-spacing: -0.02em;
	overflow-wrap: anywhere;
}

.tdm-strip {
	position: relative;
	z-index: 2;
	display: flex;
	flex: 0 0 var(--tdm-strip-width);
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
	width: var(--tdm-strip-width);
	min-width: 0;
	padding: 24px;
	gap: 16px;
	background: #e03f54;
}

.tdm-widget--strip-left .tdm-strip {
	order: -1;
}

.tdm-label {
	display: inline-flex;
	align-items: center;
	width: max-content;
	max-width: 100%;
	padding: 6px 12px;
	border-radius: 3px;
	background: #fff;
	color: #e03f54;
	font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 11px;
	font-style: normal;
	font-weight: 700;
	line-height: 1.27;
	text-transform: uppercase;
}

.tdm-strip-content {
	display: flex;
	flex: 0 1 auto;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
	min-width: 0;
	gap: 12px;
}

.tdm-teaser {
	width: 100%;
	margin: 0;
	color: #fff;
	font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	overflow-wrap: anywhere;
}

.tdm-cta {
	display: inline-flex;
	align-items: center;
	width: max-content;
	max-width: 100%;
	padding: 0 0 4px;
	border: 0;
	border-bottom: 2px solid #fff;
	background: transparent;
	color: #fff;
	font-family: "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	font-size: 13px;
	font-style: normal;
	font-weight: 800;
	line-height: 1.23;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.tdm-cta:hover,
.tdm-cta:focus-visible {
	color: #fff;
	border-bottom-color: #fff;
	opacity: 0.78;
	text-decoration: none;
}

.tdm-cta:focus-visible {
	outline: 2px solid currentColor;
	outline-offset: 4px;
}

@media (max-width: 1024px) {
	.tdm-widget {
		padding: 48px 32px;
	}

	.tdm-layout {
		--tdm-strip-width: 280px;
	}

	.tdm-main {
		min-height: 500px;
	}

	.tdm-overlay {
		top: 48px;
		min-height: 220px;
	}

	.tdm-headline {
		font-size: clamp(44px, 6vw, 60px);
	}
}

@media (max-width: 767px) {
	.tdm-widget {
		padding: 32px 20px;
	}

	.tdm-layout {
		--tdm-strip-width: 100%;
		flex-direction: column;
	}

	.tdm-main {
		width: 100%;
		min-height: 420px;
	}

	.tdm-overlay {
		top: 32px;
		min-height: 0;
		padding: 20px;
	}

	.tdm-headline {
		font-size: clamp(38px, 11vw, 52px);
		line-height: 0.96;
	}

	.tdm-strip,
	.tdm-widget--strip-left .tdm-strip {
		order: 0;
		flex: 0 0 auto;
		width: 100%;
		min-height: 0;
	}
}
