

#trending {
    height: 180px;
    overflow-x: scroll; 
    overflow-y: hidden; 
    margin-bottom: 20px;
    display: flex; 
    gap: 15px; 
    padding: 0px 10px;
    scroll-behavior: smooth; 
    white-space: nowrap; 
    scrollbar-width: none; 
    -ms-overflow-style: none; 
}
#trending::-webkit-scrollbar {
    display: none;
}
/* 
#trending > a {
    width: 250px;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: black;
    display: flex;
    align-items: flex-end;
    flex-shrink: 0;
}

#trending > a > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    filter: brightness(50%);
    transition: filter 0.4s;
}

#trending > a:hover > img {
    filter: brightness(70%);
}

#trending > a > div {
    position: absolute;
    display: flex;
    flex-direction: column;
    margin: 5px;
}

#trending > a h2 {
    color: #FFF;
    font-size: 1rem;
    font-weight: 200;
    z-index: 10;
    margin-bottom: 5px;
}

#trending > a > div > span {
    display: flex;
    align-items: center;
    height: 20px;
    width: 100%;
}

#trending > a > div > span > img {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    object-fit: cover;
    filter: brightness(100%);
    margin-right: 5px;
}

#trending > a > div > span > p {
    color: #FFF;
    font-size: 0.8rem;
    font-weight: bold;
} */