/** Shopify CDN: Minification failed

Line 11:0 Unexpected "<"
Line 69:0 Unexpected "}"
Line 96:0 Unexpected "<"

**/


/* CSS from section stylesheet tags */
<style>
.custom-columns-outer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
  border: 2px solid #ddd;
  border-radius: 12px;
  background-color: #fdfdfd;
}

.custom-columns-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
}

.custom-column {
  width: 100%;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-sizing: border-box;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;

}
.column-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 12px;
}

.custom-column h3 {
  margin-top: 12px;
}

.custom-column a.btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 20px;
  background-color: #70866C; /* nieuwe knopkleur */
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  text-align: center;
  transition: background-color 0.3s ease;
}

.custom-column a.btn:hover {
  background-color: #5f735c; /* iets donkerdere hoverkleur */
}

}

.column-image {
  width: 100%;
  height: 200px; /* vaste hoogte */
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 12px;
}


.no-border {
  border: none !important;
  padding: 0;
}

@media (min-width: 768px) {
  .custom-column {
    width: calc(33.33% - 24px);
  }
}

@media (max-width: 767px) {
  .custom-column {
    width: 100%;
  }
}
</style>