.wxSlider .wxSlideImage {
	/*height: 300px;*/
	object-fit: cover;
	-webkit-user-drag: none;
	user-select: none;
	aspect-ratio: 16 / 9;
}

.carousel::before {
	content: "";
	background: linear-gradient(0deg, transparent 0, var(--bg)57);
	display: block;
	width: 100%;
	height: 40px;
	position: absolute;
	top: 0;
	z-index: 1;
}

.wxSlideTitle {
	font-size: 20px;
	font-weight: bold;
	margin-bottom: 12px;
}

.wxSlideTitle a {
	color: #fff;
	cursor: pointer;
}

.wxSlideTitle a:hover {
	text-decoration: underline;
}

.wxSlideText {
	font-size: 10pt;
	margin-bottom: 12px;
}

.carousel-caption {
	z-index: 999;
	text-align: left;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 30px;
	background: #00000080;
	/*backdrop-filter: blur(1px);*/
}

.carousel-indicators {
	z-index: 9999;
	margin-bottom: 5px;
}

.carousel-indicators [data-bs-target] {
	width: 6px;
	height: 6px;
	border-radius: 100%;
	margin-left: 5px;
	margin-right: 5px;
}

@media screen and (max-width: 992px) {
	.wxSlideTitle {
		font-size: 14px;
	}
	.carousel-caption {
		padding: 12px;
	}
}