main#content {
    max-width: 100%;
}

.post-featured-image, .page-content {
    margin: 0 auto;
    max-width: var(--content-width);
    width: 100%;
    --content-width: min(100%, var(--container-max-width, 1140px));
    --container-max-width: 1300px;
    margin-top: 40px;
    margin-bottom: 40px;
}

h1.entry-title {
    max-width: 100%!important;
}

/* === HERO για το markup σου (.page-hero / .page-hero__inner) === */
.page-hero{
    position: relative;
  
    /* Ζητήθηκε αυτούσιο background */
    background-color: #000000;
    background-image: url(https://vlogismos.gr/wp-content/uploads/2025/10/PFQBUKD.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  
    /* Ύψος & στοίχιση περιεχομένου */
    min-height: 360px;             /* άλλαξέ το σε 100vh για full-screen */
    display: flex;
    align-items: center;            /* κάθετα στο κέντρο */
    justify-content: flex-start;    /* αριστερά */
    color: #fff;
    overflow: hidden;
  }
  
  /* Σκοτεινό overlay για αναγνωσιμότητα (προαιρετικό, αλλά βοηθά) */
  .page-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background-color: transparent;
    --background-overlay: '';
    background-image: linear-gradient(285deg, var(--e-global-color-abbff41) 0%, var(--e-global-color-fe73b6c) 70%);
    pointer-events:none;
    z-index:0;
  }
  
  /* Εσωτερικό container με τα ζητούμενα widths */
  .page-hero__inner{
    position: relative;
    z-index: 1;                     /* πάνω από το overlay */
    max-width: var(--content-width);
    width: 100%;
    --content-width: min(100%, var(--container-max-width, 1140px));
    --container-max-width: 1300px;
    box-sizing: border-box;
    margin: auto;
  }

  .post .wp-post-image {
    max-height: 800px;
  }
  
  /* Τίτλος & breadcrumbs λευκά */
  .page-hero .entry-title{
    color:#fff;
    margin:0 0 8px 0;
    line-height:1.1;
  }
  
  .post-breadcrumbs{
    font-size:14px;
  }
  .post-breadcrumbs a{
    color:#fff;
    font-weight:600;                /* ζητήθηκε */
    text-decoration:none;
  }
  .post-breadcrumbs a:hover{
    text-decoration:underline;
  }
  .post-breadcrumbs span{
    color:rgba(255,255,255,.95);
  }
.post-featured-image {
    margin-top: 75px;
    margin-bottom: 60px;
}
  /* Τίτλοι – πιο μακριά από πριν, πιο κοντά στο κείμενό τους */
.page-content h2,
.page-content h3,
.page-content h4 {
  margin-top: 60px;      /* απόσταση από το προηγούμενο */
  margin-bottom: 12px;   /* κοντά στο κείμενο που ακολουθεί */
  line-height: 1.3;
}

/* Παράγραφοι */
.page-content p {
  margin-top: 0;
  margin-bottom: 24px;
  color: #3D413F;
}

/* Εικόνες */
.page-content img,
.page-content figure {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 40px auto;
}



@media (max-width: 1024px) {
    .post-featured-image, .page-content, .page-hero__inner{ --container-max-width: 90%; }
    .page-hero{ min-height: 280px; }

}