body.single #content {
  margin-top: 127px;
}

body.single .post-header {
  width: 100%;
  overflow: hidden;
  height: 388px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 80px;
}

body.single .post-header .post-header-overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(50, 56, 72, 0.3);
}

body.single .post-header .post-header-hero {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
}

body.single .post-header .post-header-content {
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 80px 16px;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  border-radius: 2px;
  max-width: 960px;
  min-height: 228px;
  width: 100%;
}

body.single .post-header .post-header-content .post-header-content-date {
  font-weight: bold;
  font-size: 18px;
  line-height: 27px;
  margin-bottom: 24px;
}

body.single .post-header .post-header-content .post-header-content-title {
  font-size: 35px;
  line-height: 44px;
  margin: 0
}

body.single .post-meta .post-meta-date {
  font-weight: bold;
  font-size: 12px;
  line-height: 14px;
  margin: 0 0 8px;
}

body.single .post-meta .post-meta-title {
  font-weight: normal;
  font-size: 24px;
  line-height: 32px;
  margin: 0 0 12px;
}

body.single .entry-content {
  margin-bottom: 80px;
}

body.single .entry-content p {
  font-weight: 300;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

body.single .entry-content h1,
body.single .entry-content h2,
body.single .entry-content h3,
body.single .entry-content h4,
body.single .entry-content h5,
body.single .entry-content h6 {
  margin: 40px 0 16px;
}

body.single .entry-content h2 {
  font-size: 28px;
  line-height: 35px;
}

body.single .author-info {
  margin-top: 40px;
  text-align: right;
  font-family: var(--e-global-typography-primary-font-family);
  font-weight: normal;
  font-size: 22px;
  line-height: 28px;
}

body.single .related-articles {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 60px;
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  body.single .post-header {
    height: 140px;
    margin-bottom: 24px;
  }

  body.single .entry-content {
    margin-bottom: 40px;
  }

  body.single .entry-content h2 {
    font-size: 22px;
    line-height: 28px;
    margin: 24px 0 12px;
  }

  body.single .entry-content p {
    font-size: 16px;
    line-height: 27px;
    letter-spacing: unset;
    margin-bottom: 8px;
  }

  body.single .author-info {
    text-align: left;
    font-size: 18px;
    line-height: 23px;
    margin-top: 24px;
  }

  body.single .related-articles {
    grid-template-columns: 1fr;
    grid-gap: 24px;
    margin-bottom: 40px;
  }
}