.blog-single-post__header-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    align-items: center;
    padding-bottom: 30px;
    margin-bottom: 30px;
    position: relative;
}

.blog-single-post__header-content::after {
    content: '';
    bottom: 0;
    height: 1px;
    background: #DADFF6!important;
    border-radius: 50px;
    width: 100%;
    position: absolute;
}

.blog-single-post__header-content .blog-article__meta {
    padding-top: 0;
    flex-basis: fit-content;
    flex-shrink: 0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.blog-article__meta-wrapper {
    display: flex;
    flex-direction: column;
}

.blog-article__author-photo-img {
    border-radius: 100% !important;
    width: 44px!important;
    height: 44px!important;
    object-fit: cover;
}

.blog-article__author {
    font-weight: 350;
    font-size: 14px;
    line-height: 1.5;
    color: #1e2731;
}

.blog-article__reading-time,
.blog-article__date {
    font-weight: 350;
    font-size: 12px;
    line-height: 1.5;
    color: #646b72;
}

.blog-article__meta-inner-wrapper {
    display: flex;
    align-items: center;
    row-gap: 0;
    column-gap: 10px;
    flex-wrap: wrap;
}

.blog-article__categories {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    padding: 0 26px 0 26px;
}

.blog-single-post__header-content .blog-article__categories {
    padding: 0;
}

.blog-article__category {
    border-radius: 38px;
    padding: 6px 14px;
    background: rgba(8, 61, 180, 0.06);
    font-weight: 900;
    font-size: 12px;
    line-height: 2;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #083db4;
    font-family: 'Avenir', sans-serif;
}



@media screen and (max-width: 1023.98px) {

    .blog-single-post__header-content .blog-article__meta {
        margin-bottom: 14px;
    }

    .blog-single-post__header-content .blog-article__categories  {
        position: relative;
        gap: 6px;
        padding-bottom: 20px;
    }

    .blog-single-post__header-content .blog-article__categories::after {
        content: '';
        bottom: 0;
        height: 1px;
        width: 100%;
        background-color: #DADFF6;
        border-radius: 50px;
        position: absolute;
    }

    .blog-article__author-photo-img {
        width: 38px!important;
        height: 38px!important;
    }

    .blog-article__categories {
        gap: 6px;
        padding: 0 20px 0 20px;
    }

    .blog-article__category {
        font-size: 11px;
        line-height: 1.5;
    }

    .blog-single-post__header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}