.wm-play-section {
    width: 100%;
    padding: 30px 0;
    box-sizing: border-box;
}

.wm-play-section *,
.wm-play-section *::before,
.wm-play-section *::after {
    box-sizing: border-box;
}

.wm-play-gallery-rows {
    display: grid;
    gap: 20px;
}

.wm-play-gallery-row {
    display: grid;
    gap: 20px;
    align-items: stretch;
}

.wm-play-row-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wm-play-row-full {
    grid-template-columns: 1fr;
}

.wm-play-card {
    position: relative;
    width: 100%;
    height: clamp(260px, 38vw, 520px);
    min-height: 260px;
    overflow: hidden;
    margin: 0;
    border-radius: 0;
    background: #ddd;
}

.wm-play-row-full .wm-play-card {
    height: clamp(320px, 48vw, 720px);
}

.wm-play-trigger {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
    background: transparent;
    cursor: pointer;
}

.wm-play-trigger img,
.wm-play-card img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: none;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: 0;
}

.wm-play-content {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 17px;
    z-index: 2;
    pointer-events: none;
}

.wm-play-content h3 {
    margin: 0;
    color: #fff;
    font-size: clamp(18px, 2vw, 28px);
    line-height: 1.15;
    font-weight: 800;
    text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.wm-play-empty {
    margin: 0;
}

/* Tablet */
@media (max-width: 991px) {
    .wm-play-card,
    .wm-play-row-full .wm-play-card {
        height: clamp(240px, 45vw, 420px);
    }
}

/* Mobile */
@media (max-width: 767px) {
    .wm-play-section {
        padding: 34px 0;
    }

    .wm-play-row-two,
    .wm-play-row-full {
        grid-template-columns: 1fr;
    }

    .wm-play-card,
    .wm-play-row-full .wm-play-card {
        height: clamp(220px, 70vw, 340px);
        border-radius: 0;
    }
}