.hotop-carousel {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.hotop-carousel__swiper {
	width: 100%;
	height: var(--hotop-carousel-height, 600px);
}

.hotop-carousel__slide {
	position: relative;
	width: 100%;
	height: var(--hotop-carousel-height, 600px);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}

.hotop-carousel__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.15);
	pointer-events: none;
}

.hotop-carousel__content {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px 40px;
	text-align: center;
}

.hotop-carousel__title {
	margin: 0 0 24px;
	color: #fff;
	font-size: clamp(24px, 4vw, 48px);
	font-weight: 700;
	text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hotop-carousel__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 240px;
	height: 64px;
	padding: 0 32px;
	background: #fff;
	color: #000;
	font-size: 24px;
	font-weight: 700;
	text-decoration: none;
	border: none;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.hotop-carousel__btn:hover,
.hotop-carousel__btn:focus {
	background: #f5f5f5;
	color: #000;
	transform: translateY(-3px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.hotop-carousel__btn--static {
	cursor: default;
}

.hotop-carousel__pagination {
	bottom: 16px !important;
}

.hotop-carousel__prev,
.hotop-carousel__next {
	color: #fff;
}

.hotop-carousel__prev::after,
.hotop-carousel__next::after {
	font-size: 28px;
}

.hotop-carousel--empty {
	padding: 24px;
	border: 1px dashed #c3c4c7;
	background: #f6f7f7;
	color: #50575e;
	text-align: center;
}

@media (max-width: 768px) {
	.hotop-carousel__btn {
		min-width: 200px;
		height: 56px;
		font-size: 20px;
	}

	.hotop-carousel__content {
		padding-bottom: 28px;
	}
}
