.PostCarouselWidget {
	position: relative;
	width: 100%;
	direction: rtl;
}

.PostCarouselWidget__swiper {
	width: 100%;
	overflow: hidden;
}

.PostCarouselWidget__slide {
	height: auto;
}

.PostCarouselWidget__link {
	position: relative;
	display: flex;
	align-items: flex-end;
	width: 100%;
	height: 360px;
	overflow: hidden;
	background-color: #e9e9e9;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #fff;
	text-decoration: none;
	isolation: isolate;
}

.PostCarouselWidget__link:hover,
.PostCarouselWidget__link:focus {
	color: #fff;
	text-decoration: none;
}

.PostCarouselWidget__placeholder {
	position: absolute;
	inset: 0;
	z-index: -2;
	display: block;
	background:
		linear-gradient(
			135deg,
			#eeeeee 0%,
			#d8d8d8 100%
		);
}

.PostCarouselWidget__overlay {
	position: absolute;
	inset: 0;
	z-index: -1;
	display: block;
	background:
		linear-gradient(
			to top,
			rgba(0, 0, 0, 0.7),
			transparent
		);
}

.PostCarouselWidget__content {
	display: block;
	width: 100%;
	padding: 20px;
}

.PostCarouselWidget__title {
	margin: 0;
	color: #fff;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.6;
}

.PostCarouselWidget__date {
	display: block;
	margin-top: 8px;
	color: rgba(255, 255, 255, 0.75);
	font-size: 13px;
	line-height: 1.5;
}

.PostCarouselWidget__button {
	position: absolute;
	top: 50%;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: #fff;
	color: #222;
	font: inherit;
	font-size: 28px;
	line-height: 1;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	transform: translateY(-50%);
	transition:
		transform 0.2s ease,
		opacity 0.2s ease;
}

.PostCarouselWidget__button:hover {
	transform: translateY(-50%) scale(1.06);
}

.PostCarouselWidget__button--next {
	left: -22px;
}

.PostCarouselWidget__button--prev {
	right: -22px;
}

.PostCarouselWidget__button.swiper-button-disabled {
	opacity: 0.35;
	cursor: default;
	pointer-events: none;
}

.PostCarouselWidget .swiper-pagination {
	position: relative;
	bottom: auto;
	margin-top: 18px;
}

.PostCarouselWidget .swiper-pagination-bullet {
	width: 8px;
	height: 8px;
	opacity: 0.35;
}

.PostCarouselWidget .swiper-pagination-bullet-active {
	opacity: 1;
}

.PostCarouselWidget__empty {
	padding: 24px;
	border: 1px dashed #ccc;
	border-radius: 10px;
	text-align: center;
}

@media (max-width: 767px) {
	.PostCarouselWidget__button {
		width: 38px;
		height: 38px;
		font-size: 24px;
	}

	.PostCarouselWidget__button--next {
		left: 8px;
	}

	.PostCarouselWidget__button--prev {
		right: 8px;
	}
}