.fss-1747-wrapper {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding-bottom: 40px;
}

.fss-1747-slide-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #f9f9f9;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

@media (min-width: 768px) {
	.fss-1747-slide-inner {
		flex-direction: row;
		min-height: 400px;
	}
}

.fss-1747-content {
	flex: 1;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.fss-1747-title {
	font-size: 28px;
	font-weight: 700;
	margin-top: 0;
	margin-bottom: 15px;
	color: #333;
}

.fss-1747-desc {
	font-size: 16px;
	line-height: 1.6;
	color: #666;
	margin-bottom: 25px;
}

.fss-1747-btn {
	display: inline-block;
	padding: 12px 24px;
	background-color: #61CE70; /* Accent color from globals */
	color: #fff;
	text-decoration: none;
	border-radius: 5px;
	font-weight: 600;
	transition: background-color 0.3s;
}

.fss-1747-btn:hover {
	background-color: #51b55e;
	color: #fff;
}

.fss-1747-image-col {
	flex: 1;
	width: 100%;
	height: 100%;
	min-height: 250px;
}

@media (min-width: 768px) {
	.fss-1747-image-col {
		max-width: 50%;
	}
}

.fss-1747-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Swiper Controls overrides */
.fss-1747-wrapper .swiper-pagination-bullet-active {
	background: #61CE70;
}
.fss-1747-wrapper .swiper-button-next,
.fss-1747-wrapper .swiper-button-prev {
	color: #61CE70;
}