.heats {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.heats__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}

.heats__title {
	margin: 0;
	font-size: 2rem;
	font-weight: 600;
}

.heats__nav {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.heats__nav-link {
	display: inline-flex;
	align-items: center;
	padding: 0.55rem 0.95rem;
	border-radius: 999px;
	background-color: #0f172a;
	color: #ffffff;
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.heats__nav-link:hover,
.heats__nav-link:focus {
	background-color: #1d4ed8;
	transform: translateY(-1px);
}

.heats__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 1.5rem;
}

.heats__card {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1.25rem;
	background-color: #ffffff;
	border-radius: 12px;
	box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.heats__card-header {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.heats__card-title {
	margin: 0;
	font-size: 1.5rem;
	font-weight: 600;
	color: #0f172a;
}

.heats__card-subtitle {
	margin: 0;
	font-size: 0.95rem;
	color: #52606d;
}

.heats__team-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.6rem;
}

.heats__team {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.65rem 0.8rem;
	border-radius: 10px;
	background-color: #f8fafc;
}

.heats__team-hold {
	min-width: 3.25rem;
	font-weight: 600;
	color: #0f172a;
}

.heats__team-name {
	flex: 1;
	color: #1f2933;
}

@media (max-width: 700px) {
	.heats__title {
		font-size: 1.5rem;
	}

	.heats__grid {
		grid-template-columns: 1fr;
	}
}
