.cs-eeb45492-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
	align-items: center;
	font-family: inherit;
}

@media (max-width: 767px) {
	.cs-eeb45492-container {
		grid-template-columns: 1fr;
	}
}

.cs-eeb45492-col h3 {
	font-size: 1.2rem;
	font-weight: 700;
	margin-bottom: 20px;
	text-transform: uppercase;
	color: #e66415; /* Default orange */
}

.cs-eeb45492-list {
	list-style: none;
	padding: 0;
	margin: 0 0 20px 0;
}

.cs-eeb45492-list li {
	display: flex;
	align-items: flex-start;
	margin-bottom: 12px;
	font-size: 1rem;
	font-weight: 600;
	color: #333;
}

.cs-eeb45492-icon {
	margin-right: 12px;
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.cs-eeb45492-col.challenge-col .cs-eeb45492-icon {
	color: #e66415;
}

.cs-eeb45492-col.solution-col .cs-eeb45492-icon {
	color: #e66415;
}

.cs-eeb45492-list svg {
	width: 1em;
	height: 1em;
	fill: currentColor;
}

.cs-eeb45492-col p {
	font-size: 0.95rem;
	line-height: 1.6;
	color: #555;
	margin-bottom: 20px;
}

.cs-eeb45492-image-wrapper {
	position: relative;
	width: 100%;
	max-width: 350px;
	margin: 0 auto;
	aspect-ratio: 1;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cs-eeb45492-image-wrapper img {
	width: 100%;
	height: auto;
	border-radius: 50%;
	object-fit: cover;
	position: relative;
	z-index: 2;
}

/* 100% exact arc matching the screenshot */
.cs-eeb45492-arc {
	position: absolute;
	top: -8%;
	bottom: -8%;
	left: -8%;
	right: -8%;
	border: 2px solid transparent;
	border-right-color: #e66415;
	border-bottom-color: #e66415;
	border-radius: 50%;
	z-index: 1;
	transform: rotate(20deg);
}

.cs-eeb45492-arc::before {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	background: #e66415;
	border-radius: 50%;
	top: 11%;
	right: 13%;
}

.cs-eeb45492-arc::after {
	content: '';
	position: absolute;
	bottom: -4px;
	left: 45%;
	border-width: 8px;
	border-style: solid;
	border-color: transparent transparent #e66415 #e66415;
	transform: rotate(35deg);
}