.websults-slider {
	position: relative;
	width: 1000px;
	min-height: 365px;
	overflow: hidden;
	background: #1a1a1a;
	-webkit-box-shadow: #666 0 1px 5px;
	box-shadow: #666 0 1px 5px;
}

.websults-track {
	display: -webkit-box;
	display: flex;
	height: 100%;
	will-change: transform;
}

.websults-slide {
	position: relative;
	min-width: 100%;
	min-height: 365px;
	-webkit-box-flex: 0;
	flex-shrink: 0;
}

.websults-slide img {
	display: block;
	width: 1000px;
	height: 365px;
	object-fit: cover;
}

/* Text overlay — only rendered when headline/subtext/button is set */
.websults-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px 30px 24px;
	background: -webkit-linear-gradient( transparent, rgba(0, 0, 0, 0.65) );
	background: linear-gradient( transparent, rgba(0, 0, 0, 0.65) );
}

.websults-headline {
	color: #fff;
	font-size: 24px;
	margin: 0 0 8px;
	line-height: 1.3;
}

.websults-subtext {
	color: #eee;
	font-size: 14px;
	margin: 0 0 12px;
	line-height: 1.5;
}

.websults-btn {
	display: inline-block;
	background: #bbcc16;
	color: #fff;
	padding: 8px 20px;
	text-decoration: none;
	font-size: 13px;
	font-weight: bold;
}

.websults-btn:hover {
	background: #99a617;
	color: #fff;
}

/* Prev / Next buttons */
.websults-prev,
.websults-next {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.4);
	color: #fff;
	border: none;
	padding: 14px 18px;
	font-size: 18px;
	cursor: pointer;
	z-index: 10;
	line-height: 1;
}

.websults-prev {
	left: 10px;
}

.websults-next {
	right: 10px;
}

.websults-prev:hover,
.websults-next:hover {
	background: rgba(0, 0, 0, 0.7);
}

/* Dot indicators */
.websults-dots {
	position: absolute;
	bottom: 12px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	display: -webkit-box;
	display: flex;
	gap: 6px;
	z-index: 10;
}

.websults-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	border: none;
	cursor: pointer;
	padding: 0;
}

.websults-dot--active {
	background: #fff;
}
