/* =========================================
   FOREST & HILLS REELS
========================================= */

.fh-reels-section {
    padding: 60px 30px;
    background: #fffaf2;
    overflow: hidden;
}

.fh-reels-header {
    max-width: 1200px;
    margin: 0 auto 30px;
}

.fh-section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #a86a18;
    margin-bottom: 8px;
}

.fh-reels-header h2 {
    margin: 0 0 8px;
    font-size: 32px;
    font-weight: 600;
    color: #2d241b;
}

.fh-reels-header p {
    margin: 0;
    color: #777;
    font-size: 15px;
}


/* REEL WRAPPER */

.fh-reels-wrapper {
    position: relative;
    max-width: 1400px;
    margin: auto;
}


/* HORIZONTAL SCROLLER */

.fh-reels-container {
    display: flex;
    gap: 16px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-behavior: smooth;

    padding: 5px 5px 15px;

    scrollbar-width: none;
}

.fh-reels-container::-webkit-scrollbar {
    display: none;
}


/* REEL CARD */

.fh-reel-card {
    flex: 0 0 220px;

    height: 390px;

    position: relative;

    overflow: hidden;

    border-radius: 14px;

    background: #eee;

    box-shadow: 0 5px 18px rgba(0,0,0,0.12);
}


/* VIDEO */

.fh-reel-video {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* DARK GRADIENT */

.fh-reel-overlay {
    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    padding: 45px 15px 15px;

    background: linear-gradient(
        transparent,
        rgba(0,0,0,0.75)
    );

    color: #fff;
}


/* TITLE */

.fh-reel-title {
    font-size: 17px;
    font-weight: 600;

    margin-bottom: 8px;

    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}


/* WATCH */

.fh-reel-watch {
    font-size: 13px;
    opacity: 0.95;
}

.fh-reel-watch i {
    margin-left: 5px;
}


/* ARROWS */

.fh-reel-arrow {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 42px;
    height: 42px;

    border: none;

    border-radius: 50%;

    background: rgba(255,255,255,0.95);

    box-shadow: 0 3px 12px rgba(0,0,0,0.18);

    z-index: 10;

    cursor: pointer;

    font-size: 20px;
}

.fh-reel-prev {
    left: -20px;
}

.fh-reel-next {
    right: -20px;
}


/* MOBILE */

@media (max-width: 768px) {

    .fh-reels-section {
        padding: 40px 15px;
    }

    .fh-reels-header h2 {
        font-size: 25px;
    }

    .fh-reel-card {
        flex: 0 0 180px;
        height: 320px;
    }

    .fh-reel-prev,
    .fh-reel-next {
        display: none;
    }

}