.c-blog {
    padding: 2rem 16px;
}

.c-container_blog {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1110px;
    margin: 0 auto;
    gap: 34px;
}

.c-container_blog h2 {
    font-weight: 200;
    font-size: 1.5rem;
    text-align: center;
    line-height: 1.8rem;
    font-family: var(--f3);
}

.c-boxs_blog {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.c-item_blog {
    display: none;
    align-items: center;
    width: 100%;
    max-width: 350px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px 4px 0px rgba(11, 39, 57, 0.05);
}

.c-item_blog:nth-child(-n+2) {
    display: flex;
}

.c-item_blog:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 11px 0 rgb(0 0 0 / 10%), 0 4px 6px 0 rgb(0 0 0 / 10%);
}

.c-item_blog img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 122px;
}

.c-text_blog {
    padding: 10px;
}

.c-text_blog h4 {
    color: var(--blue);
    font-size: 16px;
    font-weight: 500;
    line-height: 18px;
    margin-bottom: 8px;
}

.c-text_blog p {
    display: -webkit-box;
    color: #999999;
    font-size: 14px;
    line-height: 18px;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
}

.only-mb {
    display: block;
}

.c-link_more {
    color: var(--blue);
    text-decoration: underline;
    font-size: 1.2rem;
}

.c-link_more.icn-after-chevron-down-regular::after {
    color: var(--blue);
    transform: rotate(270deg);
    display: -webkit-inline-box;
    font-size: 1rem;
    margin-left: 6px;
}

@media screen and (min-width:769px) {
    .only-mb {
        display: none;
    }

    .c-container_blog {
        gap: 46px;
    }

    .c-container_blog h2 {
        font-size: 2rem;
    }

    .c-boxs_blog {
        flex-direction: row;
    }

    .c-item_blog {
        display: flex;
    }
}