.blog-page {
  padding: 3rem 0;
}
.hero-blog {
  padding: 0px 0 0px;
  background: var(--bg-soft);
  text-align: center;
}
.blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin: 1.5rem 0;
}

/* Make the blog page container wider */
.blog-page .container {
  max-width: 1280px;
  width: 100%;
}

.cat-btn {
  background: #f5f5f5;
  border: 1px solid #ccc;
  padding: .5rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: .2s;
}
.cat-btn.active,
.cat-btn:hover {
  background: #F0F0F0;
  color: #000;
  box-shadow: 0 4px 4px rgba(0,0,0,0.05);
}
.blog-search {
  display: flex;
  margin-bottom: 2rem;
}

/* Breadcrumb */
.info-breadcrumb {
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.info-breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 0.4rem;
}

.info-breadcrumb a {
  color: #646464;
  text-decoration: none;
}

.info-breadcrumb li + li:before {
  content: "/";
  margin: 0 0.25rem 0 0.1rem;
  color: #999;
}

/* HERO unified for Blog, Artist, Curator */
.info-hero {
  text-align: center;
  padding: 2rem 1.8rem 3rem;
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #eaeaea;
}

.info-hero h1 {
  font-size: 2rem;
  margin-bottom: 0.8rem;
  color: #222;
}

.info-hero p {
  max-width: 800px;
  margin: 0.6rem auto;
  color: #646464;
  font-size: 1rem;
  line-height: 1.55;
}

.blog-search input {
  flex: 1;
  padding: .6rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px 0 0 6px;
}
.blog-search button {
  background: #ccc;
  border: 1px solid #ccc;
  padding: .6rem 1rem;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* max 3 per rij */
  gap: 1.5rem;
}
.blog-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.blog-thumb {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.blog-content {
  padding: 1rem;
}
.blog-content h2 {
  font-size: 1rem;
  color: #333;
  margin: .5rem 0;
}
.blog-content p {
  display: -webkit-box;
  -webkit-line-clamp: 3; /* aantal regels */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-category {
  display: inline-block;
  font-size: .75rem;
  background: #f0f0f0;
  border-radius: 4px;
  padding: 2px 8px;
  color: #555;
}
.blog-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ============================================================
   BLOG LISTING — RESPONSIVE TWEAKS
============================================================ */


/* ---------- TABLET & SMALL LAPTOPS ---------- */
@media (max-width: 900px) {

  .blog-page {
    padding: 2rem 0;
  }

  .hero-blog {
    padding: 10px 0 20px;
  }

  /* Category buttons */
  .blog-categories {
    gap: .4rem;
    justify-content: center;
  }

  .cat-btn {
    padding: .45rem .9rem;
    font-size: .9rem;
  }

  /* Search bar */
  .blog-search {
    flex-direction: row;
    margin-bottom: 1.5rem;
  }
  .blog-search input {
    font-size: .95rem;
  }
  .blog-search button {
    font-size: .95rem;
  }

  /* Grid tighter */
  .blog-grid {
    gap: 1rem;
  }

  .blog-card {
    border-radius: 10px;
  }

  .blog-thumb {
    height: 150px;
  }

  .blog-content h2 {
    font-size: .95rem;
  }

  .blog-content p {
    font-size: .85rem;
  }
}



/* ---------- MOBILE COMPACT ---------- */
@media (max-width: 600px) {

  .blog-page {
    padding: 1.6rem 0;
  }

  .hero-blog {
    padding: 6px 0 16px;
  }

  /* Category buttons stack if needed */
  .blog-categories {
    gap: .3rem;
    justify-content: center;
  }

  .cat-btn {
    padding: .4rem .75rem;
    font-size: .85rem;
  }

  /* Search bar stacked to fit small screens */
  .blog-search {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1.2rem;
  }
  .blog-search input {
    border-radius: 6px;
  }
  .blog-search button {
    width: 100%;
    border-radius: 6px;
    padding: .65rem;
  }

  /* Grid turns into 2 columns clean or full width if needed */
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
  }

  /* Card scaling */
  .blog-card {
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,.04);
  }

  .blog-thumb {
    height: 120px;
  }

  .blog-content {
    padding: .8rem;
  }

  .blog-content h2 {
    font-size: .9rem;
    line-height: 1.25;
  }

  .blog-content p {
    font-size: .78rem;
    line-height: 1.35;
  }

  .blog-category {
    font-size: .7rem;
    padding: 2px 6px;
  }
}


/* ---------- EXTRA SMALL / VERY NARROW DEVICES ---------- */
@media (max-width: 420px) {

  .blog-grid {
    grid-template-columns: 1fr; /* full width */
  }

  .blog-thumb {
    height: 150px;
  }

  .blog-card {
    border-radius: 10px;
  }

  .blog-content p {
    font-size: .8rem;
  }
}
