
#indexSlider{width:100%;background-color:#2c4365;}
#indexSlider .swiper-slide a{display:block;width:100%;}
.swiper-button-next svg, .swiper-button-prev svg {display:none;}
.swiper-button-prev span span,
.swiper-button-next span span{color:white;font-size:15px;}
#indexSlider .swiper-button-prev {margin-left:-60px;}
#indexSlider .swiper-button-next {margin-right:-60px;}
.swiper-button-prev, .swiper-button-next{width:50px;height:50px;display:inline-flex;align-items:center;justify-content:center;border:1px solid white;border-radius:50%;}

.slide-title {height:44px;line-height:22px;overflow: hidden;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;}
.slide-author, .slide-date{height:18px;line-height:18px;overflow:hidden;white-space: nowrap; text-overflow: ellipsis;}


/*swiper*/

.slider-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 50px 20px 30px 20px;
	position: relative;
}

.swiper {
	width: 100%;
	padding-bottom:50px;
}

.swiper-slide {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	text-align: center;
	box-sizing: border-box;
	padding: 0px;
}

.slide-image {
	margin-bottom:15px;
	width: 100%;
	aspect-ratio: 3 / 4.2; /* 3:4 ratio */
	background-color: #ddd; /* Placeholder for image */
	background-size: cover;
	background-position: center;
}

.slide-title {
	width:100%;
	text-align:left;
	font-size: 16px;
	font-weight: 600;
	margin: 10px 0 50px;
	color:white;
}


.slide-author {
	
	width:100%;
	text-align:left;
	font-size: 12px;
	font-weight: 400;
	margin: 0;
	color:white;
}

.slide-date {
	width:100%;
	text-align:left;
	font-size: 12px;
	font-weight: 400;
	margin: 5px 0 0;
	color:white;
}

/* External navigation buttons */
.swiper-button-prev, .swiper-button-next {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background-color: transparent;
	color: #000;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 10;
	font-size: 20px;
}

.swiper-button-prev {
	left: -50px;
}

.swiper-button-next {
	right: -50px;
}

/* Bottom controls */
.bottom-controls {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 10px;
	z-index: 10;
}

.swiper-pagination-progressbar {
	width: 20px; /* Small progress bar */
	height: 2px;
	background: white;
	position: relative;
}
#indexSlider .swiper-pagination-progressbar{width:150px;height:3px;}
#totalSlides{margin-right:20px;}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
	background: #ffe780
}

.slide-counter {
	font-size: 12px;
	font-weight: 400;
	color: white;
}

.small-nav-button {
	width: 20px;
	height: 20px;
	background-color: transparent;
	color: white;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

.play-pause-button {
	width: 20px;
	height: 20px;
	background-color: transparent;
	color: white;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
	/*
	.swiper {
		height: 700px; 
	}
	*/
}

@media (max-width: 890px) {
	.swiper {
		
	}

	.swiper-button-prev {
		left: -30px;
	}

	.swiper-button-next {
		right: -30px;
	}
}

@media (max-width: 500px) {
	.swiper {
		
	}

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

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

	.swiper-pagination-progressbar {
		width: 20px;
	}
}