/* ===============================
   Сетка видео
=============================== */
.youtube-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    justify-content: center;
    margin: 0 auto;
}

/* ===============================
   Каждый блок видео
=============================== */
.youtube-item {
    position: relative;
    cursor: pointer;
    width: 360px;
    max-width: 100%;
    aspect-ratio: 16 / 9; /* фиксируем пропорции видео */
    display: flex;
    flex-direction: column;
}

/* ===============================
   Контейнер превью видео с серым фоном
=============================== */
.youtube-item .video-preview {
    position: relative;
    width: 100%;
    flex-shrink: 0;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
}

/* ===============================
   Плейсхолдер (серый фон до загрузки видео)
=============================== */
.youtube-item .video-preview .placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ccc; /* серый фон */
    z-index: 0;
}

/* ===============================
   Превью видео (изображение)
=============================== */
.youtube-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* ===============================
   Кнопка воспроизведения (YouTube style)
=============================== */
.youtube-item .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    width: 68px;
    height: 48px;

    background: rgba(255, 0, 0, 0.95); /* красная кнопка */
    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;

    pointer-events: none;
    z-index: 2; /* кнопка сверху */
}

/* Белый треугольник */
.youtube-item .play-button::after {
    content: '';
    margin-left: 2px;
    width: 0;
    height: 0;
    border-left: 18px solid #fff;
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

/* Hover-эффект */
.youtube-item:hover .play-button {
    transform: translate(-50%, -50%) scale(1.08);
    background: rgb(255, 0, 0);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.45);
}

/* ===============================
   Название видео (фиксируем место)
=============================== */
.youtube-item .youtube-title {
    margin-top: 6px;
    font-size: 14px;
    text-align: center;
    color: #333;
    font-family: Arial, sans-serif;

    min-height: 20px; /* фиксируем высоту, чтобы сетка не прыгала */
    overflow: hidden;
}

/* ===============================
   iframe видео
=============================== */
.youtube-item iframe {
    position: absolute; /* поверх плейсхолдера, но под кнопкой */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
    z-index: 1; /* под кнопкой play */
}

/* ===============================
   Адаптивность
=============================== */
@media (max-width: 900px) {
    .youtube-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .youtube-grid {
        grid-template-columns: 1fr;
    }
}
