.pl-smart-cta {
	box-sizing: border-box;
	display: flex;
	align-items: stretch;
	gap: 20px;
	width: 100%;
	margin: 30px 0;
	padding: var(--plcta-padding, 22px);
	color: var(--plcta-text, #18202a);
	background: var(--plcta-bg, #f5f7fb);
	border: 1px solid var(--plcta-border, #dce3ec);
	border-radius: var(--plcta-radius, 16px);
	box-shadow: 0 14px 36px rgba(20, 35, 55, .08);
	overflow: hidden;
	font-family: inherit;
}
.pl-smart-cta *, .pl-smart-cta *::before, .pl-smart-cta *::after { box-sizing: border-box; }
.pl-smart-cta__media {
	flex: 0 0 var(--plcta-image-width, 150px);
	width: var(--plcta-image-width, 150px);
	min-height: 128px;
	display: block;
	border-radius: calc(var(--plcta-radius, 16px) - 5px);
	overflow: hidden;
}
.pl-smart-cta__image {
	display: block;
	width: 100%;
	height: 100%;
	min-height: 128px;
	object-fit: cover;
	transition: transform .3s ease;
}
.pl-smart-cta__media:hover .pl-smart-cta__image { transform: scale(1.035); }
.pl-smart-cta__content {
	min-width: 0;
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
}
.pl-smart-cta__eyebrow {
	margin: 0 0 7px !important;
	padding: 0 !important;
	color: var(--plcta-accent, #166534);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.25;
	letter-spacing: .055em;
	text-transform: uppercase;
}
.pl-smart-cta__title {
	margin: 0 0 15px !important;
	padding: 0 !important;
	color: var(--plcta-text, #18202a);
	font-size: clamp(18px, 2.2vw, 24px);
	font-weight: 750;
	line-height: 1.3;
}
.pl-smart-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	max-width: 100%;
	padding: 11px 17px;
	color: var(--plcta-button-text, #fff) !important;
	background: var(--plcta-accent, #166534);
	border: 1px solid var(--plcta-accent, #166534);
	border-radius: 10px;
	font-size: 15px;
	font-weight: 750;
	line-height: 1.2;
	text-decoration: none !important;
	box-shadow: none;
	transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}
.pl-smart-cta__button:hover,
.pl-smart-cta__button:focus {
	color: var(--plcta-button-text, #fff) !important;
	filter: brightness(.94);
	transform: translateY(-1px);
	box-shadow: 0 8px 18px rgba(0, 0, 0, .12);
}
.pl-smart-cta__button:focus-visible { outline: 3px solid rgba(22, 101, 52, .28); outline-offset: 3px; }
@media (max-width: 620px) {
	.pl-smart-cta { flex-direction: column; gap: 15px; margin: 24px 0; }
	.pl-smart-cta__media { width: 100%; flex-basis: auto; min-height: 175px; aspect-ratio: 16 / 9; }
	.pl-smart-cta__image { min-height: 175px; }
	.pl-smart-cta__button { width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
	.pl-smart-cta__image, .pl-smart-cta__button { transition: none; }
}
