.vvg-gallery-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.vvg-featured-video iframe {
    width: 100%;
    height: 500px;
    margin-bottom: 30px;
}
.vvg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.vvg-thumbnail {
    cursor: pointer;
    text-align: center;
}
.vvg-thumbnail img {
    width: 100%;
    border-radius: 8px;
}
.vvg-thumbnail h3 {
    margin: 10px 0 5px;
}
.vvg-thumbnail p {
    font-size: 14px;
    color: #666;
}
@media (max-width: 768px) {
    .vvg-featured-video iframe {
        height: 300px;
    }
    .vvg-grid {
        grid-template-columns: 1fr;
    }
}