/**
 * Shared UI primitives used by doctor templates (buttons, lists, rich text).
 * Mirrors home-page-v1 / home-v1-base utilities from the English theme.
 */

.services-list {
	list-style: none;
	margin: 0 0 32px;
	padding: 0;
}

.services-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 12px;
	font-size: 15px;
	color: var(--text-secondary);
	font-weight: 500;
}

.icon-check {
	width: 16px;
	height: 16px;
	background-color: var(--primary);
	border-radius: 3px;
	flex-shrink: 0;
	margin-top: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.icon-check svg {
	width: 10px;
	height: 10px;
	fill: white;
	stroke: white;
	stroke-width: 2;
}

.btn {
	display: inline-block;
	padding: 12px 32px;
	border-radius: 50px;
	font-weight: 700;
	font-size: 14px;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 2px solid transparent;
}

.btn-fill {
	background-color: var(--primary-dark);
	color: #fff;
	box-shadow: 0 4px 15px rgba(0, 109, 158, 0.3);
}

.btn-fill:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(0, 109, 158, 0.4);
	color: #fff;
}

.btn-outline {
	background-color: transparent;
	border-color: var(--primary-dark);
	color: var(--primary-dark);
}

.btn-outline:hover {
	background-color: #f0f9ff;
	transform: translateY(-2px);
	color: var(--primary-dark);
}

.entry-content {
	color: var(--text-secondary);
	line-height: 1.75;
	font-size: 1rem;
}

.entry-content > *:first-child {
	margin-top: 0;
}

.entry-content > *:last-child {
	margin-bottom: 0;
}

.entry-content p {
	margin: 0 0 1em;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
	color: var(--text-main);
	margin: 1.5em 0 0.75em;
	line-height: 1.3;
}

.entry-content ul,
.entry-content ol {
	margin: 0 0 1em;
	padding-inline-start: 1.25em;
}

.entry-content a {
	color: var(--primary);
}

.entry-content a:hover {
	text-decoration: underline;
}
