.banner-box {
	width: 96%;
	height: 30vw;
	max-width: 448px;
	max-height: 140px;
	margin: 7px;
	border-radius: 7px;
	overflow: hidden;
	display: flex;
	position: relative;
}

.banner-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 7px;
	display: block;
}

.banner-arrow {
	color: var(--white);
	font-size: 12px;
	padding: 6px;
	text-align: center;
	cursor: pointer;
	border-radius: 6px;
	border: 2px solid var(--surface-2);
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

.banner-arrow--left {
	left: 5px;
}

.banner-arrow--right {
	right: 5px;
}

.banner-dots {
	position: absolute;
	bottom: 6px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 5px;
}

.banner-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--surface-2);
	cursor: pointer;
	opacity: 0.7;
	transition: background-color 0.2s, opacity 0.2s;
}

.banner-dot--active {
	background-color: var(--white);
	opacity: 1;
}
