.team-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.team-label .logo {
    height: 100px;
    aspect-ratio: 1;
    background: #ffffff;
    padding: 8px;
    border-radius: 50%;
}

.team-label .logo > img {
    height: 100%;
    width: 100%;
}

.team-label .team-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.team-label.home .dot, .team-label.home .logo {
    background: var(--home);
}
.team-label.away .dot, .team-label.away .logo {
    background: var(--away);
}