.news-hero {
  background: linear-gradient(135deg, #4A90D9 0%, #357ABD 50%, #2C6AA0 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.news-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.news-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
}

.news-hero .hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 5px 18px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-bottom: 18px;
}

.news-hero h1 {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.news-hero > .container > .row > div:first-child p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 25px;
}

.hero-stats {
  display: flex;
  gap: 30px;
}

.hero-stats .stat-item {
  text-align: center;
}

.hero-stats .stat-item .num {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}

.hero-stats .stat-item .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}

.news-content {
  padding: 60px 0;
  background: #f8f9fa;
}

.news-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #333;
}

.section-header h2 i {
  color: #4A90D9;
  margin-right: 8px;
}

.section-header .result-info {
  color: #999;
  font-size: 0.85rem;
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.article-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.article-card .card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #e3edf7;
}

.article-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.article-card:hover .card-img img {
  transform: scale(1.05);
}

.article-card .card-img .card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #4A90D9;
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 14px;
  border-radius: 12px;
  font-weight: 500;
}

.article-card .card-img .card-date {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 8px;
}

.article-card .card-body {
  padding: 20px;
}

.article-card .card-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card .card-body h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;
}

.article-card .card-body h3 a:hover {
  color: #4A90D9;
}

.article-card .card-body .excerpt {
  color: #888;
  font-size: 0.88rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 15px;
}

.article-card .card-body .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.article-card .card-body .card-footer .date {
  color: #aaa;
  font-size: 0.8rem;
}

.article-card .card-body .card-footer .read-more {
  color: #4A90D9;
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: gap 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.article-card .card-body .card-footer .read-more:hover {
  gap: 8px;
}

.news-sidebar {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.sidebar-widget {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.sidebar-widget .widget-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid #e3edf7;
}

.sidebar-widget .widget-title i {
  color: #4A90D9;
  margin-right: 8px;
}

.widget-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget-categories li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f5f5f5;
}

.widget-categories li:last-child {
  border-bottom: none;
}

.widget-categories li a {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.widget-categories li a:hover {
  color: #4A90D9;
}

.widget-categories li .count {
  background: #e3edf7;
  color: #4A90D9;
  font-size: 0.75rem;
  padding: 2px 10px;
  border-radius: 10px;
  font-weight: 500;
}

.widget-posts {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget-posts li {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}

.widget-posts li:last-child {
  border-bottom: none;
}

.widget-posts li .wp-thumb {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: #e3edf7;
  flex-shrink: 0;
  overflow: hidden;
}

.widget-posts li .wp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.widget-posts li .wp-info {
  flex: 1;
  min-width: 0;
}

.widget-posts li .wp-info a {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  line-height: 1.4;
  margin-bottom: 4px;
  transition: color 0.3s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.widget-posts li .wp-info a:hover {
  color: #4A90D9;
}

.widget-posts li .wp-info .wp-date {
  font-size: 0.75rem;
  color: #bbb;
}

.widget-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.widget-tags a {
  display: inline-block;
  padding: 5px 14px;
  background: #f5f5f5;
  color: #888;
  font-size: 0.8rem;
  text-decoration: none;
  border-radius: 20px;
  transition: background 0.3s, color 0.3s;
}

.widget-tags a:hover {
  background: #4A90D9;
  color: #fff;
}

/* Pagination */
.pagination-wrap {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.pagination-wrap .pages {
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination-wrap .pages li a,
.pagination-wrap .pages li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
}

.pagination-wrap .pages li a {
  background: #fff;
  color: #666;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.pagination-wrap .pages li a:hover {
  background: #e3edf7;
  color: #4A90D9;
}

.pagination-wrap .pages li.active span {
  background: #4A90D9;
  color: #fff;
  box-shadow: 0 4px 12px rgba(74,144,217,0.3);
}

.pagination-wrap .pages li.disabled span {
  background: #f5f5f5;
  color: #ccc;
}

/* Empty state */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #ccc;
}

.empty-state i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.empty-state p {
  font-size: 1rem;
}

@media (max-width: 992px) {
  .news-layout { grid-template-columns: 1fr; }
  .news-hero h1 { font-size: 2rem; }
}

@media (max-width: 768px) {
  .news-hero { padding: 50px 0 40px; }
  .news-content { padding: 40px 0; }
  .article-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .hero-stats .stat-item .num { font-size: 1.4rem; }
}
