.site-banner-slider {
	position: relative;
	width: 100%;
	max-height: 224px;
	overflow: hidden;
	border-radius: var(--radius-md);
	background: var(--color-tetriary, #f5f5f5);
  box-shadow: var(--shadow-sm);
}

.site-banner-slider__viewport {
	width: 100%;
	overflow: hidden;
}

.site-banner-slider__track {
	display: flex;
	width: 100%;
	transition: transform 0.45s ease;
	will-change: transform;
}

.site-banner-slider__slide {
	flex: 0 0 100%;
	width: 100%;
}

.site-banner-slider__link {
	display: block;
	width: 100%;
	height: 100%;
}

.site-banner-slider__picture {
	display: block;
	width: 100%;
}

.site-banner-slider__image {
	display: block;
	width: 100%;
	height: auto;
	max-height: 224px;
	object-fit: cover;
}

/*
 * Стрелки
 */
.site-banner-slider__arrow {
	position: absolute;
	z-index: 3;
	top: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.88);
	color: var(--color-text, #222);
	font-size: 23px;
	line-height: 1;
	cursor: pointer;
	transform: translateY(-50%);
	box-shadow: 0 3px 12px rgba(0, 0, 0, 0.14);
	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}

.site-banner-slider__arrow:hover {
	background: #ffffff;
	transform: translateY(-50%) scale(1.06);
}

.site-banner-slider__arrow--prev {
	left: 16px;
}

.site-banner-slider__arrow--next {
	right: 16px;
}

/*
 * Точки
 */
.site-banner-slider__dots {
	position: absolute;
	z-index: 3;
	bottom: 14px;
	left: 50%;
	display: flex;
	align-items: center;
	gap: 8px;
	transform: translateX(-50%);
}

.site-banner-slider__dot {
	width: 9px;
	height: 9px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.7);
	cursor: pointer;
	transition:
		width 0.2s ease,
		background-color 0.2s ease;
}

.site-banner-slider__dot.is-active {
	width: 24px;
	border-radius: 10px;
	background: #ffffff;
}

/*
 * Планшеты
 */
@media (min-width: 768px) and (max-width: 1199px) {
	.site-banner-slider {
		max-height: 224px;
	}

	.site-banner-slider__image {
		max-height: 224px;
	}
}

/*
 * Телефоны
 */
@media (max-width: 767px) {
	.site-banner-slider {
		max-height: none;
	}

	.site-banner-slider__image {
		max-height: none;
		width: 100%;
		height: auto;
	}

	.site-banner-slider__arrow {
		width: 34px;
		height: 34px;
		font-size: 18px;
	}

	.site-banner-slider__arrow--prev {
		left: 8px;
	}

	.site-banner-slider__arrow--next {
		right: 8px;
	}

	.site-banner-slider__dots {
		bottom: 9px;
		gap: 6px;
	}

	.site-banner-slider__dot {
		width: 7px;
		height: 7px;
	}

	.site-banner-slider__dot.is-active {
		width: 18px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.site-banner-slider__track {
		transition: none;
	}
}