.ms-teaser,
.ms-teaser * {
	box-sizing: border-box;
}

.ms-teaser {
	--ms-ink: #172033;
	--ms-muted: #5f6f86;
	--ms-line: #dce5ef;
	--ms-blue: #1c5ed6;
	--ms-blue-dark: #13459d;
	--ms-cyan: #10a6b7;
	--ms-white: #ffffff;
	padding: 54px 0;
	background: linear-gradient(135deg, rgba(28, 94, 214, 0.08), rgba(16, 166, 183, 0.08)), #f7fbff;
	color: var(--ms-ink);
}

.ms-teaser .ms-container {
	display: grid;
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
	grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
	gap: 36px;
	align-items: center;
}

.ms-teaser .ms-eyebrow {
	margin: 0 0 10px;
	color: var(--ms-blue);
	font-size: 0.78rem;
	font-weight: 800;
	letter-spacing: 0;
	text-transform: uppercase;
}

.ms-teaser h2 {
	margin: 0;
	color: var(--ms-ink);
	font-size: clamp(1.9rem, 3vw, 3rem);
	font-weight: 900;
	line-height: 1.08;
}

.ms-teaser__lead {
	margin: 16px 0 0;
	color: var(--ms-muted);
	font-size: 1.08rem;
	line-height: 1.7;
}

.ms-teaser__bullets {
	display: grid;
	gap: 9px;
	margin: 20px 0 0;
	padding: 0;
	list-style: none;
}

.ms-teaser__bullets li {
	position: relative;
	padding-left: 26px;
	color: var(--ms-ink);
	font-weight: 700;
	line-height: 1.45;
}

.ms-teaser__bullets li::before {
	position: absolute;
	top: 0.12em;
	left: 0;
	width: 18px;
	height: 18px;
	border-radius: 999px;
	background: #e7f7f9;
	color: #087582;
	content: "✓";
	font-size: 0.78rem;
	font-weight: 900;
	line-height: 18px;
	text-align: center;
}

.ms-teaser__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 24px;
}

.ms-teaser .ms-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 20px;
	border: 1px solid transparent;
	border-radius: 8px;
	font-weight: 800;
	line-height: 1.15;
	text-align: center;
	text-decoration: none;
}

.ms-teaser .ms-btn:focus-visible {
	outline: 3px solid rgba(16, 166, 183, 0.35);
	outline-offset: 3px;
}

.ms-teaser .ms-btn--primary {
	background: var(--ms-blue);
	color: var(--ms-white);
}

.ms-teaser .ms-btn--primary:hover {
	background: var(--ms-blue-dark);
	color: var(--ms-white);
	text-decoration: none;
}

.ms-teaser .ms-btn--secondary {
	background: var(--ms-white);
	border-color: var(--ms-line);
	color: var(--ms-ink);
}

.ms-teaser__media {
	min-width: 0;
}

.ms-teaser__image,
.ms-teaser .ms-media-placeholder {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 18px;
	box-shadow: 0 20px 58px rgba(23, 32, 51, 0.13);
}

.home-my-syndic-panel .ms-teaser {
	padding: 50px 0;
	background: transparent;
}

.home-my-syndic-panel .ms-teaser__image,
.home-my-syndic-panel .ms-teaser .ms-media-placeholder {
	border-radius: 10px;
}

@media (max-width: 1024px) {
	.ms-teaser .ms-container {
		width: min(100% - 32px, 920px);
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.ms-teaser {
		padding: 42px 0;
	}

	.ms-teaser .ms-container {
		width: min(100% - 24px, 720px);
	}

	.ms-teaser__actions {
		flex-direction: column;
	}

	.ms-teaser .ms-btn {
		width: 100%;
	}
}
