.match-link {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: .75rem 0;
    border-radius: .5rem;
    transition: background-color .2s ease;
}

.match-link:hover {
    background-color: #f5f7fa;
}

.match-meta {
    font-size: .75rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: .4rem;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.team-name {
    font-size: .875rem;
    font-weight: 500;
    color: #1f2937;
}

.match-link:hover .team-name {
    
    text-underline-offset: 3px;
}

.team-logo {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.vs {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    min-width: 48px;
    text-align: center;
}


