.cx__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 48px;
	padding: 0 32px 0 0;

	/* флюидно, но с верхними пределами из фигмы */
	width: 100%;
	max-width: 576px;
}

/* ===== Heading & supporting text ===== */
.cx__title {
	margin: 0;
	color: #ffffff;
	font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 600;
	/* 48/60 в фигме -> флюидный */
	font-size: clamp(28px, 5vw, 48px);
	line-height: clamp(36px, 6vw, 60px);
	letter-spacing: -0.02em;
}

.cx__support {
	margin: 0;
	color: #f9fafb;
	font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 400;
	/* 20/30 в фигме -> флюидный */
	font-size: clamp(16px, 2.2vw, 20px);
	line-height: clamp(24px, 3.2vw, 30px);
	max-width: 1024px; /* как в фигме */
}

/* ===== Badge group ===== */
.cx__badgegroup {
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 12px;
	padding: 4px 10px 4px 4px;

	background: #ffffff;
	border: 1px solid #d0d5dd;
	border-radius: 10px;
	/* shadow-xs */
	box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
	width: fit-content;
}

.cx__badge {
	box-sizing: border-box;
	display: inline-flex;
	align-items: center;
	padding: 2px 10px;

	background: #fef6ee;
	border: 1px solid #f9dbaf;
	border-radius: 9999px;
	height: 24px; /* визуальная консистентность как в фигме */
}

.cx__badge-text {
	display: inline-block;
	color: #b93815;
	font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 500;
	/* Text sm / 14/20 -> флюидный */
	font-size: clamp(12px, 1.5vw, 14px);
	line-height: 20px;
}

.cx__msg {
	color: #344054;
	font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 500;
	/* Text sm / 14/20 -> флюидный */
	font-size: clamp(12px, 1.5vw, 14px);
	line-height: 20px;
	white-space: nowrap;
}

/* ===== Actions / button ===== */
.cx__actions {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 16px;

	/* размеры из фигмы, но не жестко фиксируем ширину */
	max-width: 480px;
	width: 100%;
}

.cx__btn {
	box-sizing: border-box;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 6px;

	padding: 12px 18px;
	min-height: 48px;
	/* в фигме ширина 136px — делаем авто, чтобы текст мог меняться */
	min-width: 136px;

	background: #ffffff;
	border: 1px solid #d0d5dd;
	border-radius: 8px;

	/* skeuomorphic shadow */
	box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), inset 0px 0px 0px 1px rgba(16, 24, 40, 0.18), inset 0px -2px 0px rgba(16, 24, 40, 0.05);

	color: #344054;
	text-decoration: none;

	font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
	font-weight: 600;
	/* Text md / 16/24 -> флюидный */
	font-size: clamp(14px, 1.8vw, 16px);
	line-height: 24px;

	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.cx__btn:hover {
	transform: translateY(-1px);
	box-shadow: 0px 2px 6px rgba(16, 24, 40, 0.08), inset 0px 0px 0px 1px rgba(16, 24, 40, 0.22), inset 0px -2px 0px rgba(16, 24, 40, 0.06);
}

.cx__btn:active {
	transform: translateY(0);
	box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05), inset 0px 0px 0px 1px rgba(16, 24, 40, 0.18), inset 0px -2px 0px rgba(16, 24, 40, 0.05);
}

.cx__btn:focus-visible {
	outline: 2px solid #98a2b3; /* мягкий focus */
	outline-offset: 2px;
	border-color: #98a2b3;
}

/* ===== Адаптивность ===== */
@media (max-width: 640px) {
	.cx__container {
		padding: 0 20px;
		min-height: auto;
	}

	.cx__content {
		padding-right: 0;
		gap: 32px;
	}

	.cx__badgegroup {
		max-width: 100%;
		flex-wrap: wrap;
	}

	.cx__msg {
		white-space: normal;
	}

	.cx__actions {
		max-width: 100%;
	}
}
