/* Cryosthetics Toolkit — Why Choose (Video + Cards) widget. */

.ct-wc {
	--ct-accent: #0EA9D0;
}

.ct-wc__head {
	margin-bottom: 34px;
}

.ct-wc__kicker {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--ct-accent);
	margin-bottom: 10px;
}

.ct-wc__kicker::before {
	content: "";
	display: inline-block;
	width: 28px;
	height: 2px;
	background: var(--ct-accent);
}

.ct-wc__heading {
	margin: 0;
	font-weight: 700;
	line-height: 1.15;
}

.ct-wc {
	padding-bottom: 70px;
}

.ct-wc__row {
	display: flex;
	align-items: stretch;
	gap: 34px;
}

.ct-wc--video-right .ct-wc__row {
	flex-direction: row-reverse;
}

/* Media column — the video fills the full height of the cards column. */
.ct-wc__media {
	flex: 0 0 46%;
	min-width: 0;
	position: relative;
}

.ct-wc__video-wrap {
	position: absolute;
	inset: 0;
}

.ct-wc__video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	box-shadow: 0 18px 40px rgba(14, 42, 74, 0.16);
}

/* Cards column */
.ct-wc__cards {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.ct-wc__card {
	display: flex;
	align-items: flex-start;
	gap: 18px;
	background: #fff;
	border: 1px solid #e4ecf3;
	padding: 22px 24px;
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ct-wc--hover .ct-wc__card:hover {
	transform: translateY(-4px);
	box-shadow: 0 14px 30px rgba(14, 42, 74, 0.10);
	border-color: var(--ct-accent);
}

.ct-wc__icon {
	flex: 0 0 auto;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	background: rgba(14, 169, 208, 0.12);
	background: color-mix(in srgb, var(--ct-accent) 12%, #fff);
	color: var(--ct-accent);
	font-size: 24px;
	line-height: 1;
}

.ct-wc__text {
	min-width: 0;
}

.ct-wc__title {
	margin: 2px 0 6px;
	font-size: 19px;
	font-weight: 600;
	line-height: 1.3;
}

.ct-wc__body {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
	.ct-wc {
		padding-bottom: 40px;
	}

	.ct-wc__row,
	.ct-wc--video-right .ct-wc__row {
		flex-direction: column;
	}

	.ct-wc__media {
		flex-basis: auto;
		width: 100%;
	}

	.ct-wc__video-wrap {
		position: static;
	}

	.ct-wc__video {
		height: auto;
		aspect-ratio: 16 / 10;
	}
}

@media (max-width: 600px) {
	.ct-wc__card {
		padding: 18px;
		gap: 14px;
	}

	.ct-wc__icon {
		width: 42px;
		height: 42px;
		font-size: 21px;
	}
}
