.sold-for-cards-viewport {
    overflow: hidden;
    width: 100%;
    padding: 2rem 0;
}

.sold-for-cards-track {
    display: flex;
    width: 200%;
    justify-content: space-around;
    animation: scroll-left 30s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

.sold-for-card {
    border-radius: .5rem;
    box-shadow: 0 0 1rem 0 var(--color-separator-border);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 20%;
    min-width: 20rem;
    height: min-content;
    margin: 0 1rem;
    background: var(--color-card-background-1);
    gap: .5rem;
}

.sold-for-card-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: .5rem;
    width: 100%;
    align-items: center;
}

.sold-badge {
    display: inline-block;
    border: .1rem solid var(--green-2);
    color: var(--green-2);
    font-weight: 600;
    border-radius: 1rem;
    padding: .2rem 1.5rem;
}

.sold-badge::before {
    content: '✔';
    font-size: 1rem;
    margin-right: .3rem;
    color: var(--green-2);
}

.sold-text {
    font-size: 1.5rem;
    white-space: nowrap;
}

.sold-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-2);
    margin-left: .5rem;
}

.site-link {
    color: var(--blue-2);
    text-decoration: none;
    margin-top: .5rem;
    display: block;
}

.sold-for-cards-track:hover {
    animation-play-state: paused;
}

@media (width < 1400px) {
    .sold-text, .sold-price {
        font-size: 1rem;
    }

    .site-link {
        margin-top: .2rem;
    }

    .sold-for-card {
        padding: 1rem;
        min-width: 16.5rem;
    }
}