/* News Item - First */
.news-list-first {
    padding: 22px;
    border: 1px solid var(--border-light);
    display: flex;
    gap: 24px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    transition: all var(--transition);
}
.news-list-first:hover { border-color: var(--border-color); box-shadow: var(--shadow-sm); }
.news-list-first .news-img { flex-shrink: 0; }
.news-list-first .news-img img {
    display: block;
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    transition: transform var(--transition);
}
.news-list-first:hover .news-img img { transform: scale(1.03); }
.news-list-first .news-content { flex: 1; min-width: 0; }
.news-list-first .news-title a {
    font-size: 18px;
    line-height: 1.3;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}
.news-list-first .news-title a:hover { color: var(--primary-dark); }
.news-list-first .news-date { font-size: 12px; color: var(--text-light); padding: 8px 0; }
.news-list-first .news-txt { color: var(--text-secondary); font-size: 13px; line-height: 1.8; }

/* News Item - Secondary */
.news-list-item {
    padding: 16px 20px;
    border: 1px solid var(--border-light);
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    transition: all var(--transition);
}
.news-list-item:hover { border-color: var(--border-color); box-shadow: var(--shadow-sm); }
.news-list-item .news-title a {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.news-list-item .news-title a:hover { color: var(--primary); }
.news-list-item .news-date { font-size: 12px; color: var(--text-light); padding: 6px 0; }
.news-list-item .news-txt { color: var(--text-secondary); font-size: 13px; line-height: 1.7; }

/* News Detail */
.news-view-title {
    max-width: 900px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
}
.news-view-title span {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-primary);
    display: block;
}
.news-view-content { max-width: 900px; padding-top: 24px; }
.news-view-txt { font-size: 15px; line-height: 2; color: var(--text-secondary); }
.news-view-txt img { max-width: 100%; height: auto; border-radius: var(--radius-sm); margin: 12px 0; }
.news-view-date {
    padding: 18px 0 18px 26px;
    color: var(--text-light);
    font-size: 13px;
    background: url(../images/icon14.png) no-repeat 0 center;
    margin-top: 16px;
}
.news-view-nav {
    max-width: 900px;
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.news-view-nav a {
    color: var(--text-secondary);
    font-size: 13px;
    text-decoration: none;
    display: block;
    line-height: 1.6;
    padding: 10px 14px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.news-view-nav a:hover {
    color: var(--primary);
    border-color: var(--primary);
    background: var(--primary-pale);
}

/* ============================================
   Responsive - Tablet & Mobile
   ============================================ */
@media (max-width: 991px) {
    .news-list-first { flex-direction: column; gap: 12px; padding: 16px; }
    .news-list-first .news-img img { width: 100%; height: auto; aspect-ratio: 16 / 9; }
    .news-list-first .news-title a { font-size: 16px; }
    .news-view-title span { font-size: 20px; }
    .news-view-txt { font-size: 14px; }
}
