  /* =============================================
     CONTENT CONTAINER
     ============================================= */


  .kek-page-content {
    position: relative;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    margin: 4rem auto;
    border-radius: 8px;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28); */
    backdrop-filter: blur(2px);
    max-width: var(--max-width);
  }
  
  /* =============================================
     PAGE HEADER & TYPOGRAPHY
     ============================================= */
  
  .page-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-grey);
  }
  
  .page-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: var(--color-hero);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    font-weight: 700;
  }
  
  .page-content {
    line-height: 1.7;
    font-size: 1.1rem;
    color: #444;
  }
  
  .page-content > * {
    margin-bottom: 1.5rem;
  }
  
  .page-content h2 {
    font-family: var(--font-heading);
    color: var(--color-var);
    margin: 2.5rem 0 1.25rem;
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
  }
  
  .page-content h3 {
    font-family: var(--font-heading);
    color: var(--color-hero-dark);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    font-weight: 600;
  }
  
  .page-content p {
    margin-bottom: 1.5rem;
  }
  
  .page-content a {
    color: var(--color-var);
    text-decoration: underline;
    transition: all 0.2s ease;
  }
  
  .page-content a:hover {
    color: var(--color-hero-dark);
  }
  
  /* =============================================
     COMMENTS SECTION
     ============================================= */
  
  .comments-container {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--color-grey);
  }
  
 
  
  /* =============================================
     RESPONSIVE ADJUSTMENTS
     ============================================= */
  
  @media (max-width: 1200px) {
    .kek-page-content {
      margin: 4rem 2rem;
    }
  }
  
  @media (max-width: 992px) {
    .kek-page-content {
      padding: 2.5rem;
      margin: 3rem auto;
    }
    
    .page-title {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 768px) {
    .kek-page-background {
      filter: blur(8px) brightness(0.9);
      opacity: 0.6;
      transform: scale(1.02);
    }
    
    .kek-page-content {
      padding: 2rem;
      margin: 2rem;
      backdrop-filter: none;
    }
    
    .page-title {
      font-size: 1.8rem;
    }
    
    .page-content h2 {
      font-size: 1.5rem;
      margin: 2rem 0 1rem;
    }
    
    .page-backgrounds-grid {
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
  }
  
  @media (max-width: 576px) {
    .kek-page-content {
      padding: 1.5rem;
      margin: 1.5rem;
    }
    
    .page-title {
      font-size: 1.6rem;
    }
    
    .page-content {
      font-size: 1rem;
    }
    
    .page-backgrounds-grid {
      grid-template-columns: 1fr;
    }
  }

/* Titelblok met afbeelding - volledige schermbreedte en tegen header aan */
.page-title-wrapper-fullwidth {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 0; 
  overflow: hidden;
}

.page-title-image {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  width: 100%;
}

/* Blur effect voor de achtergrondafbeelding */
.page-title-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 30%, var(--color-white) 100%); 
    z-index: 0;
}


/* Titelstyling */
.page-title-image .page-title {
  color: var(--color-white);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
  font-size: 2.5rem;
  padding: 20px;
  background-color: rgba(0,0,0,0.6);
  border-radius: 5px;
  display: inline-block;
  position: relative;
  z-index: 1;
  margin: 0 auto; /* Gecentreerd */
}

  .wp-block-button a {
    background-color: var(--color-blue-logo) !important;
    color: var(--color-white);
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    font-weight: 700 !important;
}