.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.video-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.video-card h3 {
    padding: 16px;
    margin: 0;
    font-size: 1.1em;
}

.video-card p {
    padding: 0 16px 16px;
    margin: 0;
    color: #666;
}


.wevius-video-single h2 {
    margin-top: 20px;
    font-size: 1.8em;
}

.wevius-video-summary,
.wevius-video-lyrics {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.wevius-video-summary h3,
.wevius-video-lyrics h3 {
    margin-bottom: 10px;
}

.wevius-video-player iframe {
    max-width: 100%;
}