        .tournament-cell {
            display: flex;
            flex-direction: column;
            gap: 0.15rem;
        }

        .tournament-mobile-meta {
            display: none;
            font-size: 0.8rem;
            color: #7a7a7a;
            line-height: 1.2;
        }

        @media screen and (max-width: 768px) {
            .tournaments-table {
                width: 100%;
                table-layout: fixed;
            }

            .tournaments-table th:not(:nth-child(2)),
            .tournaments-table td:not(:nth-child(2)) {
                display: none;
            }

            .tournaments-table th:nth-child(2),
            .tournaments-table td:nth-child(2) {
                width: 100%;
            }

            .tournament-name-link {
                display: block;
                max-width: 100%;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }

            .tournament-mobile-meta {
                display: grid;
                grid-template-columns: repeat(3, minmax(0, 1fr));
                gap: 0.25rem;
                margin-top: 0.35rem;
                padding-top: 0.35rem;
                border-top: 1px solid #e5e5e5;
            }

            .tournament-mobile-meta > span {
                text-align: center;
            }

            .tournament-mobile-meta > span + span {
                border-left: 1px solid #e5e5e5;
            }
        }