/* ================================================================
   헤드라인 스킨 1 - PC 전용 (570×360 고정)
   그누보드 CSS 완전 격리
   ================================================================ */

/* 헤드라인 메인 영역 */
.headline1_area {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    gap: 45px;
    background: #fff;
    margin-top:30px;
    margin-bottom:30px;
    overflow: hidden;
    font-family: 'Noto Sans KR', sans-serif;
}

/* 좌측 썸네일 570×360 고정 */
.headline1_thumb {
    flex: 0 0 570px;
    float:left;
    width: 570px;
    min-width: 570px;
    max-width: 570px;
    height: 360px;
    min-height: 360px;
    max-height: 360px;
    overflow: hidden;
    background-color: #000;
    position: relative;
}

.headline1_thumb a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.headline1_thumb img {
    width: 570px !important;
    height: 360px !important;
    min-width: 570px !important;
    max-width: 570px !important;
    min-height: 360px !important;
    max-height: 360px !important;
    object-fit: cover !important;
    display: block !important;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

/* 썸네일 호버 효과 제거 */

/* 우측 텍스트 콘텐츠 */
.headline1_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* 메인 제목 */
.headline1_title {
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 42px;
    line-height: 50px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #000;
    font-family: 'Noto Sans KR', sans-serif;
}

.headline1_title a {
    color: #000;
    text-decoration: none;
}

.headline1_title a:hover {
    text-decoration: underline;
}

/* 본문 요약 (부제목 제거로 여백 조정) */
.headline1_summary {
    margin: 15px 0 10px 0;
    padding: 0;
    font-size: 14px;
    line-height: 25px;
    text-align: justify;
    color: #555;
    font-family: 'Noto Sans KR', sans-serif;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 10;
    max-height: 250px;
}

/* 관련기사 영역 (심플 버전 - 타이틀 없이 녹색 'ㄴ'만) */
.headline1_related_list {
    list-style: none;
    margin: 15px 0 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.headline1_related_list .related_news_item {
    position: relative;
    padding-left: 18px;
    margin: 0;
}

.headline1_related_list .related_news_item::before {
    content: 'ㄴ';
    position: absolute;
    left: 0;
    top: 0;
    color: #22b14c;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
}

.headline1_related_list .related_news_item a {
    color: #000000;
    text-decoration: none;
    font-size: 15px;
    line-height: 1.4;
    display: block;
    font-family: 'Noto Sans KR', sans-serif;
    transition: color 0.2s;
}

.headline1_related_list .related_news_item a:hover {
    color: #22b14c;
    text-decoration: underline;
}
