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

.rotating-cards-track {
    display: flex;
    gap: 1.5rem;
    animation: none;
    will-change: transform;
}

.rotating-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-radius: .5rem;
    box-shadow: var(--box-shadow-1);
    background: var(--color-card-background-1);
    padding: 1rem;
    gap: 0.5rem;
}

.rotating-card-item {
    display: flex;
    justify-content: space-between;
    align-items:center;
    gap: 1rem;
    width: 100%;
    white-space: nowrap;
}

.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;
}

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

.site-link {
    color: var(--blue-2);
    text-decoration: none;
}

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

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

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