.sa-184-wrapper {
	display: flex;
	flex-direction: column;
	background-color: #FFFFFF;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	border-radius: 12px;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	border: 1px solid rgba(0,0,0,0.05);
}

.sa-184-wrapper:hover {
	transform: translateY(-5px);
	box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.sa-184-image-col {
	width: 100%;
}

.sa-184-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	min-height: 250px;
}

.sa-184-content-col {
	padding: 40px;
	position: relative;
	border-top: 6px solid #F17300;
}

.sa-184-content-col::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 150px;
	height: 150px;
	background: #FFE5D4;
	border-radius: 50%;
	transform: translate(50%, -50%);
	opacity: 0.5;
	z-index: 0;
}

.sa-184-badge {
	display: inline-block;
	background-color: #054A91;
	padding: 6px 16px;
	border-radius: 30px;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.sa-184-header {
	color: #FFFFFF;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.sa-184-goal {
	font-size: 14px;
	font-weight: 600;
	color: #F17300;
	margin-bottom: 15px;
	position: relative;
	z-index: 1;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.sa-184-title {
	color: #054A91;
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 25px;
	position: relative;
	z-index: 1;
}

.sa-184-body {
	color: #050517;
	font-size: 16px;
	line-height: 1.7;
	position: relative;
	z-index: 1;
}

.sa-184-body p {
	margin-bottom: 15px;
}

.sa-184-body p:last-child {
	margin-bottom: 0;
}

@media (min-width: 992px) {
	.sa-184-wrapper {
		flex-direction: row;
	}
	.sa-184-image-col {
		width: 45%;
	}
	.sa-184-content-col {
		width: 55%;
		border-top: none;
		border-left: 6px solid #F17300;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	.sa-184-title {
		font-size: 36px;
	}
}

@media (max-width: 768px) {
	.sa-184-content-col {
		padding: 30px 20px;
	}
	.sa-184-title {
		font-size: 28px;
	}
}