html {
    font-size: clamp(0px,0.111111vw,1px);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.wrap {
    margin: auto;
    width: 900rem;
    height: auto;
}
.news_letter {
    padding-bottom: 80rem;
    margin-top: 60rem;
    margin-bottom: 100rem;
    width: 900rem;
    height: auto;
    box-shadow: 0 2rem 6rem 0 rgba(0, 0, 0, 0.3);
}
.news_letter_wrap {
    margin: auto;
    width: 776rem;
    height: auto;
}
.news_letter_top {
    margin: 38rem 0 44rem 0;
    width: 100%;
    height: auto;
    font-family: "Roboto Flex";
}
.news_letter_top_date {
    position: relative;
    width: 100%;
    height: 130rem;
    border-bottom: 2rem solid black;
}
.news_letter_year {
    position: absolute;
    bottom: 18rem;
    width: 88rem;
    height: 44rem;
    font-size: 40rem;
    font-weight: 500; /* medium */
}
.news_letter_month {
    position: absolute;
    right: 0;
    bottom: 24rem;
    width: 74rem;
    height: 64rem;
    font-size: 64rem;
    font-weight: 700; /* bold */
}
.news_letter_title {
    position: relative;
    width: 100%;
    height: 130rem;
}
.news_letter_title_text {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 64rem;
    font-size: 64rem;
    font-weight: 600; /* semi bold */
}
.news_letter_title_month {
    position: absolute;
    left: 0;
    bottom: 58rem;
    height: 55rem;
    font-size: 48rem;
    font-weight: 400; /* regular */
}

.newsBlocks {
    margin: auto;
    width: 700rem;
    height: auto;
}
.newsBlocks .newsBlock {
    display: flex;
    color:  black;
    text-decoration-line: none; /* a태그 밑줄 없애기 */
    margin: 11rem 0 11rem 0;
}
.newsBlock {
    box-shadow: 0 0 8rem 0 rgba(0,0,0,0.5);
    border-radius: 10rem;
    width: 100%;
    height: 155rem;
}
.newsBlock .news_image {
    width: 232rem;
    height: 100%;
}
.newsBlock .news_image img{
    width: 100%;
    height: 100%;
    border-radius: 10rem 0 0 10rem;
}
.newsBlock .news_content {
    padding: 15rem 30rem 15rem 24rem;
    width: 468rem;
    height: 100%;
}
.newsBlock .news_content .news_title {
    margin-bottom: 9rem;
    width: 100%;
    height: 54rem;
    font-size: 20rem;
    line-height: 27rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.newsBlock .news_content .news_detail {
    border-top: 1.5rem solid black;
    padding-top: 8rem;
    width: 100%;
    height: 65rem;
    color: #575757;
    font-size: 16rem;
    line-height: 19rem;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

@media screen and (max-width: 780px) {
    .newsBlocks {
        width: 776rem;
    }
    .newsBlock {
        height: 240rem;
    }
    .newsBlock .news_image {
        width: 382rem;
    }
    .newsBlock .news_content {
        width: 394rem;
    }
    .newsBlock .news_content .news_title {
        margin-bottom: 15rem;
        height: 89rem;
        font-size: 33rem;
        line-height: 44.4rem;
    }
    .newsBlock .news_content .news_detail {
        padding-top: 13rem;
        height: 62rem;
        font-size: 26rem;
        line-height: 31rem;
    }
}

@media screen and (max-width: 480px) {
    .newsBlock .news_content .news_title {
        margin-bottom: 0;
        height: 100%;
        font-size: 40rem;
        line-height: 52rem;
        -webkit-line-clamp: 4;
    }
    .newsBlock .news_content .news_detail {
        display: none;
    }
}