.dsw-slider-wrapper {
	position: relative;
	padding: 0 4px;
}

.dsw-swiper {
	overflow: hidden;
}

.dsw-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow: hidden;
	background-color: #F7F1EA;
	border-radius: 24px;
}

.dsw-photo-wrap {
	position: relative;
	overflow: hidden;
	height: 380px;
	flex-shrink: 0;
}

.dsw-photo {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1);
	transition: transform 0.4s ease;
}

.dsw-photo-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	opacity: 0;
	pointer-events: none;
	white-space: nowrap;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	letter-spacing: 0.5px;
	transition: opacity 0.3s ease, background-color 0.2s ease, color 0.2s ease;
}

.dsw-card:hover .dsw-photo-btn {
	opacity: 1;
	pointer-events: auto;
}

.dsw-text {
	display: flex;
	flex-direction: column;
	gap: 8px;
	transition: transform 0.3s ease;
}

.dsw-name {
	font-weight: 700;
}

.dsw-subtitle {
	display: flex;
	align-items: center;
	gap: 6px;
}

.dsw-subtitle-icon {
	display: inline-flex;
	line-height: 1;
}

.dsw-subtitle-icon i,
.dsw-subtitle-icon svg {
	display: block;
	width: 1em;
	height: 1em;
}

.dsw-spec-label {
	font-weight: 700;
}

.dsw-arrow {
	position: absolute;
	top: 45%;
	transform: translateY(-50%);
	cursor: pointer;
	user-select: none;
	z-index: 5;
	line-height: 1;
	transition: color 0.2s ease;
}

.dsw-arrow-prev {
	left: -10px;
}

.dsw-arrow-next {
	right: -10px;
}

.dsw-swiper .swiper-slide {
	height: auto;
}

@media (max-width: 767px) {
	.dsw-arrow.dsw-hide-mobile {
		display: none;
	}
}
