.sc-carousel-wrapper {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
}

.sc-carousel-wrapper .swiper {
	overflow: hidden;
	flex: 1 1 auto;
	width: 100%;
	padding-bottom: 8px;
}

.sc-carousel-wrapper .swiper-slide {
	height: auto;
	display: flex;
}

/* Card */
.sc-card {
	display: flex;
	flex-direction: column;
	width: 100%;
	background-color: #f7f8fa;
	border-radius: 16px;
	padding: 20px;
	box-sizing: border-box;
	transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.sc-card-top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
}

.sc-card-text {
	flex: 1 1 auto;
	min-width: 0;
}

.sc-card-title {
	margin: 0 0 6px 0;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.3;
	color: #181818;
}

.sc-card-desc {
	margin: 0;
	font-size: 13px;
	line-height: 1.5;
	color: #6f7274;
}

.sc-card-arrow {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #ffffff;
	color: #181818;
	text-decoration: none;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.sc-card-arrow:hover {
	background-color: #181818;
	color: #ffffff;
	transform: rotate(45deg);
}

.sc-card-image {
	width: 100%;
	height: 220px;
	border-radius: 12px;
	overflow: hidden;
}

.sc-card-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	border-radius: 12px;
}

/* Nav arrows */
.sc-nav-btn {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: none;
	background-color: #f0f1f2;
	color: #181818;
	cursor: pointer;
	transition: background-color 0.25s ease, opacity 0.25s ease;
	z-index: 2;
}

.sc-nav-btn:hover {
	background-color: #e2e3e5;
}

.sc-nav-btn.swiper-button-disabled {
	opacity: 0.35;
	cursor: default;
}

/* Dots */
.sc-carousel-wrapper .swiper-pagination {
	position: relative;
	margin-top: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	bottom: auto;
}

.sc-carousel-wrapper .swiper-pagination-bullet {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background-color: #d9d9d9;
	opacity: 1;
	margin: 0;
	transition: background-color 0.25s ease, width 0.25s ease;
}

.sc-carousel-wrapper .swiper-pagination-bullet-active {
	background-color: #181818;
	width: 20px;
	border-radius: 4px;
}

@media (max-width: 767px) {
	.sc-carousel-wrapper {
		width: 100%;
		max-width: 100%;
		overflow: hidden;
	}

	.sc-carousel-wrapper .swiper {
		width: 100%;
		max-width: 100%;
		overflow: hidden;
	}

	.sc-carousel-wrapper .swiper-slide {
		width: 100% !important;
		flex-shrink: 0;
	}

	.sc-card {
		width: 100%;
		max-width: 100%;
	}

	.sc-card-image {
		height: 180px;
	}
}
