.results {
    min-width: 75vw;
}

.empty {
    color: var(--muted);
    margin-top: 1rem;
}
@media (max-width: 768px) {

  .tournament {
    background: var(--card);
    border-radius: 16px;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .tournament h2 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }

  .tournament .meta {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 0.6rem;
  }

  .tournament-link {
    display: inline-block;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }

  table,
  thead,
  tbody,
  tr,
  th,
  td {
    display: block;
    width: 100%;
  }

  thead {
    display: none;
  }

  tr {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
  }

  tr:last-child {
    border-bottom: none;
  }

  td {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 0;
    font-size: 0.95rem;
  }

  td::before {
    content: attr(data-label);
    color: var(--muted);
    font-size: 0.8rem;
    white-space: nowrap;
  }

  .col-score {
    font-weight: 600;
  }

  .col-place {
    font-weight: 700;
  }
}
