.aura-carousel-widget {
	width: 100%;
	box-sizing: border-box;
}

.aura-carousel-widget *,
.aura-carousel-widget *::before,
.aura-carousel-widget *::after {
	box-sizing: border-box;
}

.aura-carousel-widget__swiper {
	width: 100%;
	padding: 20px 0;
	position: relative;
}

.aura-carousel-widget .swiper-wrapper {
	transition-timing-function: linear !important;
}

.aura-carousel-widget .swiper-slide {
	width: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.aura-carousel-widget__slide img {
	display: block;
	width: 350px;
	height: 250px;
	object-fit: cover;
	border-radius: 6px;
	cursor: pointer;
	transition: transform 0.3s ease;
}

.aura-carousel-widget__slide img:hover {
	transform: scale(1.02);
}

.aura-carousel-widget .custom-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: #fff;
	background: rgba(0, 0, 0, 0.6);
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	opacity: 0;
	transition: opacity 0.3s ease, background-color 0.3s ease;
	z-index: 10;
	user-select: none;
}

.aura-carousel-widget .arrow-prev {
	left: 15px;
}

.aura-carousel-widget .arrow-next {
	right: 15px;
}

.aura-carousel-widget__arrow-icon {
	display: block;
	width: 18px;
	height: 18px;
}

.aura-carousel-widget .arrow-prev .aura-carousel-widget__arrow-icon {
	transform: rotate(180deg);
}

.aura-carousel-widget .custom-arrow:hover {
	background: rgba(0, 0, 0, 0.9);
}

.aura-carousel-widget__swiper:hover .custom-arrow,
.aura-carousel-widget .custom-arrow:focus-visible {
	opacity: 1;
}

.aura-carousel-widget-placeholder {
	padding: 24px;
	border: 1px dashed #c3c4c7;
	color: #50575e;
	text-align: center;
	background: #f6f7f7;
}

@media (max-width: 768px) {
	.aura-carousel-widget .custom-arrow {
		opacity: 1;
	}
}
