.blog-container {
    max-width: 1240px;
    margin: 0 auto 120px;
    padding: 0 20px;
    position: relative;
	padding-top:140px;
}

.blog .blog-container {
    margin: 60px auto 120px;
}

.blog-title {
    padding: 38px 0 40px;
    font-size: 35px;
    line-height: 147%;
    font-weight: 500;
    text-align: center;
    position: relative;
}

.blog-title:before {
    content: '';
    position: absolute;
    background-image: url('../../assets/images/secondHeader.webp');
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 1196px;
    width: 100%;
    height: 395px;
    top: 0;
    left: -10px;
    z-index: -1;
}

.blog .blog-title {
    padding: 20px 0 15px;
    font-size: 35px;
    line-height: 147%;
    font-weight: 500;
    text-align: center;
    position: relative;
}


.blog .blog-title:before {
    content: '';
    position: absolute;
    background-image: url('../../assets/images/blog-bg.svg');
    background-repeat: no-repeat;
    background-size: contain;
    max-width: 203px;
    width: 100%;
    height: 80px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

.blog .blog-posts-grid {
    margin-top: 55px;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px 47px;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 35px;
}

.blog-post {
    background: #fff;
    border-radius: 10px;
    position: relative;
}

.blog-post-thumbnail {
    display: flex;
    position: relative;
}

.blog-post-thumbnail img {
    width: 100%;
    height: auto;
    min-height: 172px;
    object-fit: cover;
    border-radius: 10px;
}

.blog-post-date {
    background: rgba(194, 194, 194, 0.8);
    backdrop-filter: blur(1px);
    padding: 6px 31px 7px;
    border-radius: 20px;
    position: absolute;
    left: 10px;
    bottom: 10px;
    color: #fff;
    font-size: 12px;
    line-height: 115%;
    font-weight: 600;
}

.blog-post-info {
    padding: 13px 52px 14px 10px;
    color: #000;
}

.blog-post-title {
    margin-bottom: 10px;
    font-family: 'Noto Sans Regular', sans-serif;
    font-size: 12px;
    line-height: 115%;
    font-weight: 600;
    letter-spacing: 0;
}

.blog-post-excerpt {
    font-family: 'Noto Sans Regular', sans-serif;
    font-size: 12px;
    line-height: 115%;
    font-weight: 400;
}

.blog-post_read-more {
    display: block;
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 29px;
    height: 29px;
}

.blog-post_read-more svg rect {
    transition: all 0.3s;
}

.blog-post_read-more:hover svg rect {
    fill: #000;
}

@media screen and (max-width: 1024px) {
    .blog-posts-grid {
        grid-template-columns: 1fr 1fr;
    }
    .blog .blog-posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .blog-title {
        margin-top: 30px;
        margin-bottom: 12px;
        font-size: 22px;
        line-height: 123%;
    }
    .blog-title:before {
        max-width: 80%;
    }
}

@media screen and (max-width: 768px) {
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    .blog .blog-posts-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}