.text-block-wrapper {
	padding: 0 80px;
}

.luckybi-text-block {
	position: relative;
	border: 1px solid transparent;
	border-radius: 12px;
	padding: 0;
	background: transparent;
	color: inherit;
	overflow: hidden;
}

.text-block-surface {
	position: relative;
	z-index: 0;
	border-radius: inherit;
	padding: 64px;
	background: #fdfdfb;
}

.text-block-surface .text-block-overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}

.luckybi-text-block .text-block-inner {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.luckybi-text-block.has-border {
	border-color: #e1e4ed;
}

.luckybi-text-block.shadow-soft {
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.luckybi-text-block.shadow-medium {
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

.luckybi-text-block.shadow-strong {
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.16);
}

.luckybi-text-block.text-align-center .text-block-inner {
	align-items: center;
	text-align: center;
}

.luckybi-text-block.text-align-right .text-block-inner {
	align-items: flex-end;
	text-align: right;
}

.text-block-subtitle {
	display: inline-flex;
	align-items: center;
	gap: 16px;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px;
	color: #333;
}

.text-block-subtitle-icon img {
	width: 40px;
	height: 40px;
	object-fit: contain;
	display: block;
}

.text-block-title {
	margin: 0;
	color: #333;
	font-size: 54px;
	font-weight: 700;
	line-height: 62px;
	margin-bottom: 8px;
}

.text-block-description {
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 24px;
	color: #fff;
	margin-bottom: 20px;
}

.text-block-description p {
	margin: 0 0 12px;
}

.text-block-description p:last-child {
	margin-bottom: 0;
}

.text-block-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.text-block-button {
	display: flex;
	padding: 10px 16px;
	justify-content: center;
	align-items: center;
	gap: 8px;
	border-radius: 6px;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 24px;
	color: #fff;
	border: 1px solid rgba(225, 228, 237, 0.50);
	background: rgba(255, 255, 255, 0.10);
	box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}

@media (max-width: 1024px) {
	.text-block-wrapper {
		padding: 48px 32px;
	}

	.text-block-surface {
		padding: 24px;
	}
}

@media (max-width: 640px) {
	.text-block-wrapper {
		padding: 14px 20px;
	}

	.text-block-surface {
		padding: 40px 8px;
	}

	.luckybi-text-block .text-block-inner {
		gap: 10px;
	}

	.text-block-title {
		font-size: 48px;
		line-height: 54px;
		padding: 0 35px;
	}

	.text-block-description {
		font-size: 16px;
		line-height: 24px;
		padding: 0 25px;
	}
}