/* 모바일 헤드라인 리스트 */
.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 0 8px 0;
    font-size: 16px;
    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: 18px;
    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_time {
    font-size: 12px;
    color: #999;
}

.headline_item:active {
    background: #f8f8f8;
}

