.post-article--konferenscase .post-article__header {
    height: max-content;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;    
}
.post-article--konferenscase .post-article__header .post-article__hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
}
.post-article--konferenscase .post-article__header .post-article__hero {
    background-size: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
}
.post-article--konferenscase .post-article__header .post-article__hero img {
    object-fit: cover;
    background-position: center center;
    width: 100%;
    height: 100%;
    min-height: 50vh;
}
.post-article--konferenscase .post-article__header .post-article__intro-container {
    width: 100%;
    max-width: 1200px; 
    padding: 25px;
    margin: auto;
    position: absolute;
    bottom: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 50px;
}
.post-article--konferenscase .post-article__header .post-article__intro-container .post-article__heading {
    color: #fff;
    font-size: 3.25rem;
    text-align: center;
    max-width: 768px;
    margin: 0 auto;
}
@media (max-width: 640px) {
    .post-article--konferenscase .post-article__header .post-article__intro-container .post-article__heading {
       font-size: 2rem; 
    }
}
.post-article--konferenscase .post-article__header .post-article__intro-container .post-article__time {
    color: #f4f4f4;
}
.post-article--konferenscase .post-article__body {
    width: 100%;
    max-width: 1200px; 
    margin: auto;
    padding: 0 25px 50px 25px;
}

/* =======================================
   RELATED POSTS — KONFERENSCASE
======================================= */

.related-posts {
  margin-top: 4rem;
  padding: 3rem 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.related-posts__heading {
  font-size: 2rem;
  margin: 0 0 2rem;
  text-align: center;
}

/* Grid wrapper */
.related-posts__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* Individual related post card */
.related-post {
  padding: 0rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.related-post__thumb img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}

.related-post__title {
  font-size: 1.4rem;
  margin: 0 0 0.5rem;
}

.related-post__title a {
  color: inherit;
  text-decoration: none;
}

.related-post__title a:hover {
  text-decoration: underline;
}

.related-post__date {
  font-size: 0.9rem;
  color: #777;
}

/* Responsive columns */
@media (min-width: 640px) {
  .related-posts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .related-posts__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
