/* Блок для видео после our-products */
.video-showcase {
    padding: 0 0 60px 0;
}

.video-showcase__container {
    max-width: 1168px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-showcase__title {
    font-size: 36px;
    text-align: left;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #000000;
    line-height: 1.2;
    font-weight: 700;
}

.video-showcase__subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 40px;
    text-align: left;
    max-width: 900px;
}

.video-showcase__wrapper {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.video-showcase__player {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

/* Адаптивность для планшетов */
@media (max-width: 768px) {
    .video-showcase {
        padding: 40px 0;
    }
    
    .video-showcase__container {
        padding: 0 15px;
    }
    
    .video-showcase__title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .video-showcase__subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .video-showcase__wrapper {
        border-radius: 8px;
    }
}

/* Адаптивность для мобильных */
@media (max-width: 480px) {
    .video-showcase {
        padding: 30px 0;
    }
    
    .video-showcase__container {
        padding: 0 10px;
    }
    
    .video-showcase__title {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .video-showcase__subtitle {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .video-showcase__wrapper {
        border-radius: 6px;
    }
}

