.elementor-755 .elementor-element.elementor-element-b2a9264{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}/* Start custom CSS for html, class: .elementor-element-948f478 *//* Hero + search bar */
.blog-overview-hero {
  text-align: center;
  margin: 3rem auto 2.2rem auto;
}
.blog-title {
  font-family: 'Marcellus', serif;
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}
.blog-search-form {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 0.5rem;
}
.blog-search-form input[type="search"] {
  padding: 0.68em 1.1em;
  font-size: 1.12rem;
  border-radius: 1.4em 0 0 1.4em;
  border: 1px solid #e5e1dc;
  outline: none;
  font-family: inherit;
  width: 250px;
  max-width: 85vw;
}
.blog-search-form button {
  border: 1px solid #e5e1dc;
  border-left: none;
  background: #c77c2e;
  color: #fff;
  padding: 0.72em 1em;
  font-size: 1.1rem;
  border-radius: 0 1.4em 1.4em 0;
  cursor: pointer;
}

/* Featured grid */
.blog-featured {
  max-width: 1080px;
  margin: 0 auto 2.8rem auto;
  padding: 0 1.5vw;
}
.featured-title {
  font-family: 'Marcellus', serif;
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
  color: #725c3b;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.4rem;
}
.featured-card {
  display: flex;
  flex-direction: column;
  background: #fff8f2;
  border-radius: 18px;
  box-shadow: 0 3px 18px rgba(0,0,0,0.09);
  text-decoration: none;
  color: #222;
  overflow: hidden;
  position: relative;
  transition: transform 0.21s, box-shadow 0.23s;
}
.featured-card:hover {
  transform: translateY(-7px) scale(1.025);
  box-shadow: 0 8px 32px rgba(199,124,46,0.13);
}
.featured-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}
.card-content {
  padding: 1.2em 1.3em 1.2em 1.3em;
}
.featured-badge {
  display: inline-block;
  background: #c77c2e;
  color: #fff;
  font-size: 0.82rem;
  border-radius: 9px;
  padding: 0.16em 0.76em;
  margin-bottom: 0.7em;
  font-family: inherit;
  letter-spacing: 0.01em;
}

/* Latest blogs grid */
.blog-latest {
  max-width: 1080px;
  margin: 0 auto 2.8rem auto;
  padding: 0 1.5vw;
}
.latest-title {
  font-family: 'Marcellus', serif;
  font-size: 1.24rem;
  margin-bottom: 0.8rem;
  color: #725c3b;
}
.latest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.1rem;
}
.latest-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  text-decoration: none;
  color: #232323;
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s;
}
.latest-card:hover {
  transform: translateY(-4px) scale(1.019);
  box-shadow: 0 8px 28px rgba(199,124,46,0.09);
}
.latest-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}
.latest-card .card-content {
  padding: 1em 1.1em 0.9em 1.1em;
}
.latest-card .card-meta {
  color: #c77c2e;
  font-size: 0.91rem;
  margin-top: 0.4em;
  display: block;
}

/* Responsive: stack alles op mobiel */
@media (max-width: 700px) {
  .featured-grid, .latest-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  .blog-title { font-size: 1.18rem; }
}/* End custom CSS */