.single-post .hero {
  max-width: 1500px;
  margin: 0 auto;
}

/* Post blog */
.single-post_container {
  display: flex;
  flex-direction: column;
  max-width: 1500px;
  margin: 0 auto;
}

.blog-title {
  padding: 1rem;
}

.single-post-header {
  padding: 1rem;
}

.single-post-meta {
  font-size: 1rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.single-post-date {
  margin-right: 1rem;
  color: var(--color-gray);
}

.single-post-author {
  color: var(--color-gray);
  text-transform: capitalize;
}

/* Recent posts */
.recent-posts_title, .post-share_title, .recommended-posts_title {
  font-weight: 500;
}

.recent-posts_container {
  padding: 1rem;
}

.recent-posts {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-dark);
}

.recent-posts-list {
  list-style-type: disc;
  list-style-position: inside;
  padding-left: 0;
  margin-left: 0;
}

.recent-post-item {
  list-style: disc;
  margin: 0.5rem 1.5rem;
}

.post-share_item {
  margin: 0.5rem 0;
}

.post-share_item a {
  display: flex;
  align-items: center;
}

.post-share_item .arrow {
  margin-right: 0.5rem;
}

@media screen and (min-width: 1024px) {
  .single-post-header {
    padding: 0;
  }

  .single-post-content {
    display: flex;
    flex-direction: column;
  }

  .single-post_container {
    position: relative;
    padding: 2.5rem 5rem;
  }

  .recent-posts_container {
    position: absolute;
    right: 5rem;
    top: 5rem;
    padding: 0;
    max-width: 25%;
  }

  .single-post-meta {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .single-post-date {
    margin-right: 3rem;
  }
}