.blogsWrap {
    width: 96%;
    margin: 0 auto;
    padding: 24px 0 60px;
}

.blogsHeader {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 16px;
}

.blogsHeader h1 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 400;
    color: #222;
}

.blogsGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 24px;
}

.blogCard {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blogCover {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: #f7f7f7;
    overflow: hidden;
    border-radius: 2px;
}

.blogCover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blogTitle {
    margin-top: 12px;
    /*font-size: 16px;*/
    line-height: 20px;
    font-weight: 400;
    color: #222222;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px;
    font-family: patpat-Regular, sans-serif;
}

.blogBrief {
    margin-top: 4px;
    font-size: 12px;
    line-height: 16px;
    color: #222222;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    overflow-wrap: break-word;
    min-height: 36px;
    font-family: patpat-Regular, sans-serif;
}

.blogsEmpty {
    width: 100%;
    padding: 60px 0;
    text-align: center;
    color: #646464;
}

