.start-list-page {
	margin: 24px 0 40px;
}

.start-list-hero {
	height: 300px;
	border-radius: 24px;
	overflow: hidden;
	position: relative;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	box-shadow: 0 10px 26px rgba(0, 0, 0, .08);
}

.start-list-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(18, 28, 38, .78), rgba(18, 28, 38, .42) 55%, rgba(18, 28, 38, .08));
}

.start-list-hero-panel {
	position: absolute;
	left: 30px;
	bottom: 30px;
	z-index: 2;
	max-width: 720px;
	padding: 26px 30px;
	border-radius: 20px;
	background: rgba(255, 255, 255, .14);
	backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, .22);
	color: #fff;
}

.start-list-eyebrow {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .16em;
	text-transform: uppercase;
	opacity: .8;
}

.start-list-hero h1 {
	margin: 6px 0 10px;
	font-size: 38px;
	font-weight: 700;
	line-height: 1.1;
	color: #fff;
}

.start-list-meta {
	font-size: 18px;
}

.start-list-separator {
	margin: 0 8px;
	opacity: .7;
}


/* Karta z tabelą */

.start-list-section {
	background: #fff;
	border-radius: 20px;
	margin-top: 24px;
	padding: 28px;
	box-shadow: 0 10px 26px rgba(0, 0, 0, .06);
}

.start-list-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 20px;
}

.start-list-section-head h2 {
	margin: 0;
	font-size: 28px;
	font-weight: 700;
}

.start-list-subtitle {
	margin-top: 4px;
	color: #667085;
	font-size: 15px;
}


/* Tabela */

.start-list-table-container {
	border: 1px solid #e6e9ee;
	border-radius: 14px;
	overflow-x: auto;
}

.start-list-table {
	margin-bottom: 0;
	vertical-align: middle;
}

.start-list-table thead th {
	padding: 14px 16px;
	background: #f4f6f8;
	color: #475467;
	font-size: 13px;
	font-weight: 700;
	white-space: nowrap;
	border-bottom: 1px solid #e6e9ee;
}

.start-list-table tbody th,
.start-list-table tbody td {
	padding: 14px 16px;
	border-bottom-color: #eef0f2;
}

.start-list-table tbody th {
	width: 60px;
	color: #667085;
	font-weight: 600;
	white-space: nowrap;
}

.start-list-table tbody tr:last-child th,
.start-list-table tbody tr:last-child td {
	border-bottom: 0;
}

.start-list-table tbody tr {
	transition: background-color .15s ease;
}

.start-list-table tbody tr:hover {
	background-color: #f8fafc;
}

.start-list-distance-selector {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 10px;
}

.start-list-distance-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 10px 20px;
	border-radius: 999px;
	background: #65aeea;
	color: #fff !important;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: background-color .15s ease, transform .15s ease, box-shadow .15s ease;
}

.start-list-distance-btn:hover {
	background: #438dde;
	color: #fff;
	transform: translateY(-1px);
	box-shadow: 0 5px 12px rgba(67, 141, 222, .18);
}

.start-list-distance-btn.active {
	background: #2874c6;
	cursor: default;
	box-shadow: 0 0 0 3px rgba(67, 141, 222, .14);
}

/* Telefon */

@media (max-width: 640px) {

	.start-list-page {
		margin-top: 16px;
	}

	.start-list-hero {
		height: 250px;
		border-radius: 18px;
	}

	.start-list-hero-panel {
		left: 16px;
		right: 16px;
		bottom: 16px;
		padding: 20px;
	}

	.start-list-hero h1 {
		font-size: 28px;
	}

	.start-list-meta {
		font-size: 16px;
	}

	.start-list-section {
		margin-top: 16px;
		padding: 18px;
		border-radius: 16px;
	}

	.start-list-section-head h2 {
		font-size: 23px;
	}

	.start-list-table thead th,
	.start-list-table tbody th,
	.start-list-table tbody td {
		padding: 11px 12px;
	}
	
	.start-list-distance-selector {
		display: grid;
		grid-template-columns: 1fr;
	}

	.start-list-distance-btn {
		width: 100%;
	}
}