.rcc-youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.rcc-video-card {
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,.1);
    transition: transform .2s ease;
}

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

.rcc-video-card img {
    width: 100%;
    display: block;
}

.rcc-video-title {
    display: block;
    padding: 10px;
    font-weight: 600;
    font-size: 0.95rem;
}

.youtube-live-banner {
    background: #dcac2e;
    color: black;
    padding: 15px;
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    width: 100%;
    z-index: 9999;
}