<style>
body {
  background: #fff;
  color: #1b1e21;
  font-family: 'Inter', Arial, sans-serif;
}
#blogcontent {
  max-width: 940px;
  margin: 60px auto 70px auto;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 38px rgba(27,30,33,0.09);
  padding: 0;
  overflow: hidden;
}
.blog-header-img-wrap {
  width: 100%;
  min-height: 220px;
  max-height: 380px;
  overflow: hidden;
  border-radius: 22px 22px 0 0;
  background: #eaeaea;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-details-inner {
  padding: 60px 54px 40px 54px;
  text-align: left;
}
.blog-title {
  font-size: 2.1rem;
  font-weight: 800;
  color: #1b1e21;
  margin-bottom: 20px;
  line-height: 1.13;
  letter-spacing: -0.015em;
}
.blog-meta {
  font-size: 1em;
  color: #999;
  margin-bottom: 32px;
  font-family: inherit;
}
.blog-description {
  font-size: 1.15rem;
  line-height: 1.74;
  color: #1b1e21;
  margin: 0 0 36px 0;
  font-family: inherit;
  text-align: left;
}
.blog-description strong,
.blog-description b {
  color: #1b1e21;
  font-weight: 700;
}
.blog-description h2,
.blog-description h3,
.blog-description h4 {
  color: #1b1e21;
  font-weight: 800;
  margin-top: 32px;
  margin-bottom: 14px;
  font-size: 1.18em;
  letter-spacing: -0.01em;
}
.blog-description a {
  color: #1b1e21;
  text-decoration: underline;
  font-weight: 500;
  transition: color .13s;
}
.blog-description a:hover {
  color: #274192;
}
.blog-group {
  margin: 0 0 2.4em 0;
  display: flex;
  flex-direction: column;
  gap: 0.4em;
}
.blog-group p {
  margin: 0;
  text-align: left;
}
@media (max-width: 1050px) {
  #blogcontent { max-width: 99vw;}
  .blog-details-inner { padding: 32px 4vw 14px 4vw; }
  .blog-title { font-size: 1.25rem; }
  .blog-header-img-wrap { min-height: 100px; max-height: 160px; }
}

.blog-original-btn {
  display: inline-block;
  background: #f8db7c;
  color: #1b1e21;
  font-weight: 700;
  font-size: 1.05em;
  border: none;
  border-radius: 8px;
  padding: 0.58em 1.6em;
  margin-top: 28px;
  text-decoration: none;
  box-shadow: 0 2px 9px rgba(27,30,33,0.07);
  transition: background 0.16s, color 0.16s, box-shadow 0.19s;
  letter-spacing: 0.01em;
  cursor: pointer;
}
.blog-original-btn:hover {
  background: #ffe8a8;
  color: #1b1e21;
  box-shadow: 0 6px 20px rgba(27,30,33,0.13);
  text-decoration: none;
}

.similar-posts-section {
  margin: 56px 0 0 0;
}
.similar-posts-title {
  font-size: 1.6em;
  font-weight: 900;
  margin-bottom: 1.1em;
  color: #1b1e21;
}
.similar-posts-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.similar-card {
  flex: 1 1 0;
  max-width: 320px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(27,30,33,0.10);
  transition: box-shadow 0.16s, transform 0.13s;
  text-decoration: none;
  color: #1b1e21;
  min-width: 220px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.similar-card:hover {
  box-shadow: 0 8px 32px rgba(27,30,33,0.15);
  transform: translateY(-4px) scale(1.02);
  text-decoration: none;
}
.similar-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  background: #f5f5f5;
  min-height: 120px;
}
.similar-card-content {
  padding: 18px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 0.3em;
  height: 100%;
}
.similar-card-title {
  font-size: 1.05em;
  font-weight: 700;
  margin-bottom: 0.42em;
  color: #1b1e21;
  line-height: 1.2;
  min-height: 2.3em;
}
.similar-card-desc {
  color: #414449;
  font-size: 0.97em;
  font-weight: 400;
  opacity: 0.96;
  line-height: 1.5;
  min-height: 2.7em;
  max-height: 3.2em;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1020px) {
  .similar-posts-list { flex-direction: column; gap: 18px; }
  .similar-card { max-width: 100%; }
}

.related-section {
    margin-top: 56px;
}
.related-headline {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;   /* <-- Zentral statt links! */
    margin-bottom: 28px;
    color: #1b1e21;
    letter-spacing: -0.5px;
}

.related-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;   /* <-- Karten zentrieren */
}

.related-card {
    flex: 0 1 340px;            /* Max 340px, flexibles Shrinken */
    min-width: 260px;
    max-width: 340px;
    width: 100%;
    margin-bottom: 0;           /* Kein zusätzlicher Abstand nötig */
}

/* Mobil-Ansicht: untereinander */
@media (max-width: 900px) {
    .related-grid {
        flex-direction: column;
        align-items: center;
    }
    .related-card {
        width: 95%;
        max-width: 430px;
    }
}

.related-card:hover {
    box-shadow: 0 2px 32px 0 rgba(27,30,33,0.16);
}
.related-image-wrap img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 18px 18px 0 0;
    display: block;
    background: #f5f5f5;
}
.related-body {
    padding: 20px 18px 16px 18px;
}
.related-title {
    font-size: 1.13rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #1b1e21;
    line-height: 1.35;
}
.related-teaser {
    font-size: 0.99rem;
    color: #555a5f;
    line-height: 1.5;
}


.blog-similar-section {
  padding-left: 3vw;
  padding-right: 3vw;
}

.blog-similar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.blog-similar-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 28px 0 rgba(30,32,38,0.11); /* etwas kräftiger */
  transition: box-shadow .18s, transform .14s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #1b1e21;
  overflow: hidden;
  min-height: 350px;
  margin-left: 0.5vw;
  margin-right: 0.5vw;
}
.blog-similar-card:hover {
  box-shadow: 0 16px 36px 0 rgba(30,32,38,0.16);
  transform: translateY(-4px) scale(1.02);
}

.blog-similar-imgwrap img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 18px 18px 0 0;
  display: block;
}

.blog-similar-title {
  font-weight: 700;
  font-size: 1.07rem;
  margin: 1rem 0 .4rem 0;
}

.blog-similar-teaser {
  color: #454545;
  font-size: 0.98rem;
  margin-bottom: 1.1rem;
}

@media (max-width: 900px) {
  .blog-similar-grid { grid-template-columns: 1fr; }
  .blog-similar-section { padding: 0 1vw; }
}


</style>
