#player--reel {
    background-color: #3b3b3b;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}
.player--reel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 12, 0.3);
    backdrop-filter: blur(6px) saturate(120%);
    -webkit-backdrop-filter: blur(6px) saturate(120%);
    z-index: 1;
}
.player--reel-content {
    position: relative;
    z-index: 2;
}
.return--button {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
}
.return--button:hover {
    color: #ffffff;
    opacity: 0.8;
}

.reel--card-item {
    background: white;
    width: 100%;
    position: relative;
}
.reel--card-item .reel--image-wrapper {
    position: relative;
}

.reel--card-item .reel--img {
    border-radius: 20px;
    aspect-ratio: 9 / 16;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    max-height: 343px;
}
.reel--title {
    color: #3b3b3b;
    font-size: 16px;
    font-weight: 600;
    -webkit-line-clamp: 2;
    white-space: normal;
    margin-top: 8px;
}
.reel--icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reel--item-vedio {
    display: flex;
    justify-content: center;
}
.reels--video {
    aspect-ratio: 9 / 16;
}
@media screen and (max-width: 767px) {
    .reel--card-item .reel--img {
        max-width: 220px;
        max-height: 334px;
    }
    .reel--cards {
        display: flex;
        align-items: center;
        gap: 16px;
        overflow-x: auto;
        scrollbar-width: none;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
    }
    .reel--cards::-webkit-scrollbar {
        display: none;
    }
    .reel--card-item {
        min-width: 220px;
    }
    .reel--title {
        position: absolute;
        bottom: 10px;
        left: 10px;
        right: 10px;
        color: #fff;
        font-size: 14px;
        margin-top: 0px;
        font-weight: 500;
    }
    .re-cmn--heading {
        font-size: 16px;
        margin-bottom: 12px;
    }
}
