.ent-post-slider {
	--ent-ps-navy: #00001a;
	--ent-ps-cyan: #04cfec;
	--ent-ps-excerpt: #00001acc;
	--ent-ps-date: #6b7280;
	width: 100%;
	max-width: 100%;
}

.ent-post-slider *,
.ent-post-slider *::before,
.ent-post-slider *::after {
	box-sizing: border-box;
}

.ent-post-slider__swiper {
	overflow: hidden;
	padding-bottom: 4px;
}

.ent-post-slider__slide {
	height: auto;
	padding: 20px 12px 28px;
	display: flex;
}

.ent-post-card {
	display: flex;
	width: 100%;
	height: 100%;
	margin: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
}

.ent-post-card__inner {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	padding: 16px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

.ent-post-card__image {
	margin: 0 0 16px;
	border-radius: 8px;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	background: #eef2f6;
}

.ent-post-card__image a {
	display: block;
	height: 100%;
}

.ent-post-card__image img,
.ent-post-card__image-placeholder {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ent-post-card__image-placeholder {
	background: linear-gradient(135deg, #dbe7f0 0%, #eef3f7 100%);
}

.ent-post-card__date {
	margin: 0 0 8px;
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--ent-ps-date);
}

.ent-post-card__title {
	margin: 0 0 10px;
	font-family: "IBM Plex Sans", sans-serif;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.35;
	color: var(--ent-ps-navy);
}

.ent-post-card__title a {
	color: var(--ent-ps-navy);
	text-decoration: none;
}

.ent-post-card__title a:hover {
	color: var(--ent-ps-navy);
	text-decoration: none;
}

.ent-post-card__excerpt {
	flex: 1 1 auto;
	margin: 0 0 20px;
	font-family: Inter, sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--ent-ps-excerpt);
}

.ent-post-card__btn {
	display: inline-block;
	align-self: flex-start;
	margin-top: auto;
	padding: 14px 36px;
	background: var(--ent-ps-cyan);
	color: #fff !important;
	border-radius: 10px;
	font-family: Inter, sans-serif;
	font-size: 15px;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none !important;
	transition: background 0.3s ease;
}

.ent-post-card__btn:hover,
.ent-post-card__btn:focus {
	background: var(--ent-ps-navy);
	color: #fff !important;
}

.ent-post-slider__pagination {
	position: relative !important;
	bottom: 0 !important;
	margin-top: 4px;
	text-align: center;
}

.ent-post-slider .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	margin: 0 4px !important;
	background: var(--ent-ps-navy);
	opacity: 0.2;
	transition: opacity 0.3s ease;
}

.ent-post-slider .swiper-pagination-bullet-active {
	opacity: 1;
}

@media (max-width: 767px) {
	.ent-post-slider__slide {
		padding: 16px 10px 24px;
	}

	.ent-post-card__title {
		font-size: 17px;
	}
}
