.berita-terpopuler {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.news-list {
  display: flex;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  align-items: center;
}

.news-thumb {
  width: 140px;
  height: 100px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-info {
  flex: 1;
}

.news-info:hover * {
  color: #DC0000;
}

.news-category {
  font-size: 12px;
  color: #888;
  display: block;
  margin-bottom: 5px;
}

.news-title {
  font-size: 14px;
  font-weight: 600;
}

.news-meta {
  font-size: 12px;
  color: #777;
}

@media (max-width: 768px) {
  .berita-terpopuler {
    gap: 8px;
  }

  .news-list {
    display: grid;
  }
  
  .news-thumb {
    width: 100%;
  }


}