#blogs {
    display: flex;
    gap: 32px;
    .aside-categry {
        position: sticky;
        top: 100px;
        height: max-content;
        width: 305px;
        border-radius: 12px 7px;
        background: #fff;
        box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.1);
        padding: 24px;
        .aside-categry-heading {
            color: #333;
            font-size: 24px;
            font-style: normal;
            font-weight: 700;
            line-height: normal;
            margin-bottom: 28px;
            padding-left: 5px;
        }
        .widget > ul > li + li {
            border: none;
            transition: all 0.3s;
        }
        .widget > ul > li > a {
            width: 100%;
            transition: all 0.3s;
            color: #3f3f3f;
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 1.44; /* 144.444% */
        }
        .widget > ul > li:hover,
        .widget > ul > li.active {
            border-radius: 8px;
            background: #f46200;
        }
        .widget > ul > li:hover > a,
        .widget > ul > li.active > a {
            color: #fff;
        }
        .widget > ul > li {
            padding-left: 10px;
        }
        .widget {
            margin-bottom: 0;
        }
    }
    .wapper-content {
        flex: 1 0 0;
        .list-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            column-gap: 20px;
            row-gap: 28px;
        }
    }
}
@media screen and (max-width: 849px) {
    #blogs {
        padding-top: 20px;
        flex-direction: column;
        .aside-categry {
            width: 100%;
            height: 75px;
            overflow: hidden;
            z-index: 10;
            top: 79px;
        }
        .aside-categry.active {
            height: max-content;
        }
        .wapper-content {
            .list-grid {
                grid-template-columns: repeat(1, 1fr);
            }
        }
    }
    .page-template-page-tintuc #blogs .aside-categry-heading {
        display: none;
    }
    .page-template-page-tintuc #blogs .widget-title {
        color: #333;
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        margin-bottom: 28px;
        padding-left: 5px;
    }
}
