.categories-list-background {
    padding: 0;
    list-style: none;
}
.categories-section-container {
    max-width: 25%;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.categories-list-background li a {
    font-weight: 700;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: -2%;
    color: #153473;
    text-decoration: none;
    transition: color .3s ease-in-out,text-decoration .3s ease-in-out;
}
.categories-list-background li{
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
/* .categories-list-background li::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background-color: #E0E0E0;
} */

.categories-list-background li a:hover{
    color: #005ee0;
    text-decoration: underline;
    cursor: pointer;
}
.show-all-categories {
    font-weight: 700;
    font-size: 17px;
    line-height: 28px;
    letter-spacing: -2%;
    color: #153473;
    text-decoration: none;
    transition: color .3s ease-in-out,text-decoration .3s ease-in-out;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 15px;
    display: inline-block;
    width: 100%;
}
/* .show-all-categories::after{
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    background-color: #E0E0E0;
} */

.show-all-categories:hover{
    color: #005ee0;
    text-decoration: underline;
    cursor: pointer;
}

.blog-items {
    max-width: 75%;
    width: 100%;
}

.blog-items__item {
    max-width: calc(50% - 20px);
}

.categories-section-container-sticky {
    position: sticky;
    top: 100px;
}

.blog-items__item__bottom {
    width: 100%;
}
.blog-items__item__bottom-thumbnail-author{
    width: 50%;
}
.blog-items__item__bottom-thumbnail{
    max-width: calc(20% - 15px);
}
.blog-items__item__bottom__text {
    max-width: calc(80% - 15px);
}

.post-heading-mini .blog-items__item__bottom-thumbnail-author{
    width: auto;
}
.post-content-container {
    h2 {
        font-size: var(--h4) !important;
        line-height: var(--h4-lh) !important;
        margin-bottom: 30px !important;
    }
}
.blog-container .icon-text-clients{
    display: flex;
    align-items: flex-start;
}
.post-bottom .blog-items  {
    max-width: 100%;
}
.post-bottom .blog-items .blog-items__item{
    max-width: calc((100% - (2 * 30px))/3);
    width: 100%;
}

@media screen and (max-width: 1100px) {
    .post-bottom .blog-items .blog-items__item {
        max-width: calc((100% - (30px)) / 2);
    }
}
@media screen and (max-width: 1000px) {
    .blog-items__item{
        max-width: calc(100% - 20px);
    }
    .categories-section-container {
        max-width: 30%;
    }
    .blog-items {
        max-width: 70%;
    }
}
@media screen and (max-width: 767px) {
    .blog-items-center {
        flex-direction: column;
    }
    .blog-items__item{
        max-width: 100%;
    }
    .categories-section-container {
        max-width: 100%;
    }
    .blog-items {
        max-width: 100%;
        justify-content: center;
    }
    .categories-list-background {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
    }
      .show-all-categories {
        text-align: center;
        margin-bottom: 20px;
      }
      .show-all-categories::after {
        display: none;
      }

      .categories-list-background li {
        max-width: calc((100% - (15px * 2)) / 3);
        width: 100%;
      }
}

@media screen and (max-width: 650px) {
    .post-bottom .blog-items .blog-items__item {
        max-width: 100%;
    }
}

@media screen and (max-width: 450px) {
    .categories-list-background {
        gap: 10px;
    }
    .categories-list-background li {
        max-width: calc((100% - (10px)) / 2);
        width: 100%;
      }
}