.ranking {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 24px;

}

.ranking-card {

    background: var(--surface);

    border-radius: 16px;

    padding: 24px;

    box-shadow: var(--shadow);

}

.ranking-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 24px;

}

.ranking-header h2 {

    font-size: 20px;

}

.ranking-header a {

    color: var(--primary);

    font-size: 14px;

}

.ranking-item {

    margin-bottom: 22px;

}

.ranking-info {

    display: flex;

    justify-content: space-between;

    margin-bottom: 10px;

}

.progress {

    height: 8px;

    background: var(--border);

    border-radius: 999px;

    overflow: hidden;

}

.progress-bar {

    height: 100%;

    background: var(--primary);

    border-radius: 999px;

}

.table-responsive {

    width: 100%;

    overflow-x: auto;

    -webkit-overflow-scrolling: touch;

}