.acpw-dynamic-cta,
.acpw-dynamic-cta * {
	box-sizing: border-box;
}

.acpw-dynamic-cta {
	--acpw-cta-ticker-bg: #2E4652;
	--acpw-cta-ticker-text: #FFFFFF;
	--acpw-cta-ticker-accent: #F2C83C;
	--acpw-cta-ticker-separator: #8EBAC8;
	--acpw-cta-panel-bg: #EAF1F4;
	--acpw-cta-eyebrow: #52933D;
	--acpw-cta-title: #2E4652;
	--acpw-cta-title-accent: #52933D;
	--acpw-cta-copy: #53636B;
	--acpw-cta-button-bg: #52933D;
	--acpw-cta-button-text: #FFFFFF;
	--acpw-cta-button-hover-bg: #3E762F;
	--acpw-cta-button-hover-text: #FFFFFF;
	--acpw-cta-duration: 28s;
	width: 100%;
	overflow: hidden;
	font-family: inherit;
}

.acpw-dynamic-cta__ticker {
	position: relative;
	min-height: 64px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background: var(--acpw-cta-ticker-bg);
	color: var(--acpw-cta-ticker-text);
	isolation: isolate;
}

.acpw-dynamic-cta__ticker::before,
.acpw-dynamic-cta__ticker::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: clamp(24px, 5vw, 84px);
	pointer-events: none;
}

.acpw-dynamic-cta__ticker::before {
	left: 0;
	background: linear-gradient(90deg, var(--acpw-cta-ticker-bg), transparent);
}

.acpw-dynamic-cta__ticker::after {
	right: 0;
	background: linear-gradient(270deg, var(--acpw-cta-ticker-bg), transparent);
}

.acpw-dynamic-cta__track {
	width: max-content;
	display: flex;
	align-items: center;
	animation: acpwCtaMarquee var(--acpw-cta-duration) linear infinite;
	will-change: transform;
}

.acpw-dynamic-cta--pause .acpw-dynamic-cta__ticker:hover .acpw-dynamic-cta__track,
.acpw-dynamic-cta--pause .acpw-dynamic-cta__ticker:focus-within .acpw-dynamic-cta__track {
	animation-play-state: paused;
}

.acpw-dynamic-cta__group {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
}

.acpw-dynamic-cta__item {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: baseline;
	gap: .34em;
	padding-inline: clamp(18px, 2.4vw, 36px);
	font-size: 17px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: .01em;
	white-space: nowrap;
}

.acpw-dynamic-cta__item strong {
	color: var(--acpw-cta-ticker-accent);
	font-weight: 800;
	letter-spacing: .035em;
}

.acpw-dynamic-cta__separator {
	margin-left: clamp(16px, 2vw, 30px);
	color: var(--acpw-cta-ticker-separator);
	font-size: 1.12em;
	line-height: 1;
}

.acpw-dynamic-cta__panel {
	position: relative;
	overflow: hidden;
	background:
		radial-gradient(circle at 88% 18%, rgba(255,255,255,.72) 0 8%, transparent 28%),
		linear-gradient(135deg, rgba(255,255,255,.26), transparent 46%),
		var(--acpw-cta-panel-bg);
}

.acpw-dynamic-cta__panel::after {
	content: "";
	position: absolute;
	right: -74px;
	bottom: -116px;
	width: 290px;
	height: 290px;
	border: 1px solid rgba(46,70,82,.10);
	border-radius: 50%;
	box-shadow:
		0 0 0 38px rgba(255,255,255,.12),
		0 0 0 76px rgba(255,255,255,.09);
	pointer-events: none;
}

.acpw-dynamic-cta__inner {
	position: relative;
	z-index: 1;
	width: calc(100% - 48px);
	max-width: 1320px;
	margin-inline: auto;
	padding: 62px 0;
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: clamp(34px, 6vw, 92px);
	align-items: center;
}

.acpw-dynamic-cta__copy {
	max-width: 900px;
	min-width: 0;
}

.acpw-dynamic-cta__eyebrow {
	margin: 0 0 13px;
	color: var(--acpw-cta-eyebrow);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: .09em;
	text-transform: uppercase;
}

.acpw-dynamic-cta__title {
	max-width: 900px;
	margin: 0;
	color: var(--acpw-cta-title);
	font-size: 42px;
	font-weight: 600;
	line-height: 1.08;
	letter-spacing: -.03em;
	text-wrap: balance;
}

.acpw-dynamic-cta__title p,
.acpw-dynamic-cta__title div {
	margin: 0;
}

.acpw-dynamic-cta__title strong {
	color: var(--acpw-cta-title-accent);
	font-weight: 800;
}

.acpw-dynamic-cta__description {
	max-width: 720px;
	margin: 19px 0 0;
	color: var(--acpw-cta-copy);
	font-size: 16px;
	line-height: 1.55;
}

.acpw-dynamic-cta__button {
	min-width: 168px;
	min-height: 52px;
	padding: 14px 22px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	border: 1px solid var(--acpw-cta-button-bg);
	border-radius: 9px;
	background: var(--acpw-cta-button-bg);
	color: var(--acpw-cta-button-text);
	box-shadow: 0 12px 28px rgba(46,70,82,.14);
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition:
		transform .28s cubic-bezier(.22,1,.36,1),
		background-color .28s ease,
		border-color .28s ease,
		color .28s ease,
		box-shadow .28s ease;
}

.acpw-dynamic-cta__button:hover,
.acpw-dynamic-cta__button:focus-visible {
	transform: translateY(-3px);
	border-color: var(--acpw-cta-button-hover-bg);
	background: var(--acpw-cta-button-hover-bg);
	color: var(--acpw-cta-button-hover-text);
	box-shadow: 0 17px 34px rgba(46,70,82,.20);
	text-decoration: none;
}

.acpw-dynamic-cta__button:focus-visible {
	outline: 3px solid rgba(242,200,60,.62);
	outline-offset: 4px;
}

.acpw-dynamic-cta__button-arrow {
	display: inline-block;
	font-size: 18px;
	line-height: 1;
	transition: transform .28s cubic-bezier(.22,1,.36,1);
}

.acpw-dynamic-cta__button:hover .acpw-dynamic-cta__button-arrow,
.acpw-dynamic-cta__button:focus-visible .acpw-dynamic-cta__button-arrow {
	transform: translateX(4px);
}

@keyframes acpwCtaMarquee {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(-50%, 0, 0);
	}
}

@media (max-width: 1024px) {
	.acpw-dynamic-cta__inner {
		grid-template-columns: minmax(0, 1fr) auto;
		gap: 34px;
	}

	.acpw-dynamic-cta__title {
		font-size: 35px;
	}
}

@media (max-width: 767px) {
	.acpw-dynamic-cta__inner {
		width: calc(100% - 36px);
		padding: 42px 0;
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.acpw-dynamic-cta__title {
		font-size: 30px;
		line-height: 1.12;
	}

	.acpw-dynamic-cta__description {
		font-size: 15px;
	}

	.acpw-dynamic-cta__button {
		width: 100%;
		min-height: 50px;
	}

	.acpw-dynamic-cta__panel::after {
		right: -150px;
		bottom: -150px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.acpw-dynamic-cta__track {
		animation: none;
		transform: none;
	}

	.acpw-dynamic-cta__group[aria-hidden="true"] {
		display: none;
	}

	.acpw-dynamic-cta__ticker {
		overflow-x: auto;
		scrollbar-width: thin;
	}

	.acpw-dynamic-cta__button,
	.acpw-dynamic-cta__button-arrow {
		transition: none;
	}
}
