/**
 * Страница /services/ — список категорий и услуг [legstom_services_list]
 * Слева: категория + мин. цена. Справа: список услуг-ссылок.
 */

.legstom-services-list {
	display: flex;
	flex-direction: column;
	gap: 32px;
}

.legstom-services-list__row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px 40px;
	align-items: start;
	padding-bottom: 32px;
	border-bottom: 1px solid #e5e5e5;
}

.legstom-services-list__row:last-child {
	padding-bottom: 0;
	border-bottom: none;
}

.legstom-services-list__title {
	margin: 0 0 8px;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.25;
}

.legstom-services-list__title a {
	color: #1a7cfa;
	text-decoration: none;
	border-bottom: 1px solid rgba(26, 124, 250, 0.3);
	transition: color 0.2s, border-color 0.2s;
}

.legstom-services-list__title a:hover {
	color: #04bf68;
	border-color: #04bf68;
}

.legstom-services-list__price {
	margin: 0;
	font-size: 16px;
	color: #333;
}

.legstom-services-list__links {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* Подгруппа (подкатегория) */
.legstom-services-list__subgroup {
	margin-top: 16px;
}

.legstom-services-list__subgroup:first-child {
	margin-top: 0;
}

.legstom-services-list__subtitle {
	margin: 0 0 8px;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.3;
	color: #333;
}

.legstom-services-list__subtitle a {
	color: #1a7cfa;
	text-decoration: none;
	border-bottom: 1px solid rgba(26, 124, 250, 0.25);
	transition: color 0.2s, border-color 0.2s;
}

.legstom-services-list__subtitle a:hover {
	color: #04bf68;
	border-color: #04bf68;
}

.legstom-services-list__links a {
	color: #111;
	text-decoration: underline;
	text-underline-offset: 3px;
	transition: color 0.2s;
}

.legstom-services-list__links a:hover {
	color: #04bf68;
}

.legstom-services-list__links span {
	color: #333;
}

@media (max-width: 768px) {
	.legstom-services-list__row {
		grid-template-columns: 1fr;
		gap: 16px;
		padding-bottom: 24px;
	}

	.legstom-services-list__title {
		font-size: 22px;
	}

	.legstom-services-list__subtitle {
		font-size: 18px;
	}

	.legstom-services-list__subgroup {
		margin-top: 12px;
	}
}
