/**
 * WebSyc Slider Styles
 * Author: Waldemar Syc, WebSyc
 */

.websyc-slider {
	position: relative;
	width: 100%;
	overflow: hidden;
	min-height: 200px;
}

.websyc-slider .swiper-slide {
	height: auto;
}

.websyc-slide {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.websyc-slide-content {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 40px 20px;
	box-sizing: border-box;
}

.websyc-slide-content h2 {
	font-size: 2.5rem;
	margin-bottom: 20px;
	color: #333;
	font-weight: bold;
}

.websyc-slide-content .slide-text {
	font-size: 1.2rem;
	line-height: 1.6;
	color: #666;
	max-width: 800px;
	margin-bottom: 30px;
}

.websyc-slide-content .slide-image {
	max-width: 100%;
	height: auto;
}

.websyc-slide-content .slide-image img {
	max-width: 100%;
	height: auto;
	border-radius: 8px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.websyc-slider .elementor-swiper-button {
	z-index: 10;
	width: 50px;
	height: 50px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
	transition: all 0.3s ease;
	color: #ffffff;
}

.websyc-slider .elementor-swiper-button:hover,
.websyc-slider .elementor-swiper-button:focus-visible {
	color: #c4a356;
}

.websyc-slider .elementor-swiper-button-prev {
	left: 20px;
}

.websyc-slider .elementor-swiper-button-next {
	right: 20px;
}

.websyc-slider .swiper-pagination {
	bottom: 20px;
	z-index: 10;
}

.websyc-slider .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	margin: 0 5px;
	opacity: 0.5;
	background: #c4a356;
}

.websyc-slider .swiper-pagination-bullet-active {
	opacity: 1;
	background: #c4a356;
}

.websyc-slider-empty {
	padding: 60px 20px;
	text-align: center;
	background: #f8f9fa;
	border: 2px dashed #dee2e6;
	border-radius: 8px;
	color: #6c757d;
}

.websyc-slider-empty p {
	margin: 0;
	font-size: 1.1rem;
}

@media (max-width: 768px) {
	.websyc-slide-content h2 {
		font-size: 2rem;
	}

	.websyc-slide-content .slide-text {
		font-size: 1rem;
	}

	.websyc-slider .elementor-swiper-button {
		width: 40px;
		height: 40px;
	}

	.websyc-slider .elementor-swiper-button-prev {
		left: 10px;
	}

	.websyc-slider .elementor-swiper-button-next {
		right: 10px;
	}
}

@media (max-width: 480px) {
	.websyc-slide-content {
		padding: 20px 15px;
	}

	.websyc-slide-content h2 {
		font-size: 1.5rem;
		margin-bottom: 15px;
	}

	.websyc-slide-content .slide-text {
		font-size: 0.9rem;
		margin-bottom: 20px;
	}
}
