.svg-011b3ad9-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.svg-011b3ad9-item {
    display: flex;
    flex-direction: column;
}

.svg-011b3ad9-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.svg-011b3ad9-thumb-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    line-height: 0;
}

.svg-011b3ad9-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.svg-011b3ad9-thumb-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.svg-011b3ad9-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.3s;
    pointer-events: none;
}

.svg-011b3ad9-play i,
.svg-011b3ad9-play svg {
    display: block;
    text-align: center;
}

.svg-011b3ad9-play i.fa-play,
.svg-011b3ad9-play svg {
    transform: translateX(1px);
}

/* Custom Lightbox Styles */
.svg-011b3ad9-lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svg-011b3ad9-lightbox-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.svg-011b3ad9-lightbox-content iframe {
    width: 100%;
    height: 100%;
}

.svg-011b3ad9-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    z-index: 1000000;
    transition: color 0.3s;
}

.svg-011b3ad9-lightbox-close:hover {
    color: #ff3333;
}

@media (max-width: 767px) {
    .svg-011b3ad9-grid {
        grid-template-columns: 1fr;
    }
    .svg-011b3ad9-lightbox-content {
        width: 95%;
    }
}
