/* Slide */
.posts__slide {
	display: flex;
	flex-direction: column;
	row-gap: .75rem;
	height: auto;
}

/* Thumbnail image */
.posts__slide .slide__thumbnail {
	display: flex;
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	height: 220px;
	min-height: 220px;
	max-height: 220px;
}

.posts__slide .slide__thumbnail--image {
	display: flex;
	height: 220px;
	min-height: 220px;
	max-height: 220px;
	width: 100%;
	object-fit: cover;
	border-radius: 16px;
	transition: .5s ease;
}

.posts__slide:hover .slide__thumbnail--image{
	transform: scale(1.1);
	transition: .5s ease;
}


.posts__slide .slide__thumbnail--label{
	color: #000000;
	background: #D1F1AB;
	position: absolute;
	right: 20px;
	top: 20px;
	border-radius: 40px;
	padding: .75rem 1rem;
	line-height: 1;
	white-space: nowrap;
	text-transform: uppercase;
}

.posts__slide .slide__details {
	display: flex;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
}

/* Title */
.slide__details .slide__details--title {
	color: #212121;
	font-weight: 600;
	font-size: 20px;
}

/* Title */
.slide__details .slide__details--excerpt {
	color: #212121;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	word-break: break-word;
}


/* Read more button */
.slide__details--read-more {
	display: flex;
	justify-content: start;
	align-items: center;
	column-gap: 1rem;
}

.slide__details--read-more p {
	margin: 0;
	font-weight: 500;
}

.posts-slider-wrapper .swiper-button-next,
.posts-slider-wrapper .swiper-button-prev {
	background: #585858;
	border-color: #585858;
}

.swiper-button-lock {
	display: none !important;
}

@media (min-width: 768px) {
	.posts-slider-wrapper .swiper-navigation {
		position: absolute;
		top: -119px;
		right: 0;
		margin: 0;
	}
	.posts-slider-wrapper .swiper-button-next {
		margin: 0;
	}
}