.ngl-custom-slider-wrapper {
	position: relative;
	width: 100%;
}

.ngl-custom-slider {
	width: 100%;
	overflow: hidden;
}

.ngl-custom-slider .swiper-wrapper {
	display: flex;
	align-items: stretch;
}

.ngl-custom-slider .swiper-slide {
	height: auto;
	display: flex;
}

.ngl-slider-card {
	width: 100%;
	display: flex;
	flex-direction: column;
	position: relative;
	background: #2a3a4a;
	border-radius: 8px;
	padding: 30px;
	transition: all 0.3s ease;
	height: 100%;
}

.ngl-slider-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ngl-slider-card-link {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
	height: 100%;
	width: 100%;
}

.ngl-slider-card-image {
	width: 100%;
	margin-bottom: 20px;
	text-align: center;
}

.ngl-slider-card-image img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
}

.ngl-slider-card-icon {
	width: 100%;
	margin-bottom: 20px;
	text-align: right;
	font-size: 48px;
	color: #ffd700;
}

.ngl-slider-card-icon i {
	display: inline-block;
}

.ngl-slider-card-content {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.ngl-slider-card-title {
	font-size: 20px;
	font-weight: bold;
	color: #ffffff;
	margin: 0 0 10px 0;
	line-height: 1.4;
}

.ngl-slider-card-description {
	font-size: 14px;
	color: #e0e0e0;
	margin: 0 0 20px 0;
	line-height: 1.6;
	flex: 1;
}

.ngl-slider-card-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	padding-top: 15px;
	margin-top: auto;
}

.ngl-slider-card-footer-item {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
	color: #ffffff;
	font-size: 14px;
}

.ngl-slider-card-footer-item:last-child {
	margin-bottom: 0;
}

.ngl-slider-card-footer-item i {
	margin-left: 10px;
	font-size: 16px;
	color: #e0e0e0;
}

.ngl-slider-card-footer-item span {
	flex: 1;
}

.ngl-slider-nav-buttons {
	display: flex;
	justify-content: center;
	gap: 10px;
	margin-top: 30px;
}

.ngl-slider-nav-button {
	width: 50px;
	height: 50px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: #2a3a4a;
	color: #ffffff;
	border-radius: 4px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	font-size: 20px;
}

.ngl-slider-nav-button:hover {
	background: #3a4a5a;
	border-color: rgba(255, 255, 255, 0.5);
}

.ngl-slider-nav-button:disabled {
	opacity: 0.5;
	cursor: not-allowed;
}

@media (max-width: 768px) {
	.ngl-slider-card {
		padding: 20px;
	}

	.ngl-slider-card-title {
		font-size: 18px;
	}

	.ngl-slider-card-description {
		font-size: 13px;
	}
}
