.tournament-card {
    border: 1px solid #b3b3b4;
    border-radius: 16px;
    align-items: flex-start;
    background: #ffffff;
    color: inherit;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 14px;
    margin-left: auto;
    margin-right: auto;
    padding: 24px 26px;
    text-decoration: none;
    transition: background-color 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
    width: 100%;
}
.tournament-card:hover {
    background: #fbfcfd;
    border-color: #2e2e2e;
    box-shadow: 0 6px 18px rgba(26, 41, 55, 0.12);
}
.tournament-card:focus-visible {
    box-shadow: 0 0 0 3px rgba(73, 126, 176, 0.28);
    outline: none;
}
.tournament-card-details {
    min-width: 0;
}
.tournament-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 10px;
}
.tournament-card-icon {
    flex: 0 0 auto;
    margin-left: auto;
    height: 100%;
    max-width: 150px;
    object-fit: contain;
}
.tournament-meta {
    color: #4f5d68;
    margin-bottom: 4px;
}
.tournament-meta strong {
    color: #2f3942;
}
.tournament-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}
.tournament-badge {
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1;
    padding: 6px 9px;
}
.source-badge {
    background: #eef2f5;
    color: #47515b;
}
.status-upcoming {
    background: #e7f5ee;
    color: #17613d;
}
.status-ongoing {
    background: #fff3cd;
    color: #7a5a00;
}
.status-past {
    background: #eef0f2;
    color: #59636d;
}

@media (max-width: 500px) {
    .tournament-card-icon {
        max-width: 100px;
    }
}