.blog-articles {
    padding-bottom: 80px;
}

.blog-articles h3 {
    font-family: PTRootUIVFBold;
    font-weight: 700;
    font-size: 80px;
    line-height: 80px;
    color: #000;
    margin: 65px 0 55px;
}

.blog-articles-list {
    display: grid;
    grid-auto-columns: 3;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
    grid-row-gap: 30px;
}

.blog-article {
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.blog-article-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.blog-article-pink-gradient {
    background: linear-gradient(358.43deg, rgba(250, 66, 59, 0.7) 1.07%, rgba(232, 232, 236, 0) 90.64%);
}

.blog-article-blue-gradient {
    background: linear-gradient(358.91deg, rgba(0, 46, 166, 0.7) 0.75%, rgba(232, 232, 236, 0) 69.57%);
}

.blog-article-violet-gradient {
    background: linear-gradient(358.91deg, rgba(120, 74, 245, 0.7) 0.75%, rgba(232, 232, 236, 0) 72.79%);
}

.blog-article-white-gradient {
    background: linear-gradient(358.43deg, rgba(255, 255, 255, 0.7) 1.07%, rgba(232, 232, 236, 0) 90.64%);
}

.blog-article-green-gradient {
    background: linear-gradient(358.91deg, rgba(113, 242, 112, 0.7) 0.75%, rgba(232, 232, 236, 0) 65.64%);
}

.blog-article-gray-gradient {
    background: linear-gradient(358.43deg, rgba(216, 216, 216, 0.7) 1.07%, rgba(232, 232, 236, 0) 90.64%);
}

.blog-article-image {
    width: 100%;
    min-height: 300px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 15px;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.blog-article-image .blog-article-image-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}
.blog-article-tags {
    display: flex;
    gap: 5px;
}

.blog-article-tag {
    color: #002ea6;
    font-family: PTRootUIVFBold;
    font-weight: 700;
    font-size: 12px;
    line-height: 12px;
    padding: 10px 10px 11px 10px;
    border-radius: 20px;
    background-color: #fff;
}

.blog-article-info {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    z-index: 1;
    width: 100%;
    justify-content: space-between;
}

.blog-article-type {
    color: #ffffff;
    text-transform: uppercase;
    font-family: PTRootUIVFBold;
    font-weight: 700;
    font-size: 8px;
    line-height: 8px;
    display: flex;
    gap: 2px;
    align-items: center;
    margin-bottom: 10px;
}

.blog-article-title span {
    font-family: PTRootUIVFBold;
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    color: #ffffff;
    text-decoration: none;
    background: no-repeat 0 100%;
    background-image: linear-gradient(#ffffff, #ffffff);
    background-size: 100% 0px;
    -webkit-transition: .3s ease;
    -moz-transition: .3s ease;
    -ms-transition: .3s ease;
    -o-transition: .3s ease;
    transition: .3s ease;
    padding-bottom: 1px;
}

.blog-article:hover .blog-article-title span {
    background-size: 100% 2px;
    color: #ffffff;
}

.blog-article-read-time {
    padding: 7px 10px;
    font-family: PTRootUIVFBold;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #ffffff;
    background-color: #000000;
    border-radius: 50px;
    flex-shrink: 0;
}

.blog-article-read-time img {
    width: 12px;
    height: 13px;
}

.blog-article-body {
    background-color: #fff;
    padding: 15px;
    gap: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-article-date {
    width: 150px;
    font-family: PTRootUIVFBold;
    color: #858585;
    font-size: 10px;
}

.blog-article-text {
    color: #292929;
    font-family: PTRootUIWebMedium;
    font-weight: 500;
    font-size: 16px;
    line-height: 20px;

    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.blog-article-author {
    padding: 8px;
    flex-grow: 1;
    font-family: PTRootUIVFRegular;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    border-right: 1px solid #fff;

    display: flex;
    align-items: center;
    min-height: 40px;
    gap: 10px;
}

.blog-article-author-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blog-article-author-name {
    font-family: PTRootUIVFBold;
    color: #000000;
    font-size: 20px;
}

.blog-article-author-post {
    color: #858585;
    font-size: 10px;
    text-transform: uppercase;
}

.blog-article-author img {
    width: 65px;
    height: 65px;
    border-radius: 100%;
}


@media (max-width: 1599px) {
    .blog-articles {
        padding-bottom: 64px;
    }

    .blog-articles h3 {
        font-size: 64px;
        line-height: 64px;
        margin: 52px 0 45px;
    }

    .blog-articles-list {
        grid-column-gap: 16px;
        grid-row-gap: 26px;
    }

    .blog-article-image {
        min-height: 300px;
        padding: 12px;
    }

    .blog-article-body {
        padding: 12px;
        gap: 12px;
    }

    .blog-article-title {
        font-size: 20px;
        line-height: 22px;
    }

    .blog-article-text {
        font-size: 14px;
        line-height: 16px;
    }
}

@media (max-width: 1200px) {
    .blog-articles-list {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .blog-articles h3 {
        font-size: 65px;
        line-height: 65px;
    }

    .blog-article-tag {
        padding: 8px;
        font-size: 10px;
        line-height: 10px;
    }

    .blog-article-body {
        padding: 10px;
    }

    .blog-article-title {
        font-size: 18px;
        line-height: 20px;
    }

    .blog-article-text {
        font-size: 14px;
        line-height: 18px;
    }

    .blog-article-author {
        font-size: 12px;
        line-height: 14px;
    }
}

@media (max-width: 768px) {
    .blog-articles-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .blog-articles h3 {
        font-size: 32px;
        line-height: 32px;
    }

    .blog-article-tag {
        font-size: 9px;
        line-height: 9px;
    }

    .blog-article-type {
        font-size: 7px;
        line-height: 8px;
    }

    .blog-article-text {
        font-size: 12px;
        line-height: 16px;
    }
}
