.image-slide-container
{
	margin: 0 auto;
	padding: 0;
	width: 980px;
	height: 380px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.slide-carousel-container
{
	position: relative;
	width: 980px;
	height: 380px;
	overflow: hidden;
	border-radius: 0;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.slide-carousel-track
{
	display: flex;
	width: 600%;
	height: 100%;
	transition: transform 0.8s ease-in-out;
}

.slide-carousel-slide
{
	width: calc(100% / 6);
	height: 100%;
	position: relative;
	overflow: hidden;
	border-radius: 0;
	border: 2px solid rgba(255, 255, 255, 0.2);
}

.slide-image
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.nav-container
{
	position: absolute;
	bottom: 20px;
	right: 20px;
	display: flex;
	gap: 10px;
	z-index: 20;
}

.nav-number
{
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.3);
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-weight: bold;
	font-size: 0.9rem;
}

.nav-number.active
{
	background: white;
	color: #1e3c72;
	transform: scale(1.2);
}

.carousel-controls
{
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	pointer-events: none;
	z-index: 10;
}

.control-btn
{
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.2);
	border: none;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(5px);
	pointer-events: auto;
	margin: 0 10px;
}

.control-btn:hover
{
	background: rgba(255, 255, 255, 0.3);
	transform: scale(1.1);
}

.slide-title
{
	position: absolute;
	bottom: 80px;
	left: 50%;
	transform: translateX(-50%);
	color: white;
	font-size: 1.8rem;
	text-align: center;
	text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
	z-index: 20;
}

.slide-description
{
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	color: rgba(255, 255, 255, 0.8);
	font-size: 1rem;
	text-align: center;
	max-width: 600px;
	line-height: 1.6;
	z-index: 20;
}

@media (max-width: 1200px)
{
	.image-slide-container
	{
		width: 100%;
		padding: 0 20px;
	}
	
	.title
	{
		font-size: 2rem;
	}
	
	.slide-carousel-container
	{
		width: 100%;
		max-width: 980px;
	}
}

@media (max-width: 768px)
{
	.title
	{
		font-size: 1.5rem;
	}
	
	.slide-carousel-container
	{
		width: 100%;
		height: 280px;
	}
	
	.slide-title
	{
		font-size: 1.3rem;
		bottom: 60px;
	}
	
	.slide-description
	{
		font-size: 0.8rem;
		bottom: 15px;
	}
	
	.nav-number
	{
		width: 25px;
		height: 25px;
		font-size: 0.7rem;
	}
	
	.control-btn
	{
		width: 40px;
		height: 40px;
		font-size: 1.2rem;
	}
}
