.hero__panel {
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
}
.panel-card {
	background: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-2xl);
	overflow: hidden;
	box-shadow: var(--shadow-md);
}
.panel-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: var(--space-4) var(--space-5);
	border-bottom: 1px solid var(--color-divider);
}
.panel-card__title {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: var(--text-sm);
	color: var(--color-primary);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}
.panel-card__badge {
	font-size: var(--text-xs);
	font-weight: 600;
	color: var(--color-text-muted);
	background: var(--color-surface-offset);
	padding: 2px var(--space-2);
	border-radius: var(--radius-full);
}

/* Standings table */
.standings-table {
	width: 100%;
}
.standings-table th {
	font-size: var(--text-xs);
	font-weight: 700;
	color: var(--color-text-faint);
	text-transform: uppercase;
	letter-spacing: 0.07em;
	padding: var(--space-2) var(--space-5);
	text-align: center;
}
.standings-table th:first-child { text-align: left; }
.standings-table td {
	padding: var(--space-2) var(--space-5);
	font-size: var(--text-sm);
	font-variant-numeric: tabular-nums;
	text-align: center;
	border-top: 1px solid var(--color-divider);
	color: var(--color-text-muted);
}
.standings-table td:first-child { text-align: left; }
.standings-table tr:hover td { background: var(--color-surface-offset); }
.standings-table tr:hover td:first-child { border-radius: var(--radius-md) 0 0 var(--radius-md); }
.standings-table tr:hover td:last-child  { border-radius: 0 var(--radius-md) var(--radius-md) 0; }
.standings-row__cell {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: var(--space-2);
}
.standings-row__team {
	display: flex; align-items: center; gap: var(--space-3);
	min-width: 0;
}
.standings-row__pos {
	font-size: var(--text-xs);
	font-weight: 700;
	color: var(--color-text-faint);
	width: 16px;
}
.standings-row__pos.top { color: var(--color-primary); }
.standings-row__name {
	font-weight: 600;
	color: var(--color-text);
	font-size: var(--text-sm);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 120px;
}
.standings-row__pts {
	font-weight: 700;
	color: var(--color-text);
}
.standings-row__badge {
	width: 22px; height: 22px;
	background: var(--color-surface-offset);
	border-radius: var(--radius-sm);
	display: flex; align-items: center; justify-content: center;
	font-size: 10px; font-weight: 800;
	color: var(--color-primary);
	flex-shrink: 0;
}

/* Matches */
.matches-list { padding: var(--space-2) 0; }
.match-row {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: var(--space-3);
	padding: var(--space-3) var(--space-5);
	transition: background var(--transition);
	cursor: default;
}
.match-row:hover { background: var(--color-surface-offset); }
.match-row + .match-row { border-top: 1px solid var(--color-divider); }
.match-team {
	font-size: var(--text-sm);
	font-weight: 600;
	color: var(--color-text);
}
.match-team--away { text-align: right; }
.match-vs {
	font-size: var(--text-xs);
	font-weight: 700;
	color: var(--color-text-faint);
	background: var(--color-surface-offset);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	padding: 2px var(--space-2);
	text-align: center;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
}