/* Desktop Layout */
.sh-7bcb5c18-wrapper {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	min-height: 500px;
	overflow: hidden;
}

.sh-7bcb5c18-content {
	flex: 0 0 50%; /* Force 50% width */
    max-width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	padding: 80px 60px;
}

.sh-7bcb5c18-image-col {
	flex: 0 0 50%; /* Force 50% width */
    max-width: 50%;
	display: flex;
}

.sh-7bcb5c18-image-col img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* Tag */
.sh-7bcb5c18-tag {
	border: 1px solid currentColor;
	border-radius: 50px;
	padding: 6px 20px;
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 30px;
	display: inline-block;
}

/* Typography spacing */
.sh-7bcb5c18-title {
	margin: 0 0 20px 0;
	font-size: 48px;
	font-weight: 400;
	line-height: 1.2;
}

.sh-7bcb5c18-text {
	margin: 0 0 40px 0;
	font-size: 18px;
	line-height: 1.6;
	max-width: 90%;
}

/* Button */
.sh-7bcb5c18-btn {
	padding: 15px 35px;
	text-decoration: none;
	display: inline-block;
	border: none;
	cursor: pointer;
	font-weight: 500;
	transition: opacity 0.3s ease;
}

.sh-7bcb5c18-btn:hover {
	opacity: 0.9;
}

/* Tablet & Mobile Layout - Image on Top */
@media (max-width: 1024px) {
	.sh-7bcb5c18-wrapper {
		flex-direction: column-reverse; /* Reverses so the 2nd item (image) is at the top */
	}
	
	.sh-7bcb5c18-content,
    .sh-7bcb5c18-image-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

	.sh-7bcb5c18-content {
		padding: 60px 40px;
	}
	
	.sh-7bcb5c18-title {
		font-size: 40px;
	}
	
	.sh-7bcb5c18-text {
		font-size: 17px;
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.sh-7bcb5c18-content {
		padding: 40px 20px;
	}
	
	.sh-7bcb5c18-title {
		font-size: 36px;
	}
	
	.sh-7bcb5c18-text {
		font-size: 16px;
	}
}