.yvf-videos {
    gap: 20px;
    margin-top: 20px;
}

.yvf-layout-grid {
    display: grid;
    width: 100%;
}

.yvf-layout-grid.yvf-columns-1 {
    grid-template-columns: repeat(1, 1fr);
}
.yvf-layout-grid.yvf-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}
.yvf-layout-grid.yvf-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}
.yvf-layout-grid.yvf-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

.yvf-layout-column {
    display: flex;
    flex-direction: column;
}

.yvf-video {
    background: #fff;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.yvf-video iframe {
    width: 100%;
    height: 200px;
}

.yvf-video:hover {
    transform: scale(1.02);
}

.yvf-video p {
    font-weight: 600;
    font-size: 14px;
    margin-top: 10px;
}

#yvf-load-more {
    padding: 10px 20px;
    background: #f90;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#yvf-load-more:hover {
    background: #e68000;
}
