/* AMUM Video Styles - grid + filmstrip */

.amum-videos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-start;
}

.amum-video-item {
    width: calc(20% - 12px);
    /* 5 across */
    min-width: 200px;
    background: #0f0f0f;
    color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.amum-video-thumb {
    position: relative;
    padding-top: 56%;
    /* 16:9 */
    background-position: center;
    background-size: cover;
}

.amum-play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    font-size: 28px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    cursor: pointer;
}

.amum-video-details {
    padding: 10px;
    background: #fff;
    color: #111;
}

.amum-video-details h4 {
    margin: 0 0 6px;
    font-size: 16px;
    color: #222;
}

.amum-video-details .amum-artist {
    font-size: 13px;
    color: #555;
}

.amum-video-details .amum-duration {
    font-size: 12px;
    color: #888;
    margin-top: 6px;
}

@media (max-width:1100px) {
    .amum-video-item {
        width: calc(33.333% - 12px);
    }

    /* 3 across on medium screens */
}

@media (max-width:700px) {
    .amum-video-item {
        width: 100%;
    }

    /* 1 across on small screens */
}

/* Filmstrip */
.amum-videos-filmstrip {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.amum-videos-filmstrip .amum-row {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 6px 0;
}

.amum-video-item.film {
    background: transparent;
    color: #fff;
    min-width: 220px;
}

.amum-video-item.film .meta {
    padding-top: 8px;
    color: #fff;
}