/* =================================
PAGE: BLOG
===================================*/

._blog_post {
  margin-bottom: 50px;
}

._blog_post img {
  border-radius: 3px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

._blog_author i {
  margin-right: 5px;
  font-size: 18px;
}

._blog_btn {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-main);
}

._blog_btn:hover {
  transition: all 0.35s ease;
  color: var(--color-gray);
}

.pagination {
  display: flex;
  justify-content: center;
}

.page-item {
  margin: 0 3px;
}

.page-item a {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  color: var(--color-black);
  background-color: var(--color-white);
  border: 1px solid var(--color-gray);
  text-decoration: none;
}

.page-item a:hover {
  color: var(--color-main);
}

.page-item.active a {
  background-color: #333;
  color: var(--color-white);
}



/* =================================
PAGE: BLOG SINGLE
===================================*/

.image-box {
  display: block;
}

.image-box img {
  border-radius: 10px;
  box-shadow: 0px 0px 20px -5px rgba(0, 0, 0, 0.2);
  margin: 0 0 30px 0;
}


.image-box {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}