.news-hero {
  padding: 6rem 0 3.5rem;
  background: linear-gradient(165deg, var(--brand), var(--brand-strong));
  color: #fff;
}

.news-hero h1 span {
  color: var(--brand-yellow);
}

.news-hero p {
  margin: 0;
  color: #e4efe6;
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.news-filter-btn {
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius-md);
  padding: 0.5rem 1.25rem;
  font-family: inherit;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
}

.news-filter-btn.active {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.news-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.news-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}

.news-thumb {
  display: block;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  min-height: 210px;
  object-fit: cover;
  background: #dfe9e2;
}

.news-content {
  padding: 1rem;
}

.news-meta {
  margin: 0 0 0.5rem;
  color: #55765f;
  font-size: 0.84rem;
  font-weight: 600;
}

.news-content h2 {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.35;
}

.news-content h2 a {
  color: #13371e;
  text-decoration: none;
}

.news-content h2 a:hover {
  text-decoration: underline;
}

.news-content > p:last-child {
  margin: 0.75rem 0 0;
  color: #3b5143;
}

@media (max-width: 1080px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-card.featured {
    grid-column: span 2;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card.featured {
    grid-column: auto;
  }
}
