.page-id-1995 .entry-title {
  display: none;
}


/* Superheldin Autorenbox */
/* Greift nur auf einzelnen WordPress-Beiträgen */

body.single-post .sh-author-box {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin: 56px 0 32px;
  padding: 32px;
  background: #F7F2F0;
  border: 1px solid #E0D7EC;
  border-radius: 28px;
  color: #3B176F;
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  box-sizing: border-box;
}

body.single-post .sh-author-box,
body.single-post .sh-author-box * {
  box-sizing: border-box;
}

body.single-post .sh-author-box__avatar {
  flex: 0 0 auto;
}

body.single-post .sh-author-box__avatar-img {
  display: block;
  width: 96px;
  height: 96px;
  max-width: 96px;
  border-radius: 999px;
  object-fit: cover;
  border: 3px solid #8FFF3C;
  background: #ffffff;
}

body.single-post .sh-author-box__content {
  flex: 1;
  min-width: 0;
}

body.single-post .sh-author-box__eyebrow {
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #6D3CC8;
}

body.single-post .sh-author-box__name {
  margin: 0 0 10px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  font-weight: 800;
  color: #3B176F;
}

body.single-post .sh-author-box__bio {
  margin: 0;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.65;
  color: #3B176F;
}

body.single-post .sh-author-box__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

body.single-post .sh-author-box__tags span {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: #F1E8FF;
  color: #3B176F;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 700;
}

body.single-post .sh-author-box__link {
  display: inline-flex;
  align-items: center;
  margin-top: 20px;
  color: #3B176F;
  font-size: 15px;
  line-height: 1.4;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

body.single-post .sh-author-box__link:hover,
body.single-post .sh-author-box__link:focus {
  color: #6D3CC8;
}

@media (max-width: 700px) {
  body.single-post .sh-author-box {
    flex-direction: column;
    gap: 18px;
    margin: 40px 0 24px;
    padding: 24px;
    border-radius: 22px;
  }

  body.single-post .sh-author-box__avatar-img {
    width: 82px;
    height: 82px;
    max-width: 82px;
  }

  body.single-post .sh-author-box__bio {
    font-size: 15px;
    line-height: 1.6;
  }
}