.db-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.db-news-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.db-news-item:hover {
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.db-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.db-content {
  padding: 12px 15px;
}

.db-category {
  display: inline-block;
  color: #d32f2f;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.db-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.db-title a {
  color: #111;
  text-decoration: none;
}

.db-title a:hover {
  color: #d32f2f;
}

.db-time {
  font-size: 12px;
  color: #777;
}
