/* General Section Layout */
.bd-section-wrapper-12050 {
	padding: 100px 40px;
	font-family: var(--e-global-typography-text-font_family), sans-serif;
}

.bd-container-12050 {
	display: flex;
	gap: 80px;
	max-width: 1400px;
	margin: 0 auto;
}

/* Left Column */
.bd-left-col-12050 {
	flex: 1;
	max-width: 55%;
}

.bd-subtitle-12050 {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 30px;
	font-weight: 600;
	font-family: var(--e-global-typography-primary-font_family), serif;
	display: inline-block;
}

.bd-subtitle-12050::after {
	content: '';
	display: block;
	width: 40px;
	height: 2px;
	margin-top: 15px;
}

.bd-title-12050 {
	font-size: 48px;
	line-height: 1.3;
	margin-bottom: 40px;
	font-weight: 400;
	font-family: var(--e-global-typography-primary-font_family), serif;
}

.bd-blockquote-12050 {
	font-size: 22px; /* Reduced from 26px */
	font-family: var(--e-global-typography-primary-font_family), serif;
	font-style: italic;
	line-height: 1.5;
	margin: 0 0 50px 0;
	padding-left: 30px;
	border-left: 3px solid;
}

/* Stats Row */
.bd-stats-row-12050 {
	display: flex;
	gap: 40px;
	border-top: 1px solid;
	padding-top: 40px;
}

.bd-stat-item-12050 {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.bd-stat-val-12050 {
	font-size: 36px;
	font-family: var(--e-global-typography-primary-font_family), serif;
	margin-bottom: 10px;
	line-height: 1;
}

.bd-stat-desc-12050 {
	font-size: 14px;
	line-height: 1.5;
}

/* Right Column */
.bd-right-col-12050 {
	flex: 1;
	max-width: 45%;
	padding-top: 20px; /* Aligns visually with the title */
}

.bd-content-12050 {
	font-size: 18px;
	line-height: 1.8;
}

.bd-content-12050 p {
	margin-bottom: 25px;
}

.bd-content-12050 p:last-child {
	margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
	.bd-container-12050 {
		flex-direction: column;
		gap: 50px;
	}
	
	.bd-left-col-12050,
	.bd-right-col-12050 {
		max-width: 100%;
	}
	
	.bd-title-12050 {
		font-size: 40px;
	}
	
	.bd-right-col-12050 {
		padding-top: 0;
	}
}

@media (max-width: 768px) {
	.bd-section-wrapper-12050 {
		padding: 60px 20px;
	}
	
	.bd-title-12050 {
		font-size: 32px;
	}
	
	.bd-blockquote-12050 {
		font-size: 20px; /* Reduced from 22px */
		padding-left: 20px;
	}
	
	.bd-stats-row-12050 {
		flex-direction: column;
		gap: 25px;
	}
	
	.bd-content-12050 {
		font-size: 16px;
	}
}