/* ==================================================
   보도자료 게시판
================================================== */

.news .news_con {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

/* 카드 */
.news .const_box {
    box-shadow: none;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 30px;
}

.news .const_box:last-child {
    border-bottom: none;
}

.news .const_box a {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* 썸네일 */
.news .news_thumb {
    width: 280px;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid #efefef;
}

.news .news_thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* 텍스트 영역 */
.news .news_text {
    flex: 1;
}

/* 제목 */
.news .news_tit {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: #111;
    line-height: 1.4;
    margin-bottom: 10px;
}

/* 요약 */
.news .news_desc {
    display: block;
    color: #555;
    line-height: 1.6;
    margin-bottom: 14px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 메타 정보 */
.news .news_meta {
    font-size: 1.4rem;
    color: #888;
}

/* hover */
.news .const_box a:hover .news_tit {
    color: #003D71;
}

/* 모바일 */
@media screen and (max-width: 768px) {
    .news .const_box a {
        flex-direction: column;
        gap: 15px;
    }

    .news .news_thumb {
        width: 100%;
    }

    .news .news_thumb img {
        height: 220px;
    }
}


.news_source {
    margin-top: 40px;
    padding-top: 16px;
    border-top: 1px solid #e0e0e0;
}

.news_source a {
    font-size: 15px;
    font-weight: 600;
    color: #1a5fd0;
    text-decoration: underline;
}

.news_source a:hover {
    text-decoration: none;
}