
.news .card {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news .card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.news .card-title {
  font-size: 1.25rem;
  font-weight: bold;
}

.news .card-text {
  font-size: 1rem;
  color: #666;
}

.news .btn {
  background-color: #007bff;
  color: #fff;
  transition: background-color 0.3s ease;
}

.news .btn:hover {
  background-color: #0056b3;
}
.news .card-img-top {
  height: 200px; /* Vaste hoogte voor afbeeldingen */
  object-fit: cover; /* Zorgt ervoor dat de afbeelding de kaart vult */
}

.news .btn-buy:hover {
  background: #fc8129;
}
.news .btn-buy {
  background: #ff9900;
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}