/* ========================================
   📸 Snap Reels (YouTube Shorts)
   ======================================== */
.snap-reels-section {
    padding: 16px 0 10px 0;
}
.snap-reels-title {
    margin: 0 0 10px 6px;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
}
.snap-reels-wrapper {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 6px 2px 10px 2px;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
}
.snap-reels-wrapper::-webkit-scrollbar {
    display: none;
}
.snap-reels-item {
    flex: 0 0 220px;
    scroll-snap-align: start;
}
.snap-reels-media {
    position: relative;
    width: 100%;
    padding-top: 177.78%;
    background: #111;
    border-radius: 10px;
    overflow: hidden;
}
.snap-reels-media img,
.snap-reels-media video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.snap-reels-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 12px 10px;
    background: linear-gradient(0deg, rgba(0,0,0,0.75), rgba(0,0,0,0));
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-shadow: 0 2px 3px rgba(0,0,0,0.5);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}
body.light-mode .snap-reels-title {
    color: #000000;
}

/* Snap Reels - Responsive */
@media (max-width: 1200px) {
    .snap-reels-item {
        flex: 0 0 110px;
    }
    .snap-reels-title {
        font-size: 24px;
    }
    .snap-reels-overlay {
        font-size: 12px;
        padding: 8px 6px;
    }
}
@media (max-width: 992px) {
    .snap-reels-item {
        flex: 0 0 100px;
    }
    .snap-reels-title {
        font-size: 22px;
    }
    .snap-reels-overlay {
        font-size: 11px;
        padding: 7px 5px;
    }
}
@media (max-width: 768px) {
    .snap-reels-item {
        flex: 0 0 90px;
    }
    .snap-reels-title {
        font-size: 20px;
    }
    .snap-reels-overlay {
        font-size: 11px;
        padding: 6px 5px;
    }
}
@media (max-width: 480px) {
    .snap-reels-item {
        flex: 0 0 80px;
    }
    .snap-reels-title {
        font-size: 18px;
    }
    .snap-reels-overlay {
        font-size: 10px;
        padding: 5px 4px;
    }
}