.dual-category {
  padding: 32px 0;
}

.dual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.category-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}

.category-header {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 14px;
}

.news-item {
  display: flex;
  gap: 14px;
  padding: 12px 0;
  border-top: 1px solid #eee;
  text-decoration: none;
  color: inherit;
}

.news-item:first-of-type {
  border-top: none;
}

.news-text h4 {
  font-size: 15px;
  margin: 0 0 6px;
  line-height: 1.4;
}

.news-meta {
  font-size: 12px;
  color: #777;
}

.news-item img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
}

.read-more {
  display: inline-block;
  margin-top: 14px;
  font-weight: 600;
  color: #1a73e8;
}

/* MOBILE */
@media(max-width:768px){
  .dual-grid {
    grid-template-columns: 1fr;
  }
}
