.blog-posts__article {
    flex-basis: calc((100% - 60px) / 3);
    background: #FFF;
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.read-next-block {
    margin-top: 40px;
}

.read-next-block__heading {
    font-weight: 600!important;
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.blog-article__img-link-wrapper {
    padding: 10px 10px 26px 10px;
}

.blog-article__image img{
    border-radius: 10px;
    height: 230px;
    object-fit: cover;
}

.blog-article__image {
    display: flex;
}

.blog-article__categories {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    padding: 0 26px 0 26px;
}

.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;
}

.blog-article__content-link-wrapper {
    padding: 20px 26px 26px 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-article__heading {
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.3;
    color: #1e2731;
}

.blog-article__excerpt {
    margin-bottom: 20px;
    flex-grow: 1;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: #373f49;
    font-family: "Neue Haas Grotesk Display Pro", sans-serif;
}


.article-first__short-excerpt {
    display: none;
}

.read-next-block .blog-article__meta {
   display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 20px;
    position: relative;
}

.read-next-block .blog-article__meta::before {
    content: '';
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #DADFF6;
    border-radius: 50px;
}


@media screen and (max-width: 1023.98px) {
    .blog-posts {
        flex-direction: column;
        gap: 10px;
    }

    .read-next-block {
        margin-top: 50px;
    }

    .read-next-block__heading {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .blog-posts__article.first-article {
        flex-direction: column;
    }

    .blog-posts__article.first-article .blog-article__img-link-wrapper,
    .blog-posts__article.first-article .blog-article__first-article-content-wrap {
        flex-basis: 100%;
    }

    .blog-posts__article {
        flex-basis: 100%;
    }

    .blog-article__image img {
        height: 400px;
    }

    .blog-article__img-link-wrapper {
        padding: 10px 10px 20px 10px;
    }

    .blog-article__categories {
        gap: 6px;
        padding: 0 20px 0 20px;
    }

    .blog-article__category {
        font-size: 11px;
        line-height: 1.5;
    }

    .blog-article__heading {
        font-size: 20px;
        line-height: 1.5;
    }

    .article-first__big-excerpt {
        display: none;
    }

    .article-first__short-excerpt {
        display: flex;
    }

    .blog-article__custom-btn {
        display: none;
    }

    .read-next-block .blog-article__meta {
        padding-top: 16px;
    }

    .blog-article__author-photo-img {
        width: 38px!important;
        height: 38px!important;
    }

    .blog-article__content-link-wrapper {
        padding: 10px 20px 20px 20px;
    }

    .blog-article__excerpt {
        margin-bottom: 16px;
    }
}

@media screen and (max-width: 599.98px) {
    .blog-article__image img {
        height: 219px;
    }
}