.mct-csb-container {
	position: relative;
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}

.mct-csb-card {
	position: relative;
	width: 100%;
	min-height: var(--mct-csb-height, 460px);
	border-radius: var(--mct-csb-radius, 24px);
	overflow: hidden;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: var(--mct-csb-padding, 48px);
	box-sizing: border-box;
}

.mct-csb-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--mct-csb-overlay-bg, linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0) 100%));
	z-index: 1;
	pointer-events: none;
}

.mct-csb-content-wrap {
	position: relative;
	z-index: 2;
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 32px;
}

.mct-csb-header {
	max-width: 680px;
}

.mct-csb-title-line {
	margin: 0;
	font-size: 42px;
	font-weight: 800;
	line-height: 1.15;
	color: #ffffff;
	letter-spacing: -0.5px;
}

.mct-csb-title-line-1 {
	font-weight: 700;
}

.mct-csb-title-line-2 {
	font-weight: 900;
}

.mct-csb-bottom-row {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	width: 100%;
}

.mct-csb-stats-grid {
	display: flex;
	align-items: flex-start;
	gap: 36px;
	flex-wrap: wrap;
	flex-grow: 1;
}

.mct-csb-stat-item {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 140px;
}

.mct-csb-stat-label {
	font-size: 15px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}

.mct-csb-stat-divider {
	width: 100%;
	height: 1px;
	background-color: var(--mct-csb-line-color, rgba(255, 255, 255, 0.4));
}

.mct-csb-stat-number-wrap {
	font-size: 48px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1.05;
	display: flex;
	align-items: center;
}

.mct-csb-btn-wrap {
	flex-shrink: 0;
}

.mct-csb-circle-btn {
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background-color: #ffffff;
	color: #0f172a;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.mct-csb-circle-btn:hover {
	transform: scale(1.08);
	background-color: #ffffff;
	color: #dc2626;
}

.mct-csb-arrow-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	color: currentColor;
	transition: transform 0.25s ease;
}

.mct-csb-arrow-icon svg {
	width: 100%;
	height: 100%;
	display: block;
	stroke-width: 2;
	stroke: currentColor;
	fill: none;
}

.mct-csb-circle-btn:hover .mct-csb-arrow-icon {
	transform: translate(3px, -3px);
}

@media (max-width: 991px) {
	.mct-csb-card {
		padding: 32px;
		min-height: 380px;
	}
	.mct-csb-title-line {
		font-size: 32px;
	}
	.mct-csb-stat-number-wrap {
		font-size: 38px;
	}
	.mct-csb-circle-btn {
		width: 60px;
		height: 60px;
	}
	.mct-csb-arrow-icon {
		width: 20px;
		height: 20px;
	}
}

@media (max-width: 767px) {
	.mct-csb-card {
		padding: 24px;
	}
	.mct-csb-title-line {
		font-size: 26px;
	}
	.mct-csb-bottom-row {
		flex-direction: column;
		align-items: flex-start;
		gap: 24px;
	}
	.mct-csb-stats-grid {
		gap: 20px;
		width: 100%;
	}
	.mct-csb-stat-item {
		min-width: 100%;
	}
	.mct-csb-stat-number-wrap {
		font-size: 34px;
	}
	.mct-csb-btn-wrap {
		align-self: flex-end;
	}
}
