.afisha_slider-wrap {position:relative}
	.afisha_slider {
		width: 100%;
		overflow: hidden;

		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		touch-action: pan-x;
		overscroll-behavior-x: contain;
	}
	.afisha_slider::-webkit-scrollbar {display: none}
	.afisha_slider-track {
		display: flex;
		gap: 20px;

		scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch;
		touch-action: pan-x;
		overscroll-behavior-x: contain;
	}
		.afisha_slide {
			flex: 0 0 80%;
			min-width: 80%;
			box-sizing: border-box;
			scroll-snap-align: start;
		}

	.afisha_slider-wrap.-single .afisha_slide {
		flex: 0 0 100%;
		min-width: 100%;
	}
	.afisha_slider-wrap.-single .afisha_nav {display: none}


.afisha_card {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	min-height: 460px;
	padding: 32px 24px;
	border-radius: 24px;
	overflow: hidden;
	box-sizing: border-box;
}
	.afisha_card:before {
		content: '';
		position: absolute;
		z-index: 1;
		display: flex;
		width: 100%;
		height: 100%;
		inset:0;
		background-color: #000;
		opacity: .35;
		pointer-events: none;
	}

	.afisha_card-image {
		position: absolute;
		top: 0;
		left: 0;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
	}
		.afisha_card-image img {
			width: 100%;
			height: 100%;
			object-fit: cover;
		}

	.afisha_card-badges {
		position: relative;
		z-index: 2;
		display: flex;
		flex-wrap: wrap;
		gap: 12px;
	}
		.afisha_card-badge {
			display: inline-flex;
			gap: 6px;
			align-items: center;
			padding: 6px 14px;
			font-weight: 600;
			font-size: 14px;
			line-height: 18px;
			color: #000106;
			background-color: #fff;
			border-radius: 20px;
			cursor: default;
		}

	.afisha_card-content {
		position: relative;
		z-index: 2;
		display: flex;
		align-items: flex-end;
		justify-content: space-between;
		width: 100%;
		margin-top: auto;
		letter-spacing: .4px;
		color: #fff;
	}
		.afisha_card-title {
			font-weight: 600;
			font-size: 52px;
			line-height: 52px;
		}
		.afisha_card-desc {
			margin-top: 12px;
			font-weight: 500;
			font-size: 18px;
			line-height: 24px;
		}
		.afisha_card-btn-wrap {flex-shrink:0}
			.afisha_card-btn:hover {
				background-color:#e6bc00;
				transform:translateY(1px);
			}

.afisha_nav {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	z-index: 100;
	display: flex;
	justify-content: space-between;
	transform: translateY(-50%);
	pointer-events: none;
}
	.afisha_nav-btn {
		position: relative;
		z-index: 10;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 72px;
		height: 72px;
		border-radius: 50%;
		background-color: #0009;
		border: none;
		color: #fff;
		cursor: pointer;
		transition: all .2s;
		pointer-events: auto;
	}
		.afisha_nav-btn:hover {
			background-color: #000;
			cursor: pointer;
		}
		.afisha_nav-btn:before {
			content: '';
			display: block;
			width: 25px;
			height: 25px;
			border: 0 solid #fff;
			border-width: 5px 0 0 5px;
		}
		.afisha_nav-btn-prev {margin-left: -36px}
		.afisha_nav-btn-next {margin-right: -36px}
		.afisha_nav-btn-prev:before {
			margin-right: -12px;
			transform:rotate(-45deg);
		}
		.afisha_nav-btn-next:before {
			margin-left: -12px;
			transform:rotate(135deg);
		}
		.afisha_nav-btn.is-hidden {opacity: 0}

@media (max-width: 1024px) {
	.afisha {overflow:hidden}
	.afisha_slide {
		flex: 0 0 90%;
		min-width: 90%;
	}
	.afisha_card-content {
		flex-direction: column;
		align-items: flex-start;
		gap: 16px;
	}
	.afisha_card-text {max-width:100%}
	.afisha_card-title {
		font-size: 28px;
		line-height: 32px;
	}
	.afisha_card-desc {
		font-size: 18px;
		line-height: 20px;
	}
}

@media (max-width: 425px) {
	.afisha_nav {display: none}

	.afisha_slide {
		flex: 0 0 90%;
		min-width: 90%;
	}

	.afisha_card-image {
		position: relative;
		height: 400px;
		border-radius: 24px;
		overflow: hidden;
	}

	.afisha_card {padding: 0}
	.afisha_card:before {content: none}

		.afisha_card-badges {
			position: absolute;
			top: 20px;
			left: 20px;
		}

	.afisha_card-content {
		margin-top: 16px;
		color: #000;
	}
		.afisha_card-btn-wrap {width: 100%}
			.afisha_card-btn-wrap .main-btn {
				width: 100%;
				margin-top: 20px;
			}
}