.insight_container{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.insight_title{
    font-size: 26px;
    color: #333;
    font-weight: 500;
    margin-right: 30px;
}

.insight{
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
}

.insight::before{
    content: "";
    position: absolute;
    left: 0px;
    top: 0%;
    height: 100%;
    width: 2px;
    background-color: #e0e0e0;
}

.insight:hover a{
    color: #0073aa;
}

.insight:hover::before{
    background-color: #0073aa;
}

.insight_shadow{
    position: absolute;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 120px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0) 10%, rgba(255, 255, 255, 1));
 
}

.insights_container{
    display: grid;
    grid-template-columns: auto 1fr;
}

.insights_list{
    display: flex;
}

.insight{
    min-width: 30%;
}

.insights_list_container{
    overflow: hidden;
    scroll-behavior: smooth;
}

.insight_controls{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 18px;
}

.insight_button{
    outline: none;
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    margin: 0px 24px;

    > img{
        width: 12px;
    }
}

@media (max-width: 1140px){
    .insight{
        min-width: 30%;
    }
}

@media (max-width: 768px){
    .insight{
        min-width: 45%;
    }

    .insight_title{
        display: none;
    }
}