.news_list_section {
    padding-top: 30px;
    padding-bottom: 80px;
}
.news_list_section [class*="advBanner"] {
    margin-top: 30px;
}
.news_list_section [class*="advBanner"] [class*="box"] {
    min-height: 182px;
}
ul.Categorylist {
    max-height: 600px;
    overflow: auto;
}
ul.Categorylist::-webkit-scrollbar {
    width: 2px;
}
.Categorylist li {
    margin-bottom: 4px;
}
.Categorylist li:last-child {
    margin-bottom: 0;
}
.Categorylist li a {
    padding: 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.Categorylist li a:hover {
    background: #F0F6F2;
}
.Categorylist li a img {
    width: 50px;
    min-width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background: #F0F6F2;
    border-radius: 10px;
    transition: all 0.4s;
}
.Categorylist li a:hover img {
    background: var(--light);
}
.Categorylist li a h6 {
    font-size: 18px;
    font-weight: 600;
    line-height: 130%;
    color: var(--dark);
    margin-bottom: 0;
}
@media (max-width:991px) {
    .news_list_section {
        padding-bottom: 60px;
    }
    .news_list_section [class*="advBanner"] [class*="box"] {
        min-height: 115px;
    }
    ul.Categorylist {
        max-height: 400px;
    }
    .Categorylist li a {
        padding: 5px;
        border-radius: 8px;
        gap: 8px;
    }
    .Categorylist li a img {
        width: 40px;
        min-width: 40px;
        height: 40px;
        padding: 8px;
        border-radius: 6px;
    }
    .Categorylist li a h6 {
        font-size: 14px;
    }
}
@media (max-width:767px) {
    .news_list_section {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .news_list_section [class*="advBanner"] {
        margin-top: 20px;
        margin-bottom: 20px;
    }
    ul.Categorylist {
        margin-bottom: 20px;
        display: flex;
        flex-wrap: nowrap;
        white-space: nowrap;
        gap: 6px;
        padding-bottom: 2px;
        overflow-x: auto;
    }
    ul.Categorylist::-webkit-scrollbar {
        height: 2px;
    }
}