.rs-case-study-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 28px;
	max-width: 100%;
	font-family: "Poppins", sans-serif;
	transition: all 0.3s ease 0s;
}

/* Header / badge */
.rs-case-study-card .csc-header {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}
.rs-case-study-card .csc-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background-color: #20504E;
	color: #ffffff;
	font-weight: 700;
	border-radius: 6px;
	flex-shrink: 0;
	line-height: 1;
}
.rs-case-study-card .csc-header-title {
	margin: 0;
	color: #20504E;
	font-weight: 700;
	font-family: "Montserrat", sans-serif;
}

/* Heading / description */
.rs-case-study-card .csc-heading {
	margin: 0 0 12px;
	color: #20504E;
	font-weight: 700;
	font-size: 26px;
	line-height: 1.3;
	font-family: "Montserrat", sans-serif;
}
.rs-case-study-card .csc-description {
	margin: 0 0 24px;
	color: #4A5568;
	line-height: 1.6;
}

/* Two-column row */
.rs-case-study-card .csc-columns {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 28px;
	margin-bottom: 28px;
}
.rs-case-study-card .csc-role-col {
	flex: 55 1 0%;
	min-width: 280px;
}
.rs-case-study-card .csc-impact-col {
	flex: 45 1 0%;
	min-width: 260px;
}

/* My Role */
.rs-case-study-card .csc-role-label {
	display: block;
	color: #69A19D;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 8px;
	font-family: "Montserrat", sans-serif;
}
.rs-case-study-card .csc-role-title {
	margin: 0 0 16px;
	color: #20504E;
	font-weight: 700;
	font-family: "Montserrat", sans-serif;
}
.rs-case-study-card .csc-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.rs-case-study-card .csc-checklist li {
	display: flex;
	align-items: flex-start;
	gap: 10px;
}
.rs-case-study-card .csc-check-icon {
	color: #9CC2E0;
	flex-shrink: 0;
	line-height: 1.5;
}
.rs-case-study-card .csc-check-icon i {
	font-size: 14px;
}
.rs-case-study-card .csc-check-icon svg {
	width: 14px;
	height: 14px;
}
.rs-case-study-card .csc-check-icon svg path {
	fill: #9CC2E0 !important;
}
.rs-case-study-card .csc-check-text {
	color: #4A5568;
}

/* Impact box */
.rs-case-study-card .csc-impact-col {
	background-color: #DFF2F1;
	border-radius: 12px;
	padding: 20px;
}
.rs-case-study-card .csc-impact-label {
	display: block;
	color: #69A19D;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 16px;
	font-family: "Montserrat", sans-serif;
}
.rs-case-study-card .csc-impact-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 16px 12px;
}
.rs-case-study-card .csc-stat-item {
	background-color: #ffffff;
	border-radius: 10px;
	padding: 12px;
}
.rs-case-study-card .csc-stat-value {
	color: #20504E;
	font-weight: 700;
	font-size: 22px;
	margin-bottom: 4px;
}
.rs-case-study-card .csc-stat-label {
	color: #4A5568;
	font-size: 13px;
	line-height: 1.4;
}

/* Key Highlights */
.rs-case-study-card .csc-highlights {
	background-color: #DFF2F1;
	border-radius: 12px;
	padding: 20px;
}
.rs-case-study-card .csc-highlights-label {
	display: block;
	color: #69A19D;
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 16px;
	font-family: "Montserrat", sans-serif;
}
.rs-case-study-card .csc-highlights-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.rs-case-study-card .csc-highlight-item {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.rs-case-study-card .csc-highlight-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: #ffffff;
	color: #9CC2E0;
	flex-shrink: 0;
}
.rs-case-study-card .csc-highlight-icon i {
	font-size: 20px;
}
.rs-case-study-card .csc-highlight-icon svg {
	width: 20px;
	height: 20px;
}
.rs-case-study-card .csc-highlight-icon svg path {
	fill: #9CC2E0 !important;
}
.rs-case-study-card .csc-highlight-text {
	margin: 0;
	color: #4A5568;
	font-size: 14px;
	line-height: 1.5;
}

/* Responsive */
@media screen and (max-width: 1024px) {
	.rs-case-study-card .csc-columns {
		flex-direction: column;
	}
	.rs-case-study-card .csc-role-col,
	.rs-case-study-card .csc-impact-col {
		flex: 1 1 auto;
		min-width: 0;
		width: 100%;
	}
}
@media screen and (max-width: 767px) {
	.rs-case-study-card {
		padding: 20px;
	}
	.rs-case-study-card .csc-impact-grid {
		grid-template-columns: 1fr;
	}
	.rs-case-study-card .csc-highlights-row {
		grid-template-columns: 1fr;
	}
}
