/* Container & Grid layout */
.buren-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.buren-titel {
  font-family: Georgia, 'Times New Roman', serif; 
  font-size: 2.2rem;
  color: #2c2523; 
  margin-bottom: 8px;
}

.buren-intro {
  font-size: 1.05rem;
  color: #5a524e;
  margin-bottom: 32px;
}

.buren-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

/* Card Styling */
.buur-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); 
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.buur-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* Foto bovenin */
.buur-image-wrapper {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.buur-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  background-color: #000000; 
}

/* Inhoud card */
.buur-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}


.buur-content h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.3rem;
  color: #2c2523;
  margin: 0 0 10px 0;
}

.buur-content p {
  font-size: 0.95rem;
  color: #665f5b;
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Knop styling */
.buur-button {
  display: inline-block;
  text-align: center;
  background-color: #4a382a; 
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
  transition: background-color 0.2s ease;
}

.buur-button:hover {
  background-color: #33261c;
}

.back-to-table {
  position: fixed;
  top: 3vh;
  left: 2vw;
  z-index: 5;
  font-style: italic;
  color: rgba(60,40,25,0.75);
  text-decoration: none;
  border-bottom: 1px solid rgba(60,40,25,0.3);
  padding-bottom: 2px;
}