/* Маршрутные посадочные: /avtovoz/ и /avtovoz/<маршрут>/
   Опирается на общую сетку .ccenter и кнопки .red_btn_around из style.css;
   здесь только то, что специфично для этих страниц. */

.sampa24-route {
	padding-bottom: 64px;
}

.sampa24-route__head {
	margin: 0 0 44px;
}

.sampa24-route__eyebrow {
	margin: 0 0 12px;
	color: #ff4d12;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .12em;
	line-height: 1.3;
	text-transform: uppercase;
}

.sampa24-route h1 {
	max-width: 900px;
	margin: 0 0 18px;
	color: #102f51;
	font-size: clamp(30px, 3.6vw, 44px);
	font-weight: 700;
	letter-spacing: -.02em;
	line-height: 1.1;
}

.sampa24-route__lead {
	/* Без ограничения строка тянется на всю ширину экрана и читается тяжело. */
	max-width: 60ch;
	margin: 0 0 26px;
	color: #587899;
	font-size: 17px;
	line-height: 1.6;
}

.sampa24-route__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px 22px;
	align-items: center;
}

.sampa24-route__secondary {
	color: #1f5e8c;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	border-bottom: 1px dashed rgba(31, 94, 140, .45);
}

.sampa24-route__secondary:hover {
	color: #f85112;
	border-bottom-color: rgba(248, 81, 18, .5);
}

/* ---------- секции ---------- */

.sampa24-route section {
	margin-bottom: 52px;
}

.sampa24-route h2 {
	margin: 0 0 18px;
	color: #102f51;
	font-size: 27px;
	font-weight: 700;
	line-height: 1.2;
}

.sampa24-route .sampa24-orders-heading h2 {
	margin-bottom: 6px;
}

.sampa24-route .sampa24-orders-heading span {
	display: block;
	margin-bottom: 22px;
	color: #6e88a3;
	font-size: 15px;
}

/* ---------- пусто ---------- */

.sampa24-route__empty {
	padding: 34px 30px;
	border: 1px solid #cfe5ff;
	border-radius: 16px;
	background: #f7fbff;
}

.sampa24-route__empty h2 {
	margin-bottom: 10px;
	font-size: 22px;
}

.sampa24-route__empty p {
	max-width: 60ch;
	margin: 0 0 20px;
	color: #587899;
	line-height: 1.6;
}

/* ---------- города маршрута ---------- */

.sampa24-route__cities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 14px;
}

.sampa24-route__city-card {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 20px;
	border: 1px solid #cfe5ff;
	border-radius: 14px;
	background: #fff;
	color: #102f51;
	text-decoration: none;
	transition: border-color .2s, box-shadow .2s;
}

.sampa24-route__city-card:hover {
	border-color: #f85112;
	box-shadow: 0 8px 20px rgba(32, 87, 137, .1);
}

.sampa24-route__city-card strong {
	font-size: 17px;
	font-weight: 700;
}

.sampa24-route__city-card small {
	flex: 1;
	color: #6e88a3;
	font-size: 13px;
}

.sampa24-route__city-card span {
	color: #f85112;
	font-size: 18px;
}

/* ---------- другие направления / список на хабе ---------- */

.sampa24-route__others-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 10px;
}

.sampa24-route__others-grid a {
	display: block;
	padding: 13px 16px;
	border: 1px solid #dbe7f5;
	border-radius: 10px;
	background: #fff;
	color: #1f4a75;
	font-size: 15px;
	font-weight: 600;
	text-decoration: none;
	transition: border-color .2s, color .2s;
}

.sampa24-route__others-grid a:hover {
	border-color: #f85112;
	color: #f85112;
}

.sampa24-route__others-grid a small {
	display: block;
	margin-top: 3px;
	color: #90a8c2;
	font-size: 12px;
	font-weight: 500;
}

.sampa24-route__others-grid a:hover small {
	color: #f89c7c;
}

/* ---------- реальная цифра под кнопками в шапке маршрута ---------- */

.sampa24-route__stat {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 22px 0 0;
	color: #6e88a3;
	font-size: 13px;
}

.sampa24-route__stat::before {
	content: '';
	flex: 0 0 6px;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #f85112;
}

/* ---------- как проходит перевозка ---------- */

.sampa24-route__process-list {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.sampa24-route__process-list li {
	display: flex;
	gap: 14px;
	padding: 20px;
	border: 1px solid #dbe7f5;
	border-radius: 14px;
	background: #fff;
}

.sampa24-route__process-num {
	display: flex;
	flex: 0 0 32px;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #f85112;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
}

.sampa24-route__process-list strong {
	display: block;
	margin-bottom: 6px;
	color: #102f51;
	font-size: 16px;
}

.sampa24-route__process-list p {
	margin: 0;
	color: #6e88a3;
	font-size: 14px;
	line-height: 1.5;
}

/* ---------- частые вопросы ---------- */

.sampa24-route__faq-item {
	padding: 18px 20px;
	border: 1px solid #dbe7f5;
	border-radius: 12px;
	background: #fff;
}

.sampa24-route__faq-item + .sampa24-route__faq-item {
	margin-top: 10px;
}

.sampa24-route__faq-item summary {
	color: #102f51;
	font-size: 16px;
	font-weight: 700;
	cursor: pointer;
	list-style: none;
}

.sampa24-route__faq-item summary::-webkit-details-marker {
	display: none;
}

.sampa24-route__faq-item summary::before {
	content: '+';
	display: inline-block;
	width: 18px;
	color: #f85112;
	font-weight: 700;
}

.sampa24-route__faq-item[open] summary::before {
	content: '–';
}

.sampa24-route__faq-item p {
	margin: 12px 0 0 18px;
	color: #587899;
	font-size: 14.5px;
	line-height: 1.6;
}

/* Ссылка «Все направления» под блоком на главной. */
.sampa24-home-regions__all {
	margin: 16px 0 0;
}

.sampa24-home-regions__all a {
	color: #f85112;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

.sampa24-home-regions__all a:hover {
	text-decoration: underline;
}

@media (max-width: 640px) {
	.sampa24-route {
		padding-bottom: 40px;
	}
	.sampa24-route section {
		margin-bottom: 38px;
	}
	.sampa24-route h2 {
		font-size: 22px;
	}
	.sampa24-route__empty {
		padding: 24px 18px;
	}
}
