.fcc-sc-carousel {
	position: relative;
	padding: 0 60px;
	box-sizing: border-box;
}

.fcc-sc-viewport {
	overflow: hidden;
	width: 100%;
}

.fcc-sc-track {
	display: flex;
	gap: var(--fcc-sc-gap, 2.4em);
	transition: transform 0.45s ease;
	will-change: transform;
}

.fcc-sc-card {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

.fcc-sc-card-top {
	background: var(--fcc-sc-top-bg, #ffffff);
	border-radius: 16px 16px 0 0;
	padding: 32px 28px;
	box-sizing: border-box;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.fcc-sc-card-top-header {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}

.fcc-sc-number {
	font-size: 28px;
	font-weight: 800;
	line-height: 1;
	color: var(--fcc-sc-number, #2823F9);
}

.fcc-sc-category {
	font-size: 0.70rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--fcc-sc-category, #2823F9);
	font-family: "inter";
	width: min-content;
    line-height: 0.85rem;
	word-break: normal;
    overflow-wrap: normal;
}

.fcc-sc-heading {
	font-size: 1.3rem;
	font-weight: bold;
	margin: 0 0 16px;
	color: var(--fcc-sc-heading, #333);
	font-family: "inter";
	width: 90%;
}

.fcc-sc-divider {
	border: none;
	border-top: 1px dashed #2823F9;
	margin: 0 0 16px;
}

.fcc-sc-description {
	font-size: 0.88rem;
	margin: 0;
	font-family: "inter";
	font-weight: 500;
	padding-top: 10px;
	color: var(--fcc-sc-description, #333);
}

.fcc-sc-card-bottom {
	background: var(--fcc-sc-bottom-bg, #2823F9);
	border-radius:16px;
	padding: 28px;
	box-sizing: border-box;
	margin-top: -8px;
	flex: 1;
}

.fcc-sc-bullets {
	list-style: none;
	margin: 0;
	padding: 0;
}

.fcc-sc-bullets li {
	position: relative;
    font-size: 0.88rem;
    line-height: 1.3rem;
    padding-left: 20px;
    font-family: 'Inter';
    font-weight: normal;
    margin-bottom: 10px;
    color: var(--fcc-sc-bullet-text, #ffffff);
}

.fcc-sc-bullets li:last-child {
	margin-bottom: 0;
}

.fcc-sc-bullets li::before {
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--fcc-sc-bullet-marker, #ffffff);
}

.fcc-sc-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 34px;
	height: 34px;
	border-radius: 50% !important;
	border: none;
	background-color: var(--fcc-sc-arrow-bg, #FF6A3D) !important;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
	transition: background-color 0.2s ease;
	z-index: 2;
	padding: 0;
}

.fcc-sc-arrow:hover {
	background-color: var(--fcc-sc-arrow-bg-hover, #E85A2F)t;
}

.fcc-sc-arrow svg {
	fill: none;
	pointer-events: none;
	stroke: var(--fcc-sc-arrow-icon, #ffffff);
}

.fcc-sc-arrow-prev {
	left: 0;
}

.fcc-sc-arrow-next {
	right: 0;
}

.fcc-sc-arrow[disabled] {
	opacity: 0.35;
	cursor: not-allowed;
}

@media (max-width: 1024px) {
	.fcc-sc-carousel {
		padding: 0 48px;
	}
}

@media (max-width: 767px) {
	.fcc-sc-carousel {
		padding: 0 40px;
	}
	.fcc-sc-heading {
		font-size: 19px;
	}
}
