.blog-block {
    padding: 80px 30px 120px;
}

.blog-block-content {
    gap: 60px;
    align-items: center;
}

.blog-block-content .title-block {
    width: 719px;
}

.block-list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 30px 20px;
    align-items: stretch;
}

.block-list-item {
    width: calc((100% - 60px) / 4);
    border-radius: 6px;
    background: #FAFCFE;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.block-list-item .image-container {
    aspect-ratio: 330/199;
    overflow: hidden;
    position: relative;
    display: block;
}

.block-list-item .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-list-item .image-container .tag {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    padding: 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    background: #292524;
    height: 24px;
    color: #FFF;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
}

.block-list-item .content {
    padding: 12px;
    flex: 1 0 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    justify-content: space-between;
}

.block-list-item .content .content-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
}

.block-list-item .content .content-container .tag {
    display: flex;
    padding: 6px 8px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: flex-start;
    border-radius: 2px;
    background: #E4EEEF;
    color: #025C69;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 12px */
    height: 24px;
}

.block-list-item .text-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
}

.block-list-item .text-container h3 {
    align-self: stretch;
    color: #292524;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 100%; /* 18px */
}

.block-list-item .text-container p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    align-self: stretch;
    overflow: hidden;
    color: #828282;
    text-overflow: ellipsis;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 114%; /* 13.68px */
}

.block-list-item .content a {
    display: flex;
    padding: 16px 80px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    border-radius: 5px;
    background: #0CB4CE;
    height: 43px;
    color: #FFF;
    text-align: right;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 14px */
    text-transform: uppercase;
}

.block-list-item .content a:hover {
    background: #20C8E2;
}

@media (min-width: 990px) and  (max-width: 1439px) {
    .blog-block {
        padding: 40px 40px 90px;
    }

    .blog-block-content .title-block {
        width: 704px;
    }

    .blog-block-content .title-text {
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
    }

    .block-list-item {
        width: calc((100% - 40px) / 3);
    }
}

@media (max-width: 990px) {
    .blog-block {
        padding: 25px 20px 80px;
    }

    .blog-block-content .title-block {
        width: 345px;
    }

    .blog-block-content .title-text {
        font-size: 15px;
        font-style: normal;
        font-weight: 400;
    }

    .blog-block-content .title-container {
        gap: 16px;
    }

    .blog-block-content {
        gap: 45px;
    }

    .block-list-item {
        width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 600px) {
    .block-list-item {
        width: 100%;
    }
}
