

.art_img_box {
    width: 10%;
    height: 100%;
}
.art_img {
    border-radius: 50px;
    width: auto;
    height: 100%;
}


.article-name {
    font-size: clamp(12px, 2vw, 2.5rem);
    color: #333;
    font-weight: bold;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: start;
    overflow: hidden;
    height: 100%;
    width: 70%;
    text-align: left;
    padding-left: 50px;
}


.article-post {
    padding-left: 10%;
    font-size: clamp(10px, 1.2vw, 1.7rem);
    line-height: 1.6;
    color: #333;
    margin-top: 15px;
    margin-bottom: 10px;
    max-height: 100%;
    height: 100%;
    text-align: left;
    width: 90%;
}

@media (max-width: 750px) {

    .article-name{
        width: 100%;
        padding-left: 0px;
        text-align: center;
        justify-content: center;
    }
    .art_img_box {
    width: 100%;
    height: 60%;
}
    .article-post{
        padding-left: 0px;
        width: 100%;
    }
}