.wrapper {
    box-sizing: border-box;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 119px;
}

.path {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 30px;

    color: rgba(0, 0, 0, 0.50);
}

.path .pagename {
    all: unset;
    font-size: 13px;
    line-height: 18px;
}

.path .pagename.active {
    font-weight: 600;
}

.blog_block {
    margin-top: 80px;
}

.blog_block>.title {
    line-height: 40px;
    font-size: 48px;
    font-weight: 700;
}

.blog_block .list {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 31px;
}

.blog_block .list a {
    all: unset;
    cursor: pointer;
}

.blog_block .list .item {
    display: grid;
    grid-template-rows: auto 1fr;


    border-radius: 20px;
    box-shadow: 0px 12px 32px 0px rgba(0, 0, 0, 0.10);
    overflow: hidden;
}

.blog_block .list .item .preview {
    display: flex;
    align-items: start;
    justify-content: center;

    height: 510px;
    overflow: hidden;
}

.blog_block .list .item .preview img {
    height: 100%;
    transition: all .3s ease-in-out;
}
.blog_block .list .item .preview img:hover
{
    scale: 1.1;
}

.blog_block .list .item .info {
    padding: 40px;
    display: flex;
    gap: 15px;
    flex-direction: column;
}

.blog_block .list .item .info .title {
    font-size: 24px;
    font-weight: 600;
    line-height: 38px;
}

.blog_block .list .item .info .date {
    font-size: 13px;
    line-height: 18px;
}