/* ==================== NEWS LIST ==================== */
.news-list { display: flex; flex-direction: column; gap: 20px; }
.news-item {
    display: flex; gap: 24px; background: #fff; border-radius: var(--radius);
    border: 1px solid var(--border); overflow: hidden; transition: var(--transition);
    cursor: pointer; text-decoration: none; color: inherit;
}
.news-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.news-item-img {
    width: 260px; min-height: 180px; flex-shrink: 0; display: flex;
    align-items: center; justify-content: center; font-size: 48px; position: relative;
}
.news-item-img.i1 { background: linear-gradient(135deg, #dbeafe, #bfdbfe); }
.news-item-img.i2 { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.news-item-img.i3 { background: linear-gradient(135deg, #d1fae5, #a7f3d0); }
.news-item-img.i4 { background: linear-gradient(135deg, #ede9fe, #ddd6fe); }
.news-item-img.i5 { background: linear-gradient(135deg, #fce7f3, #fbcfe8); }
.news-category-tag {
    position: absolute; top: 12px; left: 12px; background: var(--primary); color: #fff;
    font-size: 11px; font-weight: 600; padding: 3px 10px; border-radius: 5px;
}
.news-item-body { padding: 24px 24px 24px 0; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.news-item-date { font-size: 13px; color: var(--text-lighter); margin-bottom: 8px; }
.news-item-title { font-size: 18px; font-weight: 600; margin-bottom: 8px; line-height: 1.5; }
.news-item-excerpt { font-size: 14px; color: var(--text-light); line-height: 1.7; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-item-arrow { font-size: 20px; color: var(--primary); align-self: center; padding-right: 20px; flex-shrink: 0; }

@media (max-width: 768px) {
    .news-item { flex-direction: column; }
    .news-item-img { width: 100%; min-height: 160px; }
    .news-item-body { padding: 20px; }
    .news-item-arrow { display: none; }
}

/* ==================== PAGINATION ==================== */
.pagination { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 48px; }
.page-btn {
    width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 10px;
    background: #fff; color: var(--text-light); font-size: 14px; font-weight: 600;
    cursor: pointer; transition: var(--transition); display: flex; align-items: center;
    justify-content: center; font-family: inherit;
}
.page-btn:hover { border-color: var(--primary); color: var(--primary); }
.page-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }
.page-btn.disabled { opacity: 0.4; pointer-events: none; }
