.more-blog .post-title a {
  color: var(--primary-color);
  transition: color 0.2s ease;
}

.more-blog .post-title a:hover {
  color: var(--secondary-color);
}

.box-text-inner.blog-post-inner {
  margin-bottom: -20px;
}

/* =================   HEADER SINGLE POST =========================== */

body.single-post .elv-hero,
body.single-post .entry-header {
  background: #F6E9AD !important;
  background-image: none !important;
  color: var(--primary-color);
  text-align: center;
  padding: clamp(60px, 9vw, 130px) 20px;
  margin: -30px calc(50% - 50vw) 60px;
}

body.single-post .entry-header-text {
  max-width: 900px;
  margin: 0 auto;
}

body.single-post h1.entry-title {
  margin: 0 0 12px;
  line-height: 1.1;
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.5px;
}

body.single-post .entry-category a,
body.single-post .entry-meta,
body.single-post .entry-meta a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-family: "Moret";
  font-size: 20px;
}

body.single-post .entry-category a:hover {
  color: var(--secondary-color);
}

body.single-post .entry-image {
  display: none !important;
}

/* =====================================================
   SINGLE BLOG – CLEAN STABLE VERSION (NO STICKY)
===================================================== */

/* ---------- Layout ---------- */

body.single-post .entry-content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px 60px;
}

/* ---------- Text ---------- */

body.single-post .entry-content {
  flex: 0 0 55%;
  max-width: 680px;
  line-height: 1.7;
}

/* ---------- Gallery ---------- */

/* wanneer er geen gallery is */
body.single-post .entry-content-wrapper.no-gallery {
  display: block;
}

body.single-post .entry-content-wrapper.no-gallery .entry-content {
  max-width: 900px;
  margin: 0 auto;
}

body.single-post .entry-content-wrapper.no-gallery .entry-content {
  max-width: 820px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.8;
}

body.single-post .single-gallery-right {
  flex: 0 0 45%;
  max-width: 520px;
}

/* ---------- Images ---------- */

body.single-post .gallery-item {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 2rem;
}

body.single-post .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .3s ease;
}

body.single-post .gallery-item:hover img {
  transform: scale(1.03);
}

/* ---------- Gallery Variations ---------- */

body.single-post .gallery-count-3,
body.single-post .gallery-count-4,
body.single-post .gallery-count-5 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

body.single-post .gallery-count-3 .gallery-item:first-child,
body.single-post .gallery-count-4 .gallery-item:first-child {
  grid-column: span 2;
}


.blog-latest {
  background: var(--primary-color);
  padding: 8rem 0;
}

.blog-latest .recepten-latest__inner {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  align-items: center;
}

.blog-latest .recepten-latest__right {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.blog-latest .latest-card {
  flex: 1 1 calc(50% - 2rem);
  max-width: 450px;
  position: relative;
}
/* Alleen tekst links in blog-latest wit maken */

.blog-latest .recepten-latest__left h2,
.blog-latest .recepten-latest__left p {
  color: #fff !important;
}

.blog-latest .latest-card {
  position: relative;
  flex: 1 1 calc(50% - 2rem);
  max-width: 450px;
  transition: all 0.25s ease;
}

.blog-latest .latest-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.blog-latest .latest-card__img {
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
}

.blog-latest .latest-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-latest .latest-card__overlay {
  position: absolute;
  bottom: -3rem;
  left: 20px;
  right: 20px;
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
}

.blog-latest .latest-card__overlay:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.blog-latest .latest-card__badge {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 10px;
}

.blog-latest .latest-card__title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

div.recepten-lastest__left{
	color:white;
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {

  body.single-post .entry-content-wrapper {
    flex-direction: column;
  }

  body.single-post .entry-content,
  body.single-post .single-gallery-right {
    flex: 1 1 100%;
    max-width: 100%;
  }

}