.blog-show-hero {
  width: 100%;
  height: 480px;
}
.blog-show-hero__mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(1deg, rgba(18, 31, 62, 0.9) 0%, rgba(18, 31, 62, 0) 100%);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
.dark-mode .blog-show-hero__mask {
  background: linear-gradient(1deg, rgba(170, 184, 197, 0.9) 0%, rgba(170, 184, 197, 0) 100%);
}

.blog-show-cover-image {
  width: 100%;
  height: 560px;
}
@media (max-width: 991px) {
  .blog-show-cover-image {
    height: 360px;
  }
}

.blog-show-body {
  position: relative;
  top: -368px;
  margin-bottom: -368px;
  z-index: 5;
}
.blog-show-body__header {
  position: relative;
  top: -78px;
  margin-bottom: -78px;
}
.blog-show-body__header-mask {
  position: absolute;
  top: 8px;
  left: 32px;
  right: 32px;
  bottom: -8px;
  border-radius: 32px;
  opacity: 0.5;
  background: var(--white);
}
.blog-show-body__header-first-item-line {
  border-left: 1px solid var(--gray-200);
}
@media (max-width: 991px) {
  .blog-show-body__header-first-item-line {
    border: 0;
  }
}

.post-author-info-card__mask {
  position: absolute;
  inset: 8px;
  bottom: -8px;
  border-radius: 16px;
  opacity: 0.5;
  background: var(--white);
  z-index: 1;
}
.post-author-info-card__secondary-img {
  width: 308px;
  height: 316px;
  bottom: 0;
  top: -40px;
  margin-bottom: -40px;
}
@media (max-width: 991px) {
  .post-author-info-card__secondary-img {
    bottom: auto;
    top: auto;
    margin-bottom: 0;
    width: 100%;
  }
}
.post-author-info-card__details {
  width: calc(100% - 332px);
}
.post-author-info-card__details-about {
  height: 84px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .post-author-info-card__details {
    width: 100%;
  }
}

.post-bottom-fixed-card {
  position: fixed;
  bottom: -150%;
  left: 0;
  right: 0;
  padding: 16px 0;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.02);
  transition: all 0.5s ease;
  z-index: 50;
}
.post-bottom-fixed-card.show {
  bottom: 0;
}
.post-bottom-fixed-card__post-img {
  width: 68px;
  height: 48px;
}
.post-bottom-fixed-card__progress {
  position: fixed;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: transparent;
  z-index: 55;
}
.post-bottom-fixed-card__progress .progress-line {
  width: 0;
  height: 100%;
  background-color: var(--primary);
}

.author-random-post-image {
  width: 68px;
  height: 48px;
}
