.banner-blog {
    min-height: 326px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}
.banner-blog::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        #098b43 14.53%,
        rgba(9, 139, 67, 0.6) 56.55%,
        #098b43 100%
    );
    z-index: 1;
}
.banner-blog .banner-blog-heading {
    color: #fff;
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.16; /* 116.667% */
    text-transform: capitalize;
    position: relative;
    z-index: 10;
}
.banner-blog .banner-blog-desc {
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.75; /* 175% */
    margin-top: 8px;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}
.banner-blog .banner-blog-bgimg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-blog .banner-blog-category {
    position: relative;
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}
.banner-blog .banner-blog-category .banner-category-item {
    display: flex;
    padding: 14px 30px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 58px;
    border: 1px solid rgba(0, 89, 169, 0.08);
    background: #fff;
    transition: all 0.3s;
}
.banner-blog .banner-blog-category .banner-category-item.active {
    border-radius: 31px;
    border: 1px solid #00cc5b;
    background: linear-gradient(
        89deg,
        #00ad26 -3.94%,
        #2eac8f 59.57%,
        #a8add7 135.33%
    );
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.12);
}
.banner-blog .banner-blog-category .banner-category-item p {
    color: var(--text, #101857);
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.62; /* 162.5% */
}
.banner-blog .banner-blog-category .banner-category-item.active p {
    color: #fff;
    font-weight: 600;
}
.banner-blog .banner-blog-category .banner-category-item img {
    width: 16px;
    height: 16px;
    aspect-ratio: 1/1;
}
.banner-blog .banner-blog-category .banner-category-item.active img {
    filter: brightness(0) invert(1);
}
.blog-list {
    background: var(--Green, #098b43);
    width: 100%;
}
.blog-list .container {
    column-count: 3;
    column-gap: 0px;
    background: white;
    margin-bottom: 40px;
}
.blog-list .blog-list-item {
    display: inline-block;
    width: 426px;
    padding: 40px;
    border: 1px solid rgba(24, 24, 24, 0.12);
    background: #fff;
}
.blog-list .blog-list-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
}
.blog-list .blog-list-item .blog-item-title {
    color: var(--text, #101857);
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.3; /* 130% */
    margin-bottom: 12px;
}
.blog-list .blog-list-item .blog-item-excerpt {
    color: rgba(16, 24, 87, 0.8);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5; /* 150% */
    margin-bottom: 20px;
}
.blog-list .blog-list-item .blog-item-more {
    display: flex;
    align-items: center;
    gap: 8px;
}
.blog-list .blog-list-item .blog-item-more p {
    color: var(--Orange, #f6821f);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.22;
}
.blog-list .blog-list-item .blog-item-more svg {
    width: 16px;
    height: 16px;
    aspect-ratio: 1/1;
}
.blog-list .pagination {
    padding-bottom: 80px;
}
@media (max-width: 639px) {
    .banner-blog .banner-blog-category {
        flex-wrap: nowrap;
        overflow: hidden;
        overflow-x: auto;
        width: 100%;
        padding: 0 16px;
    }
    .banner-blog .banner-blog-category .banner-category-item {
        flex-shrink: 0;
    }
    .blog-list .container {
        column-count: 1;
    }
    .blog-list .blog-list-item {
        width: 100%;
    }
}
@media (min-width: 639px) and (max-width: 1224px) {
    .blog-list .blog-list-item {
        width: 100%;
    }
}
