.nearby-locations-swiper .swiper-slide {
  background: #f9f9f9;
  border-radius: 6px;
  padding: 10px;
  box-sizing: border-box;
}

.nearby-locations-swiper .slide-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 10px;
  background: #eee;
}

.nearby-locations-swiper .slide-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.nearby-locations-swiper h3 {
  margin: 0 0 5px;
  font-size: 1.1em;
}

.nearby-locations-swiper .button {
  display: inline-block;
  background: #659993;
  color: #fff;
  padding: 8px 12px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9em;
}

.nearby-locations-swiper .button:hover {
  opacity: 0.85;
}

.nearby-locations-swiper .swiper-button-prev,
.nearby-locations-swiper .swiper-button-next {
  top: 40%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  color: #fff;
  border-radius: 50%;
}
.usps-row {
  margin: 8px 0;
  display: flex;
  flex-direction: column; /* Zet de badges onder elkaar */
  gap: 6px;               /* Ruimte ertussen */
}

.usp-badge {
  display: block;                     /* Volledige regel */
  background-color: #659993;
  color: #fff;
  font-size: 0.8em;
  padding: 6px 10px;
  border-radius: 4px;
  line-height: 1.4;
  width: fit-content;                 /* Smalle blokjes, geen 100% breedte */
}


.opvangsoorten {
  font-size: 0.9em;
  color: #555;
  margin: 6px 0 12px;
}
/* ----------- Container ----------- */
.anderelocaties {
  margin-top: 60px;
}



/* ----------- Swiper Slides ----------- */
.nearby-locations-swiper {
  padding: 10px 5px 50px;
  position: relative;
}

.nearby-locations-swiper .swiper-slide {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 16px;
  text-align: left;
}

.nearby-locations-swiper .swiper-slide:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* ----------- Thumbnail ----------- */
.slide-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 12px;
  background: #f3f3f3;
}

.slide-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.slide-thumb:hover img {
  transform: scale(1.05);
}

/* ----------- Teksten ----------- */
.nearby-locations-swiper h3 {
  font-size: 1.05em;
  margin: 6px 0;
  line-height: 1.3;
}

.nearby-locations-swiper h3 a {
  text-decoration: none;
  
}

.nearby-locations-swiper .address,
.nearby-locations-swiper .distance,
.nearby-locations-swiper .opvangsoorten {
  font-size: 0.9em;
  color: #666;
  margin: 2px 0;
}

/* ----------- USP's ----------- */
.usps-row {
  margin: 10px 0;
}

.usp-badge {
  display: block;
  background-color: #659993;
  color: #fff;
  font-size: 0.8em;
  padding: 6px 10px;
  border-radius: 4px;
  line-height: 1.3;
  margin-bottom: 5px;
}

/* ----------- Knoppen ----------- */
.nearby-locations-swiper .button {
  display: inline-block;
  background: #659993;
  color: #fff !important;
  padding: 8px 14px;
  border-radius: 4px;
  font-size: 0.9em;
  text-decoration: none;
  font-weight: 600;
  margin-top: 8px;
  transition: background 0.3s ease;
}

.nearby-locations-swiper .button:hover {
  background: #497674;
}

/* ----------- Navigatie pijlen ----------- */
.swiper-button-prev, .swiper-button-next {
  top: 45%;
  width: 38px;
  height: 38px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(0,0,0,0.65);
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 16px;
  font-weight: bold;
}

/* ----------- Responsive tweaks ----------- */
@media (max-width: 768px) {
  .nearby-locations-swiper .swiper-slide {
    padding: 14px;
  }

  .nearby-locations-swiper h3 {
    font-size: 1em;
  }

  .nearby-locations-swiper .button {
    font-size: 0.85em;
  }
}
