.vpg-9c281286-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.vpg-9c281286-card {
    border-radius: 8px;
    overflow: hidden;
    background-color: #1a1a1a;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.vpg-9c281286-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.vpg-9c281286-thumbnail-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background-color: #000;
}

.vpg-9c281286-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vpg-9c281286-card:hover .vpg-9c281286-thumbnail {
    transform: scale(1.05);
}

.vpg-9c281286-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    z-index: 2;
}

.vpg-9c281286-play-icon svg {
    fill: #ffffff;
    width: 28px;
    height: 28px;
    margin-left: 2px; /* Visual centering */
}

.vpg-9c281286-card:hover .vpg-9c281286-play-icon {
    background-color: #00adef; /* Vimeo blue */
    transform: translate(-50%, -50%) scale(1.1);
}

.vpg-9c281286-info {
    padding: 15px;
}

.vpg-9c281286-card-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #aaaaaa;
    display: block;
    margin-bottom: 5px;
}

.vpg-9c281286-card-title {
    font-size: 1.1rem;
    margin: 0;
    color: #ffffff;
    line-height: 1.4;
}

/* Modal lightbox */
.vpg-9c281286-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

body.admin-bar .vpg-9c281286-lightbox {
    top: var(--wp-admin--admin-bar--height, 32px);
}
@media screen and (max-width: 782px) {
    body.admin-bar .vpg-9c281286-lightbox {
        top: 46px;
    }
}

.vpg-9c281286-lightbox.active {
    opacity: 1;
    pointer-events: auto;
}

.vpg-9c281286-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 960px;
    aspect-ratio: 16/9;
    background: #000;
}

.vpg-9c281286-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    outline: none;
}

.vpg-9c281286-lightbox-iframe {
    width: 100%;
    height: 100%;
    border: none;
}
