.index-page {
	margin: 32px 0 50px;
}

.index-header {
	margin-bottom: 24px;
}

.index-eyebrow {
	margin-bottom: 6px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .16em;
	text-transform: uppercase;
	color: #438dde;
}

.index-header h1 {
	margin: 0 0 8px;
	font-size: 34px;
	font-weight: 700;
	color: #17212b;
}

.index-header p {
	margin: 0;
	color: #667085;
	font-size: 16px;
}


/* Lista zawodów */

.index-race-list {
	display: grid;
	gap: 12px;
}

.index-race-card {
	display: grid;
	grid-template-columns: 150px minmax(0, 1fr) auto;
	align-items: center;
	gap: 20px;
	padding: 20px 24px;
	background: #fff;
	border: 1px solid #e6e9ee;
	border-radius: 16px;
	text-decoration: none;
	color: #17212b;
	box-shadow: 0 6px 18px rgba(0, 0, 0, .04);
	transition:
		transform .15s ease,
		box-shadow .15s ease,
		border-color .15s ease;
}

.index-race-card:hover {
	color: #17212b;
	transform: translateY(-2px);
	border-color: rgba(67, 141, 222, .35);
	box-shadow: 0 10px 24px rgba(0, 0, 0, .07);
}

.index-race-date {
	font-size: 14px;
	font-weight: 700;
	color: #667085;
}

.index-race-name {
	font-size: 19px;
	font-weight: 700;
}

.index-race-arrow {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #f4f6f8;
	color: #438dde;
	font-size: 21px;
	transition: background-color .15s ease;
}

.index-race-card:hover .index-race-arrow {
	background: #eaf3fc;
}


/* Telefon */

@media (max-width: 640px) {

	.index-page {
		margin-top: 22px;
	}

	.index-header h1 {
		font-size: 28px;
	}

	.index-race-card {
		grid-template-columns: 1fr auto;
		gap: 5px 12px;
		padding: 17px 18px;
	}

	.index-race-date {
		grid-column: 1;
		font-size: 13px;
	}

	.index-race-name {
		grid-column: 1;
		font-size: 17px;
	}

	.index-race-arrow {
		grid-column: 2;
		grid-row: 1 / span 2;
	}
}