.ps-wrapper-a0499ab8 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.ps-track-a0499ab8 {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    flex: 1;
    padding: 10px 0;
    scroll-behavior: smooth;
}

.ps-track-a0499ab8::-webkit-scrollbar {
    display: none;
}

.ps-card {
    flex: 0 0 calc(33.333% - 14px);
    scroll-snap-align: start;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

@media (max-width: 1024px) {
    .ps-card { flex: 0 0 calc(50% - 10px); }
}

@media (max-width: 767px) {
    .ps-card { flex: 0 0 100%; }
}

.ps-img {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
}

.ps-content {
    padding: 20px;
}

.ps-title {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: #333;
}

.ps-link {
    text-decoration: none;
    color: #0073aa;
    font-weight: bold;
}

.ps-arrow {
    background: transparent;
    border: 2px solid #333;
    color: #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.ps-arrow:hover {
    background: #333;
    color: #fff;
}