.news-section {
  padding: 80px 20px;
  background: #f6faf6;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #123524;
  margin-bottom: 50px;
}

.news-layout {
  max-width: 1200px;
  margin: auto;
}

.news-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

.news-featured img {
  width: 100%;
  border-radius: 20px;
  height: 360px;
  object-fit: cover;
}

.featured-content span {
  font-size: .85rem;
  color: #777;
}

.featured-content h3 {
  font-size: 1.7rem;
  color: #123524;
  margin: 10px 0;
}

.featured-content p {
  line-height: 1.7;
  color: #444;
}

.featured-content a {
  display: inline-block;
  margin-top: 15px;
  font-weight: 700;
  color: #3E7B27;
  text-decoration: none;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 25px;
}

.news-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  transition: .3s;
}

.news-card:hover {
  transform: translateY(-4px);
}

.news-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-body {
  padding: 18px;
}

.card-body span {
  font-size: .8rem;
  color: #777;
}

.card-body h4 {
  font-size: 1rem;
  margin: 8px 0 12px;
  color: #123524;
}

.card-body a {
  font-weight: 700;
  color: #3E7B27;
  text-decoration: none;
}

.news-cta {
  text-align: center;
  margin-top: 50px;
}

.news-cta a {
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg,#123524,#3E7B27);
  padding: 14px 36px;
  border-radius: 40px;
  text-decoration: none;
}
