.blog-posts {
    background-color: #fbfbfb
}

.blog-posts__subtitle, .blog-posts__title {
    margin-left: auto;
    margin-right: auto;
    max-width: 924px;
    text-align: center;
    width: 100%
}

.blog-posts__container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 64px 32px
}

.blog-posts__container, .blog-posts__post {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.blog-posts__post {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    border-bottom: 1px solid #ddd;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 256px;
    padding-bottom: 16px;
    position: relative;
    width: 100%
}

.blog-posts__container--3 .blog-posts__post {
    max-width: 352px
}

.blog__blog-posts__post-link {
    border: 0;
    bottom: 0;
    display: block;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 1
}

.blog-posts__post-cover {
    aspect-ratio: 1/1;
    margin-bottom: 20px;
    max-width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.blog-posts__container--3 .blog-posts__post-cover {
    aspect-ratio: 16/9
}

.blog-posts__post-body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    height: 100%
}

.blog-posts__container--3 .blog-posts__post-title {
    display: block
}

.blog-posts__container--3 .blog-posts__post-title:hover {
    color: var(--textColor);
    text-decoration: underline
}

.blog-posts__post-info {
    color: #888;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px
}

.blog-posts__post-reading-minutes {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-left: 12px;
    padding-right: 0
}

.blog-posts__post-reading-minutes:after {
    background: #888;
    content: "";
    height: 100%;
    left: 0;
    line-height: 0;
    position: absolute;
    top: 0;
    width: 1px
}

.blog-posts__post-tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    margin-top: auto
}

.blog-posts__post-tag a {
    background: transparent;
    border: 1px solid var(--black);
    border-radius: 100px;
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    padding: 4px 16px;
    -webkit-transition: background .2s;
    -o-transition: background .2s;
    transition: background .2s
}

.blog-posts__post-tag a:hover {
    background: var(--black);
    color: var(--white)
}

.blog-posts__button.button-primary {
    margin: 48px auto 0;
    max-width: 352px;
    width: 100%
}

@media (max-width: 1152px) {
    .blog-posts__container {
        gap: 48px 32px
    }

    .blog-posts__container--3 .blog-posts__post, .blog-posts__container--4 .blog-posts__post {
        max-width: 224px
    }
}

@media (max-width: 767px) {
    .blog-posts__container--3 {
        gap: 32px
    }

    .blog-posts__post {
        max-width: 100% !important
    }
}