.nieuws-section {
  padding: 60px 20px;
  background: #f5f5f5;
  text-align: center;
}

.nieuws-section h1 {
  font-size: 2.5rem;
  color: #2c5f2d;
  margin-bottom: 40px;
}

.nieuws-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.nieuws-card {
  background: white;
  width: 300px;
  border-radius: 20px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  overflow: hidden;
  text-align: left;
  transition: transform 0.3s;
}

.nieuws-card:hover {
  transform: scale(1.03);
}

.nieuws-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.nieuws-info {
  padding: 20px;
}

.nieuws-info .datum {
  font-size: 0.9rem;
  color: #777;
  display: block;
  margin-bottom: 10px;
}

.nieuws-info h3 {
  color: #2c5f2d;
  margin-bottom: 10px;
}

.nieuws-info p {
  font-size: 1rem;
  margin-bottom: 15px;
}

.leesmeer-btn {
  background-color: #97bc62ff;
  color: #2c5f2d;
  padding: 8px 16px;
  border-radius: 15px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.leesmeer-btn:hover {
  background-color: #2c5f2d;
  color: white;
}

/* Volledige artikelen */
.nieuws-artikel {
  max-width: 800px;
  margin: 0 auto 60px;
  padding: 25px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  text-align: left;

  /* Border toegevoegd */
  border: 2px solid #2c5f2d;
}

.nieuws-artikel h2 {
  color: #2c5f2d;
  margin-bottom: 10px;
}

.nieuws-artikel .datum {
  font-size: 0.9rem;
  color: #777;
  display: block;
  margin-bottom: 20px;
}

.detail-img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.nieuws-artikel p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
