.news-header {
  margin-bottom: 40px;
  text-align: center;
}

.news-header h1 {
  font-size: 48px;
  margin-bottom: 16px;
  color: var(--text);
}

.news-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.filter-bar {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-end;
  justify-content: space-between;
}

.filter-group {
  flex: 1;
  min-width: 180px;
}

.filter-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}

.filter-group select,
.filter-group input {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: var(--transition);
  background: var(--white);
}

.filter-group select:focus,
.filter-group input:focus {
  outline: none;
  border-color: var(--orange);
}

.filter-actions {
  display: flex;
  gap: 12px;
}

.btn-filter {
  padding: 10px 24px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.btn-filter:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.btn-reset {
  padding: 10px 24px;
  background: transparent;
  color: var(--text-light);
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.btn-reset:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.tag-cloud {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 40px;
  box-shadow: var(--shadow);
}

.tag-cloud h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--text);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-filter {
  display: inline-block;
  padding: 8px 16px;
  background: var(--white);
  color: var(--text);
  border: 2px solid #000000;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.tag-filter:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-2px);
}

.tag-filter.active {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.news-stats {
  margin-bottom: 24px;
  color: var(--text-light);
  font-size: 14px;
}

.no-results {
  text-align: center;
  padding: 60px 20px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  grid-column: 1 / -1;
}

.no-results i {
  font-size: 64px;
  color: var(--text-lighter);
  margin-bottom: 16px;
}

.no-results h3 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--text);
}

.no-results p {
  color: var(--text-light);
}

.news-thumb {
  position: relative;
}

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

/* Responsive */
@media (max-width: 768px) {
  .filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-group {
    min-width: 100%;
  }
  
  .filter-actions {
    flex-direction: column;
  }
  
  .btn-filter,
  .btn-reset {
    width: 100%;
    text-align: center;
  }
  
  .news-header h1 {
    font-size: 36px;
  }
}