/* Layout & Structure */
.sh-774a2a88-wrapper {
	display: flex;
	align-items: center;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
}

.sh-774a2a88-content {
	width: 55%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.sh-774a2a88-image-col {
	width: 45%;
	box-sizing: border-box;
}

/* Typography elements */
.sh-774a2a88-eyebrow {
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-bottom: 15px;
	font-size: 14px;
}

.sh-774a2a88-heading {
	margin: 0 0 20px;
	font-size: 48px;
	line-height: 56px;
	font-weight: 700;
}

.sh-774a2a88-paragraph {
	margin: 0 0 35px;
	font-size: 18px;
	line-height: 30px;
}

/* Buttons */
.sh-774a2a88-buttons {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.sh-774a2a88-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 28px;
	text-decoration: none;
	transition: all 0.3s ease;
	font-weight: 600;
	border-style: solid;
	border-width: 1px;
	border-color: transparent;
	cursor: pointer;
	font-size: 16px;
}

.sh-774a2a88-btn:hover {
	opacity: 0.9;
	text-decoration: none;
}

.sh-774a2a88-btn-secondary {
	background: transparent;
}

.sh-774a2a88-btn-secondary:hover {
	background: rgba(0,0,0,0.05);
}

/* Image / Placeholder */
.sh-774a2a88-image-wrap {
	width: 100%;
	position: relative;
	box-sizing: border-box;
}

.sh-774a2a88-image-wrap img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	max-height: 600px;
}

.sh-774a2a88-placeholder {
	width: 100%;
	height: 400px;
	background: #e2e8f0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #64748b;
	font-weight: 500;
}

/* Responsive - Tablet */
@media (max-width: 1024px) {
	.sh-774a2a88-wrapper {
		gap: 35px !important; 
	}
	.sh-774a2a88-heading {
		font-size: 40px;
	}
}

/* Responsive - Mobile */
@media (max-width: 767px) {
	.sh-774a2a88-wrapper {
		flex-direction: column;
		padding: 45px 20px !important;
	}
	
	.sh-774a2a88-content,
	.sh-774a2a88-image-col {
		width: 100%;
	}
	
	.sh-774a2a88-content {
		align-items: center;
		text-align: center;
	}
	
	.sh-774a2a88-heading {
		font-size: 34px;
		line-height: 40px;
	}

	.sh-774a2a88-paragraph {
		font-size: 16px;
		line-height: 26px;
	}

	.sh-774a2a88-buttons {
		flex-direction: column;
		width: 100%;
		gap: 12px;
	}
	
	.sh-774a2a88-btn {
		width: 100%;
		box-sizing: border-box;
	}

	.sh-774a2a88-image-wrap img {
		height: 260px;
	}

	.sh-774a2a88-placeholder {
		height: 260px;
	}
}