/* Base Card Setup */
.scp-card-963d9a17 {
	position: relative;
	background-color: #ffffff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.05);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
}

/* Hover Lift & Shadow Default */
.scp-card-963d9a17:hover {
	transform: translateY(-8px);
	box-shadow: 0px 15px 40px 0px rgba(0, 0, 0, 0.1);
}

/* Link Overlay */
.scp-card-963d9a17 .scp-link-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
}

/* Image Wrapper */
.scp-card-963d9a17 .scp-image-wrap {
	position: relative;
	width: 100%;
	height: 220px;
	flex-shrink: 0;
}

.scp-card-963d9a17 .scp-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

/* Hover Zoom Effect */
.scp-card-963d9a17.scp-zoom-effect:hover .scp-image-wrap img {
	transform: scale(1.05);
}

.scp-card-963d9a17 .scp-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: transparent;
	transition: background-color 0.3s ease;
	pointer-events: none;
}

/* Floating Icon Wrapper */
.scp-card-963d9a17 .scp-icon-wrap {
	position: absolute;
	bottom: -40px;
	left: 30px;
	width: 80px;
	height: 80px;
	background-color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid #8cc63f; /* Default brand green */
	box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.08);
	z-index: 5;
	transition: all 0.3s ease;
}

.scp-card-963d9a17 .scp-icon-wrap i {
	font-size: 32px;
	color: #8cc63f;
	transition: color 0.3s ease;
}

.scp-card-963d9a17 .scp-icon-wrap svg {
	width: 32px;
	height: 32px;
	fill: #8cc63f;
	transition: fill 0.3s ease;
}

/* Content Wrapper */
.scp-card-963d9a17 .scp-content-wrap {
	padding: 55px 30px 30px 30px;
	display: flex;
	flex-direction: column;
	gap: 15px;
	flex-grow: 1;
	position: relative;
	z-index: 2;
}

.scp-card-963d9a17 .scp-title {
	margin: 0;
	padding: 0;
	font-size: 24px;
	font-weight: 700;
	color: #1a1a1a;
	transition: color 0.3s ease;
}

.scp-card-963d9a17 .scp-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.scp-card-963d9a17 .scp-description {
	margin: 0;
	padding: 0;
	color: #555555;
	line-height: 1.6;
}
