.home-recent-reshuffles-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-recent-reshuffle-item {
    display: grid;
    grid-template-columns: minmax(140px, 1fr) minmax(160px, 1.2fr) minmax(160px, 1fr);
    gap: 12px 16px;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid var(--border-color, rgba(0, 0, 0, 0.08));
    border-radius: 10px;
    background: var(--bg-color, transparent);
}

.home-recent-reshuffle-player {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
}

.home-recent-reshuffle-flag {
    width: 20px;
    height: 14px;
    object-fit: cover;
    border-radius: 2px;
    flex-shrink: 0;
}

.home-recent-reshuffle-player-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-recent-reshuffle-player-link:hover {
    color: var(--accent-color, #2563eb);
}

.home-recent-reshuffle-points-group {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.home-recent-reshuffle-points {
    padding: 2px 8px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.12);
    color: var(--accent-color, #2563eb);
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.home-recent-reshuffle-points--3m {
    background: rgba(234, 88, 12, 0.14);
    color: #ea580c;
}

[data-theme="dark"] .home-recent-reshuffle-points--3m {
    background: rgba(249, 115, 22, 0.18);
    color: #fb923c;
}

.home-recent-reshuffle-route {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex-wrap: wrap;
}

.home-recent-reshuffle-team {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    min-width: 0;
    max-width: 100%;
}

.home-recent-reshuffle-team-link {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.home-recent-reshuffle-team-link:hover {
    color: var(--accent-color, #2563eb);
}

.home-recent-reshuffle-team-link:hover .home-recent-reshuffle-team-name {
    text-decoration: underline;
}

.home-recent-reshuffle-team-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-recent-reshuffle-team-logo {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 3px;
}

.home-recent-reshuffle-team--fa {
    opacity: 0.75;
    font-style: italic;
}

.home-recent-reshuffle-arrow {
    color: var(--muted-text, #888);
    flex-shrink: 0;
}

.home-recent-reshuffle-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.home-recent-reshuffle-tournament {
    font-size: 0.95rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.home-recent-reshuffle-date {
    font-size: 0.82rem;
    color: var(--muted-text, #888);
}

@media (max-width: 900px) {
    .home-recent-reshuffle-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .home-recent-reshuffle-points-group {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .home-recent-reshuffle-item {
        padding: 10px 12px;
    }
}
