.featured-image {
  margin-bottom: 45px;
}

.featured-image * {
  display: block;
}

.featured-image figure {}

.featured-image img {
  margin: 0 auto;
  max-width: 100%;
  max-height: 640px;
  width: auto;
  height: auto;
}

.featured-image figcaption {
  margin-top: 12px;
  color: #777;
  text-align: left;
  font-size: 14px;
}

.featured-image figcaption:empty {
  display: none;
}

.author-box {
  margin: clamp(50px, 9vw, 70px) auto 0 auto;
  padding: 100px 100px;
}

@media (max-width: 768px) {
  .author-box {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.author-box .name {
  color: var(--clr-dark-blue);
  font-weight: bold;
  font-size: 20px;
  font-family: var(--ff-heading);
}

.author-box .bio {
  margin-top: 12px;
}

.author-box .bio p {
  margin: 0;
  font-size: 15px;
}

/* Related posts */
.related-posts .section-title {
  margin: 0 0 clamp(30px, 6vw, 40px) 0;
  color: var(--clr-dark-blue);
  font-size: 28px;
  font-family: var(--ff-heading);
}

.single-related-post {
  display: grid;
  grid-template-areas:
    "cover"
    "category"
    "title";
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.single-related-post figure * {
  display: block;
}

.single-related-post figure {
  grid-area: cover;
}

.single-related-post figure :is(a, img) {
  width: 100%;
  height: 140px;
  object-fit: cover;
  object-position: center;
}

.single-related-post :is(.category, .title) {
  color: var(--clr-dark-blue);
}

.single-related-post .category {
  margin-top: 13px;
  grid-area: category;
}

.single-related-post .category,
.single-related-post .category a {
  text-transform: uppercase;
  letter-spacing: 0.7px;
  line-height: 1.5;
  font-weight: normal;
  font-size: clamp(10px, 1.5vw, 12px);
}

.single-related-post .title {
  margin-top: 7px;
  font-weight: bold;
  font-size: clamp(18px, 3vw, 20px);
  font-family: var(--ff-heading);
  line-height: 1.3;
  grid-area: title;
}

#related-posts-slider .owl-dots {
  margin: 30px 0 -10px 0;
  padding: 0;
  text-align: center;
}

#related-posts-slider .owl-dots .owl-dot {
  display: inline-block;
}

#related-posts-slider .owl-dots span {
  display: inline-block;
  margin: 0 6px;
  width: 12px;
  height: 12px;
  border: 1px solid var(--clr-dark-blue);
  border-radius: 12px;
  background: none;
  opacity: 1;
}

#related-posts-slider .owl-dots .active span {
  background: var(--clr-dark-blue);
}

@media (max-width: 768px) {
  .single-related-post figure :is(a, img) {
    height: 40vw;
  }
}