/* 모바일 헤드라인 리스트 */
.headline_list_mobile {
    background: #fff;
}

.headline_item {
    border-bottom: 1px solid #f0f0f0;
}

.headline_item a {
    display: block;
    text-decoration: none;
    color: #333;
}

/* Featured 첫번째 항목 */
.headline_item.featured a {
    display: flex;
    flex-direction: column;
}

.headline_img {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.headline_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.headline_img .badge_breaking {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    background: #e74c3c;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 3px;
}

.headline_info {
    padding: 15px;
}

.headline_item.featured .headline_info {
    padding: 15px;
}

.headline_info h3 {
    margin: 0;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.headline_item.featured .headline_info h3 {
    font-size: 23px;
    font-weight: 700;
}

.headline_subtitle {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.headline_summary {
    margin: 10px 0;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.headline_time {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
    display: block;
}

/* 관련기사 영역 */
.headline_related_list {
    list-style: none;
    margin: 0;
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid #f0f0f0;
}

.headline_related_list .related_news_item {
    position: relative;
    padding-left: 16px;
    margin: 0;
}

.headline_related_list .related_news_item::before {
    content: 'ㄴ';
    position: absolute;
    left: 0;
    top: 0;
    color: #22b14c;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
}

.headline_related_list .related_news_item a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    display: block;
    font-family: 'Noto Sans KR', sans-serif;
}

.headline_related_list .related_news_item a:active {
    color: #22b14c;
    text-decoration: underline;
}

.headline_item:active {
    background: #f8f8f8;
}

