.eds-10842-wrapper {
	padding: 90px 20px; /* 80-100px padding top/bottom */
	background-color: transparent;
	font-family: 'Inter', sans-serif;
}

.eds-10842-container {
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
	gap: 50px; /* 40-60px gap */
	align-items: flex-start;
}

.eds-10842-col-left {
	flex: 1 1 60%;
}

.eds-10842-col-right {
	flex: 1 1 40%;
}

.eds-10842-content-wrap {
	max-width: 600px; /* Max text width */
	padding-top: 30px; /* Align with info box padding */
}

.eds-10842-heading {
	font-family: 'Playfair Display', serif;
	font-size: 32px;
	color: #1F3D2B; /* Primary color from context */
	margin-top: 0;
	margin-bottom: 24px;
	font-weight: 400;
	line-height: 1.2;
}

.eds-10842-paragraph {
	font-size: 16px;
	color: #2B2B2B; /* Text color from context */
	line-height: 1.6;
	margin-bottom: 24px;
}

.eds-10842-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.eds-10842-list li {
	position: relative;
	padding-left: 24px;
	margin-bottom: 12px;
	font-size: 16px;
	color: #2B2B2B;
	line-height: 1.5;
}

.eds-10842-list li::before {
	content: "•";
	position: absolute;
	left: 0;
	color: #8A9A8E; /* Secondary color from context for subtle bullets */
	font-size: 20px;
	line-height: 1.2;
}

.eds-10842-info-box {
	background: linear-gradient(rgba(31, 61, 43, 0.15), rgba(31, 61, 43, 0.15)), #FFFFFF;
	padding: 30px;
	border-radius: 10px;
	border: 1px solid rgba(31, 61, 43, 0.1);
	box-shadow: 0 2px 10px rgba(0,0,0,0.02); /* Extremely subtle lift */
}

.eds-10842-info-title {
	font-size: 20px;
	color: #1F3D2B;
	margin-top: 0;
	margin-bottom: 24px;
	font-weight: 500;
}

.eds-10842-info-text {
	font-size: 16px; /* Matched to regular paragraph */
	color: #2B2B2B;
	line-height: 1.6;
}

.eds-10842-info-text p {
	margin-bottom: 12px;
}

.eds-10842-info-text p:last-child {
	margin-bottom: 0;
}

@media (max-width: 768px) {
	.eds-10842-container {
		flex-direction: column;
		gap: 40px;
	}
	
	.eds-10842-wrapper {
		padding: 60px 20px;
	}
	
	.eds-10842-content-wrap {
		padding-top: 0; /* Remove extra padding on mobile */
	}

	.eds-10842-col-left,
	.eds-10842-col-right {
		width: 100%;
		flex: none;
	}
}