/**
 * PCHI UK Support CTA — [pchi_uk_support_cta]
 * All rules scoped to .pchi-uk-support-cta (no global element selectors).
 */

.pchi-uk-support-cta {
	box-sizing: border-box;
	max-width: 1440px;
	margin: clamp(28px, 4.5vw, 72px) auto;
	padding: clamp(22px, 3.5vw, 48px);
	border-radius: clamp(22px, 2vw, 30px);
	font-family: Montserrat, Arial, sans-serif;
}

.pchi-uk-support-cta--dark {
	background: #111111;
	color: #ffffff;
	box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.pchi-uk-support-cta--light {
	background: #ffffff;
	color: #111111;
	border: 1px solid #ececec;
	box-shadow: 0 18px 55px rgba(17, 17, 17, 0.08);
}

.pchi-uk-support-cta__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: clamp(22px, 3.5vw, 56px);
}

.pchi-uk-support-cta__content {
	flex: 1 1 auto;
	max-width: 760px;
	min-width: 0;
}

.pchi-uk-support-cta__eyebrow {
	margin: 0 0 10px;
	color: #f6a800;
	font-size: 0.82rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.pchi-uk-support-cta__title {
	margin: 0;
	font-size: clamp(1.55rem, 2.8vw, 2.45rem);
	line-height: 1.12;
	font-weight: 900;
	color: inherit;
}

.pchi-uk-support-cta__text {
	margin: 14px 0 0;
	font-size: clamp(0.98rem, 1.4vw, 1.1rem);
	line-height: 1.65;
	color: inherit;
	opacity: 0.84;
}

.pchi-uk-support-cta__actions {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
	gap: 12px;
	flex: 0 1 auto;
	min-width: min(100%, 360px);
}

.pchi-uk-support-cta__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 48px;
	padding: 13px 22px;
	border-radius: 999px;
	font-size: 0.95rem;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition:
		transform 180ms ease,
		box-shadow 180ms ease,
		background 180ms ease,
		color 180ms ease,
		border-color 180ms ease;
}

.pchi-uk-support-cta__button:hover,
.pchi-uk-support-cta__button:focus {
	transform: translateY(-1px);
	text-decoration: none;
}

.pchi-uk-support-cta__button--primary {
	background: #f6a800;
	color: #111111;
	box-shadow: 0 14px 34px rgba(246, 168, 0, 0.28);
}

.pchi-uk-support-cta__button--secondary {
	background: #ffffff;
	color: #111111;
}

.pchi-uk-support-cta--light .pchi-uk-support-cta__button--secondary {
	background: #111111;
	color: #ffffff;
}

.pchi-uk-support-cta__button--ghost {
	border: 1px solid rgba(255, 255, 255, 0.28);
	color: #ffffff;
	background: transparent;
}

.pchi-uk-support-cta--light .pchi-uk-support-cta__button--ghost {
	border-color: #d8d8d8;
	color: #111111;
}

@media (max-width: 820px) {
	.pchi-uk-support-cta {
		margin-left: 16px;
		margin-right: 16px;
		border-radius: 22px;
	}

	.pchi-uk-support-cta__inner {
		align-items: flex-start;
		flex-direction: column;
	}

	.pchi-uk-support-cta__actions {
		width: 100%;
		justify-content: flex-start;
	}

	.pchi-uk-support-cta__button {
		width: 100%;
	}
}
