:root {
    --Accent-Default: #00B1BA;
    --Text-Dark: #292A2A;
    --BG-Gray: #F3F4F5;
    --Gray: #DEE2E3;
    --White: white;
}

* { box-sizing: border-box; }

.videos-section {
    background: var(--White);
    padding: 20px 0;
    font-family: 'Inter', sans-serif;
}

.videos-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 0px;
}

/* ВЕРХНЯЯ СТРОКА */
.videos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 24px;
}

.videos-left-side {
    display: flex;
    align-items: center;
    gap: 24px; /* Отступ 24px между заголовком и блоком Rutube */
}

.videos-main-title {
    color: var(--Text-Dark) !important;
    font-size: 40px;
    font-weight: 600;
    margin: 0;
    line-height: 1.1;
}

/* БЛОК ПОДПИСКИ RUTUBE */
.rutube-subscribe-block {
    padding: 12px 16px;
    background: var(--BG-Gray);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    text-decoration: none !important;
    transition: background 0.2s;
}

.rutube-subscribe-block:hover {
    background: #e8eaec;
}

.rutube-subscribe-block .text-black {
    color: var(--Text-Dark) !important;
    font-size: 16px;
    font-weight: 500;
    line-height: 22.4px;
}

.rutube-subscribe-block .text-accent {
    color: var(--Accent-Default) !important;
    font-size: 16px;
    font-weight: 500;
    line-height: 22.4px;
}

/* СТРЕЛКИ */
.videos-nav {
    display: flex;
    gap: 12px;
}

.video-arrow {
    width: 48px;
    height: 48px;
    background: var(--BG-Gray);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, transform 0.1s;
}

.video-arrow:hover {
    background: #e1e4e6;
}

.video-arrow:active {
    transform: scale(0.95);
}

/* БЛОК ОПИСАНИЯ */
.videos-description-block {
    color: var(--Text-Dark) !important;
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 40px;
    max-width: 800px;
}

/* СЛАЙДЕР И ВИДЕО (ВЕРТИКАЛЬНЫЕ SHORTS 9:16) */
.videos-swiper {
    overflow: hidden;
    padding-bottom: 5px;
}

.video-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-top: 177.78%; /* 9:16 Соотношение для вертикальных видео */
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.video-iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* АДАПТИВНОСТЬ (МОБИЛКИ) */
@media (max-width: 768px) {
    .videos-section {
        padding: 48px 0;
    }
    .videos-header {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 16px;
    }
    .videos-left-side {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .videos-main-title {
        font-size: 28px;
    }
    .rutube-subscribe-block .text-black,
    .rutube-subscribe-block .text-accent {
        font-size: 14px;
    }
    .videos-description-block {
        font-size: 14px;
        margin-bottom: 24px;
    }
}