/* Container: optional heading + subheading */
.csc-container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto 40px auto;
	text-align: center;
	font-family:"Montserrat", Sans-serif;
}
.csc-heading {
	font-family: "Montserrat", Sans-serif;
	font-weight: 600;
	font-style: SemiBold;
	font-size: 20px;
	leading-trim: NONE;
	line-height: 28px;
	letter-spacing: 1%;
	color:rgba(13, 13, 13, 1);
	margin-bottom:15px
	
}
.csc-subheading {
	font-family: "Montserrat", Sans-serif;
	font-weight: 500;
	font-style: Medium;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 28px;
	letter-spacing: 1%;
	color:rgba(135, 135, 135, 1);
}

/* Carousel outer wrapper */
.csc-carousel {
	position: relative;
	overflow: hidden;
	width: 100%;
	padding: 10px;
}

/* Slides container */
.csc-wrapper {
	display: flex;
	gap: 20px;
	transition: transform 0.5s ease-in-out;
	/*     justify-content: center; */
}

/* Single slide/card */
.csc-slide {
	flex: 0 0 calc(33% - 30px); /* 3 cards per row */
	background: #fff;
	box-shadow: 0 10px 30px #00124110;
	border-radius: 8px;
	padding: 20px;
	text-align: left; /* left align text to match screenshot */
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	justify-content: center;
/* 	gap: 8px; */
	margin: 10px;
}

/* Featured image circle */
.csc-img-wrapper {
	margin-bottom: 0px;
	text-align: left;
}
.csc-thumbnail {
	width: 80px;
	height: 80px;
	object-fit: cover;
	vertical-align: middle;
	border-radius:4px !important
}

/* Name & designation */
.csc-name {
	font-family: "Montserrat", Sans-serif;
	font-weight: 600;
	font-style: SemiBold;
	font-size: 20px;
	leading-trim: NONE;
	line-height: 28px;
	letter-spacing: 1%;
	color:rgba(13, 13, 13, 1);
	margin-bottom:10px
}
.csc-designation {
	font-family: "Montserrat", Sans-serif;
	font-weight: 500;
	font-style: Medium;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 28px;
	letter-spacing: 1%;
	color:rgba(135, 135, 135, 1);
}

/* Story text */
.csc-story {
	font-family: "Montserrat", Sans-serif;
	font-weight: 400;
	font-style: Regular;
	font-size: 16px;
	leading-trim: NONE;
	line-height: 28px;
	letter-spacing: 0%;
	color: rgba(13, 13, 13, 1);


}

/* Prev/Next Buttons */
.csc-prev, .csc-next {
	border: 1px solid #151A1E;
	background: transparent;
	padding: 0px 20px;
	border-radius: 50px;
	transform: translateY(-50%);
	cursor: pointer;
	transition: background 0.2s;
	margin: 0px 5px;
}

.csc-prev:focus, .csc-next:focus{
	background: transparent;
}

.csc-prev:hover, .csc-next:hover {
	background: #f7f7f7;
}
.csc-prev {
	left: 0;
}
.csc-next {
	right: 0;
}


.carouselHeader {
	display: flex;
	flex: 1 1 calc(50%);
	justify-content: space-between;
	flex-direction: row-reverse;
	align-content: center;
	flex-wrap: wrap;
	max-height:90px !important
}


/* Responsive (if needed) */
@media (max-width: 992px) {
	.csc-slide {
		flex: 0 0 calc(50% - 20px); /* 2 columns on tablet */
	}
}
@media (max-width: 600px) {
	.csc-slide {
		flex: 0 0 100%; /* 1 column on mobile */
	}
	/* Slides container */
	.csc-wrapper {
		justify-content: center;
	}

}
