.ym-wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: stretch;
}

.ym-left-col {
	flex: 1 1 40%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.ym-right-col {
	flex: 1 1 50%;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.ym-main-card {
	background-color: #FAEEE5;
	border-radius: 8px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.ym-side-cards {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.ym-top-card {
	flex: 1;
	border-radius: 8px;
	background-size: cover;
	background-position: center;
	background-color: #ccc;
	position: relative;
	min-height: 200px;
	display: flex;
	align-items: flex-end;
	padding: 20px;
}

.ym-top-card-label-wrapper {
	background: rgba(255, 255, 255, 0.8);
	padding: 10px 15px;
	border-radius: 4px;
	width: 100%;
}

.ym-bottom-card {
	flex: 1;
	border-radius: 8px;
	background-color: #8D73A6;
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 30px;
	text-align: center;
	min-height: 200px;
}

.ym-bottom-icon {
	font-size: 30px;
	margin-bottom: 15px;
}

.ym-bottom-icon svg {
	width: 30px;
	height: 30px;
	fill: currentColor;
}

.ym-bottom-text {
	font-size: 18px;
	font-weight: 500;
	line-height: 1.4;
}

.ym-kicker {
	font-size: 12px;
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 8px;
}

.ym-title {
	font-size: 32px;
	margin: 0 0 20px 0;
}

.ym-desc {
	font-size: 16px;
	line-height: 1.6;
	margin-bottom: 30px;
}

.ym-features {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.ym-feature-item {
	display: flex;
	gap: 15px;
	align-items: flex-start;
}

.ym-feature-icon {
	flex-shrink: 0;
	margin-top: 5px;
}

.ym-feature-content {
	flex: 1;
}

.ym-feature-title {
	margin: 0 0 5px 0;
	font-size: 16px;
	font-weight: 600;
}

.ym-feature-desc {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
}

.ym-image-container {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.ym-image {
	max-width: 100%;
	height: auto;
	object-fit: contain;
}

.ym-image-placeholder {
	width: 100%;
	height: 100%;
	min-height: 300px;
}

.ym-image-label-wrapper {
	background: #fff;
	margin: 0 20px 20px 20px;
	padding: 15px;
	border-radius: 4px;
	text-align: center;
}

.ym-image-label {
	font-weight: 600;
}

@media (max-width: 991px) {
	.ym-right-col {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 767px) {
	.ym-wrapper {
		flex-direction: column;
	}
}
