﻿/* ===== VIDEO SIDEBAR ===== */

.video-sidebar {
    background: #fff;
    border-radius: 24px;
    padding: 18px 18px 14px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
    position: sticky;
    top: 90px;
}

.video-sidebar__title {
    font-family: "Inter", sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.15;
    color: #1f2937;
    margin-bottom: 18px;
}

.video-sidebar-featured {
    display: block;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px dashed #d9dee5;
}

.video-sidebar-featured__thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    background: #f3f4f6;
    margin-bottom: 14px;
}

    .video-sidebar-featured__thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.video-sidebar-featured__thumb-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #6b7280;
    font-size: 14px;
}

.video-sidebar-featured__name {
    font-family: "Inter", sans-serif;
    font-size: 1.2em;
    line-height: 1.35;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 10px;
    text-align:justify
}

.video-sidebar-featured__category,
.video-sidebar-item__category {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #17925e;
    margin-bottom: 8px;
}

.video-sidebar-featured__meta-row,
.video-sidebar-item__meta-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.4;
}

.video-sidebar-featured__meta-row span,
.video-sidebar-item__meta-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.video-sidebar-list {
    display: flex;
    flex-direction: column;
}

.video-sidebar-item {
    display: block;
    padding: 16px 0;
    border-bottom: 1px dashed #d9dee5;
    transition: transform .18s ease;
}

    .video-sidebar-item:hover {
        transform: translateX(4px);
    }

    .video-sidebar-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

.video-sidebar-item__name {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 10px;
}

@media (max-width: 1199.98px) {
    .video-sidebar__title {
        font-size: 26px;
    }

    .video-sidebar-featured__name {
        font-size: 20px;
    }

    .video-sidebar-item__name {
        font-size: 18px;
    }
}

@media (max-width: 991.98px) {
    .video-sidebar {
        position: static;
        top: auto;
    }
}

@media (max-width: 575.98px) {
    .video-sidebar__title {
        font-size: 22px;
    }

    .video-sidebar-featured__name {
        font-size: 19px;
    }

    .video-sidebar-item__name {
        font-size: 17px;
    }

    .video-sidebar-featured__meta-row,
    .video-sidebar-item__meta-row {
        gap: 12px;
        font-size: 14px;
    }
}