/* Simple Blog Slider - Clean and Simple */
.fylo-simple-slider {
	position: relative;
	width: 100%;
	max-width: 1280px;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 20px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.fylo-simple-slider__wrapper {
	position: relative;
	width: 100%;
	padding-bottom: 56.25%;
	overflow: hidden;
}

.fylo-simple-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.6s ease;
	pointer-events: none;
}

.fylo-simple-slide.active {
	opacity: 1;
	pointer-events: auto;
	z-index: 2;
}

.fylo-simple-slide__link {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	position: relative;
}

.fylo-simple-slide__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.fylo-simple-slide__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
	padding: 40px 30px 30px;
}

.fylo-simple-slide__categories {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.fylo-simple-slide__category-badge {
	display: inline-block;
	background: rgba(255, 255, 255, 0.95);
	color: #333333;
	font-size: 12px;
	font-weight: 600;
	padding: 6px 14px;
	border-radius: 20px;
	text-decoration: none;
	transition: all 0.3s ease;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
}

.fylo-simple-slide__category-badge:hover {
	background: #ffffff;
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	color: #000000;
}

.fylo-simple-slide__format-icon {
	position: absolute;
	top: 20px;
	right: 20px;
	width: 48px;
	height: 48px;
	background: rgba(255, 255, 255, 0.95);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), 0 0 0 4px rgba(255, 255, 255, 0.3);
	transition: all 0.3s ease;
	z-index: 5;
	border: 2px solid rgba(255, 107, 53, 0.3);
}

.fylo-simple-slide:hover .fylo-simple-slide__format-icon {
	transform: scale(1.1) rotate(-5deg);
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3), 0 0 0 6px rgba(255, 107, 53, 0.4);
	border-color: rgba(255, 107, 53, 0.6);
}

.fylo-simple-slide__format-icon svg {
	width: 24px;
	height: 24px;
	color: #ff6b35;
	fill: #ff6b35;
	display: block;
	filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.fylo-simple-slide__title {
	color: #ffffff;
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 10px;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.fylo-simple-slide__date {
	color: rgba(255, 255, 255, 0.9);
	font-size: 14px;
	margin: 0;
}

/* Navigation */
.fylo-simple-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 45px;
	height: 45px;
	background: rgba(255, 255, 255, 0.9);
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	opacity: 0;
}

.fylo-simple-slider:hover .fylo-simple-nav {
	opacity: 1;
}

.fylo-simple-nav:hover {
	background: #ffffff;
	transform: translateY(-50%) scale(1.1);
}

.fylo-simple-nav--prev {
	left: 20px;
}

.fylo-simple-nav--next {
	right: 20px;
}

.fylo-simple-nav svg {
	width: 20px;
	height: 20px;
	fill: #333;
}

/* Dots */
.fylo-simple-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 10px;
}

.fylo-simple-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	border: 2px solid rgba(255, 255, 255, 0.8);
	cursor: pointer;
	transition: all 0.3s ease;
	padding: 0;
	margin: 0;
}

.fylo-simple-dot:hover {
	background: rgba(255, 255, 255, 0.8);
	transform: scale(1.2);
}

.fylo-simple-dot.active {
	background: #ffffff;
	width: 30px;
	border-radius: 6px;
}

/* Counter */
.fylo-simple-counter {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 10;
	background: rgba(0, 0, 0, 0.6);
	color: #ffffff;
	padding: 8px 16px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
	.fylo-simple-slider__wrapper {
		padding-bottom: 75%;
	}

	.fylo-simple-slide__title {
		font-size: 22px;
	}

	.fylo-simple-nav {
		width: 40px;
		height: 40px;
		opacity: 0.8;
	}

	.fylo-simple-nav--prev {
		left: 10px;
	}

	.fylo-simple-nav--next {
		right: 10px;
	}

	.fylo-simple-slide__format-icon {
		width: 44px;
		height: 44px;
		top: 15px;
		right: 15px;
	}

	.fylo-simple-slide__format-icon svg {
		width: 22px;
		height: 22px;
	}
}

@media (max-width: 480px) {
	.fylo-simple-slide__title {
		font-size: 18px;
	}

	.fylo-simple-slide__overlay {
		padding: 30px 20px 20px;
	}

	.fylo-simple-slide__category-badge {
		font-size: 11px;
		padding: 5px 12px;
	}

	.fylo-simple-slide__format-icon {
		width: 40px;
		height: 40px;
		top: 12px;
		right: 12px;
	}

	.fylo-simple-slide__format-icon svg {
		width: 20px;
		height: 20px;
	}

	.fylo-simple-slide__categories {
		gap: 6px;
		margin-bottom: 10px;
	}
}

