.wisal-pf-section {
    padding: 20px 16px;
    border-top: 1px solid #eee;
    margin-top: 20px;
}
.wisal-pf-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
}

.wisal-pf-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
}
.wisal-pf-scroll::-webkit-scrollbar { height: 4px; }
.wisal-pf-scroll::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 4px; }

.wisal-pf-card {
    position: relative;
    flex: 0 0 auto;
    width: 130px;
    height: 180px;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
    text-decoration: none;
    scroll-snap-align: start;
    display: block;
}

.wisal-pf-media {
    width: 100%;
    height: 100%;
    position: relative;
}
.wisal-pf-media img,
.wisal-pf-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.wisal-pf-no-media {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-size: 24px;
    background: #f1f5f9;
}

.wisal-pf-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 28px;
    opacity: .85;
    pointer-events: none;
    text-shadow: 0 2px 6px rgba(0,0,0,.4);
}

.wisal-pf-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 10px;
    padding: 8px;
    background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}
.wisal-pf-stats i { margin-right: 3px; font-size: 11px; }