.yb-wrapper {
	font-family: inherit;
	color: #333;
	padding: 40px 0;
}

/* Header */
.yb-header {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 50px;
}
.yb-kicker {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: #6D5B87; /* Purple */
	margin-bottom: 20px;
}
.yb-kicker-icon {
	display: inline-flex;
	font-size: 20px;
}
.yb-kicker-icon svg {
	width: 20px;
	height: 20px;
	fill: currentColor;
}
.yb-title {
	font-size: 42px;
	color: #6D4C41; /* Brown */
	margin: 0 0 20px 0;
	line-height: 1.2;
}
.yb-subtitle {
	font-size: 18px;
	color: #555;
}

/* Middle Layout */
.yb-middle {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;
	/* margin-bottom is now controlled via Elementor settings */
}

.yb-img-col {
	flex: 1;
	max-width: 25%;
}

.yb-arch-img {
	width: 100%;
	height: auto;
	aspect-ratio: 0.7;
	object-fit: cover;
	/* default radius, override via Elementor */
	border-top-left-radius: 500px;
	border-top-right-radius: 500px;
}

.yb-arch-placeholder {
	width: 100%;
	aspect-ratio: 0.7;
	background-color: #ddd;
	/* default radius, override via Elementor */
	border-top-left-radius: 500px;
	border-top-right-radius: 500px;
}

.yb-text-cols {
	flex: 2;
	display: flex;
	gap: 40px;
}

.yb-col {
	flex: 1;
}

.yb-col-icon {
	font-size: 30px;
	color: #9B7EB2; /* Light Purple */
	margin-bottom: 15px;
}
.yb-col-icon svg {
	width: 30px;
	height: 30px;
	fill: currentColor;
}

.yb-col-title {
	font-size: 22px;
	color: #6D4C41;
	margin: 0 0 15px 0;
	line-height: 1.3;
}

.yb-col-text {
	font-size: 15px;
	line-height: 1.6;
}

/* Quote Card */
.yb-quote-container {
	position: relative;
	z-index: 2;
	padding: 0 20px;
}
.yb-quote-card {
	background-color: #fff;
	border-radius: 12px;
	padding: 40px;
	display: flex;
	align-items: center;
	gap: 30px;
	max-width: 900px;
	margin: 0 auto;
	box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}
.yb-quote-icon {
	font-size: 50px;
	color: #E8D3C3; /* Peach */
	flex-shrink: 0;
}
.yb-quote-icon svg {
	width: 50px;
	height: 50px;
	fill: currentColor;
}
.yb-quote-text {
	flex: 1;
	font-size: 18px;
	font-style: italic;
	color: #6D5B87;
	line-height: 1.5;
	text-align: center;
}

/* Footer CTA */
.yb-footer {
	text-align: center;
	max-width: 700px;
	margin: 50px auto 0;
}
.yb-bottom-text {
	font-size: 16px;
	color: #333;
	margin-bottom: 30px;
	line-height: 1.5;
}
.yb-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}
.yb-btn {
	padding: 14px 28px;
	border-radius: 30px;
	font-size: 15px;
	font-weight: 500;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
}
.yb-btn-primary {
	background-color: #8D73A6;
	color: #fff;
}
.yb-btn-primary:hover {
	opacity: 0.9;
}
.yb-btn-secondary {
	background-color: transparent;
	border: 1px solid #8D73A6;
	color: #8D73A6;
}
.yb-btn-secondary:hover {
	background-color: #8D73A6;
	color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
	.yb-middle {
		flex-direction: column;
		align-items: center;
		margin-bottom: 30px;
	}
	.yb-img-col {
		max-width: 100%;
		width: 100%;
		margin-bottom: 30px;
	}
	.yb-arch-img, .yb-arch-placeholder {
		aspect-ratio: auto;
		border-radius: 20px; /* fallback on mobile */
	}
	.yb-text-cols {
		flex-direction: column;
		gap: 30px;
	}
	.yb-quote-card {
		flex-direction: column;
		text-align: center;
		padding: 30px 20px;
	}
}
