/* =======================================
  8. Blog
======================================= */

.wtoolkit-blog-post {
  display: grid;
  gap: 20px;
}

.wtoolkit-blog-title a {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  transition: inherit;
}

.wtoolkit-blog-title a:hover {
  color: inherit;
}

.wtoolkit-post-meta-category a {
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  transition: inherit;
}

.wtoolkit-post-item,
.wtoolkit-post-item-overlay {
  overflow: hidden;
  box-shadow: var(--theme-box-shadow);
  border-radius: var(--theme-box-rounded);
}

.wtoolkit-post-item:hover {
  box-shadow: var(--theme-box-shadow-hover);
}

.wtoolkit-thumbnail-post-grid a img {
  width: 100%;
}

.wtoolkit-post-item:hover .wtoolkit-thumbnail-post-grid {
  overflow: hidden;
}

.wtoolkit-post-item:hover .wtoolkit-thumbnail-post-grid a img {
  transform: scale(1.1) rotate(2deg);
  transition: transform 0.3s ease-in-out;
}

.wtoolkit-post-content {
  width: -webkit-fill-available;
}

span.wtoolkit-sticky-post {
  position: absolute;
  max-width: 200px;
  width: 100%;
  top: 35px;
  right: -55px;
  transform: rotatez(45deg);
  z-index: 2;
}

.wtoolkit-post-category {
  position: absolute;
  top: 25px;
}

.wtoolkit-post-category ul.post-categories {
  display: flex;
  column-gap: 10px;
}

.wtoolkit-post-category a {
  display: block;
  background-color: var(--theme-color-secondary);
  color: var(--theme-color-white);
  padding: 10px 25px;
  border-radius: var(--theme-box-rounded);
}

.wtoolkit-post-category a:hover {
  color: var(--theme-color-white);
}

ul.wtoolkit-pagination {
  column-gap: 10px;
  margin-top: 45px;
  margin-bottom: 0;
}

ul.wtoolkit-pagination li {
  align-items: center;
  justify-content: center;
}

ul.wtoolkit-pagination li a {
  color: var(--theme-color-secondary);
  box-shadow: none;
}

ul.wtoolkit-pagination li a:focus {
  color: var(--theme-color-secondary);
  box-shadow: none;
}

ul.wtoolkit-pagination li.page-item span.page-link.dots {
  color: var(--theme-color-border);
}

ul.wtoolkit-pagination li.page-item a.prev::after {
  font-family: var(--theme-font-awesome);
  font-weight: var(--theme-icon-solid-font-weight);
  content: '\f053';
}

ul.wtoolkit-pagination li.page-item a.next::after {
  font-family: var(--theme-font-awesome);
  font-weight: var(--theme-icon-solid-font-weight);
  content: '\f054';
}

ul.wtoolkit-pagination li.page-item a.page-link {
  display: flex;
  border-radius: var(--theme-box-circle);
  padding: var(--theme-space-none);
  border: none;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
}

ul.wtoolkit-pagination li.page-item.active span.page-link.current {
  display: flex;
  border-radius: var(--theme-box-circle);
  padding: var(--theme-space-none);
  border: none;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  background-color: var(--theme-color-primary);
}

ul.wtoolkit-pagination li.page-item span.page-link.dots {
  display: flex;
  border-radius: var(--theme-box-circle);
  padding: var(--theme-space-none);
  border: none;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
}

ul.wtoolkit-pagination li.page-item a:not(.current).page-link {
  background-color: var(--theme-color-whitesmoke);
}

ul.wtoolkit-pagination li.page-item a:not(.current).page-link:hover {
  background-color: var(--theme-color-secondary);
  color: var(--theme-color-white);
}