.balloria-webinar-videos {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

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

.video-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.video-item h3 {
    margin: 0 0 15px 0;
    font-size: 1.2em;
}

.video-thumbnail {
    margin-bottom: 15px;
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.video-locked {
	display: flex;
    flex-direction: row;
    justify-content: space-around;
    text-align: center;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 4px;
}

.video-locked .dashicons {
    font-size: 40px;
    color: #999;
    margin-bottom: 10px;
}

.video-locked .button {
    display: inline-block;
    padding: 10px 20px;
    background: #2271b1;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.video-locked .button:hover {
    background: #135e96;
}

.video-content {
    margin-top: 15px;
}

.video-content iframe {
    width: 100%;
    min-height: 200px;
    border: none;
    border-radius: 4px;
} 