.site-banner {
	position: relative;
	width: 1440px;
	height: 500px;
	margin: 0 auto;
	overflow: hidden;
	border-radius: 8px;
	box-shadow: 0 12px 40px rgba(0, 60, 120, 0.18);
	background: #0a2540;
}

.site-banner__track {
	position: relative;
	width: 100%;
	height: 100%;
}

.site-banner__slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	z-index: 1;
	transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1);
	pointer-events: none;
}

.site-banner__slide.is-active {
	opacity: 1;
	z-index: 2;
	pointer-events: auto;
}

.site-banner__slide img {
	display: block;
	width: 1440px;
	height: 500px;
	object-fit: cover;
}

.site-banner__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 120px;
	z-index: 3;
	pointer-events: none;
	background: linear-gradient(to top, rgba(0, 30, 60, 0.55) 0%, transparent 100%);
}

.site-banner__arrow {
	position: absolute;
	top: 50%;
	z-index: 5;
	width: 48px;
	height: 48px;
	margin-top: -24px;
	padding: 0;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.92);
	color: #034d89;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
	opacity: 0;
	transform: translateX(0) scale(0.9);
	transition: opacity 0.35s ease, transform 0.35s ease, background 0.25s ease, color 0.25s ease;
}

.site-banner:hover .site-banner__arrow {
	opacity: 1;
	transform: translateX(0) scale(1);
}

.site-banner__arrow:hover {
	background: #e87917;
	color: #fff;
}

.site-banner__arrow--prev {
	left: 20px;
}

.site-banner__arrow--next {
	right: 20px;
}

.site-banner__arrow svg {
	display: block;
	margin: 0 auto;
}

.site-banner__dots {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 22px;
	z-index: 6;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.site-banner__dot {
	width: 10px;
	height: 10px;
	padding: 0;
	border: 2px solid rgba(255, 255, 255, 0.85);
	border-radius: 50%;
	cursor: pointer;
	background: transparent;
	transition: width 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.site-banner__dot.is-active {
	width: 32px;
	border-radius: 6px;
	background: #e87917;
	border-color: #e87917;
}

.site-banner__dot:hover:not(.is-active) {
	background: rgba(255, 255, 255, 0.5);
}

.site-banner__progress {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 4;
	height: 3px;
	background: rgba(255, 255, 255, 0.25);
}

.site-banner__progress-bar {
	height: 100%;
	width: 0;
	background: linear-gradient(90deg, #e87917, #ffb347);
	transition: width 0.1s linear;
}
