.pdr-wrapper {
    overflow: hidden;
    padding: 30px 0;
    background: #f5f3e8;
}

.pdr-row {
    overflow: hidden;
    white-space: nowrap;
    margin: 15px 0;
}

.pdr-track {
    display: inline-flex;
    gap: 20px;
}

.pdr-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.pdr-card img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
}

.left .pdr-track {
    animation: scrollLeft 25s linear infinite;
}

.right .pdr-track {
    animation: scrollRight 25s linear infinite;
}

@keyframes scrollLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes scrollRight {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

.pdr-row:hover .pdr-track {
    animation-play-state: paused;
}
