.m-15.dvore_prg_pagination_show_previous_products_container {
  text-align: center;
}
.dvore-front-blog-content {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: min-content;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
}
.dvore-front-blog-content-overview {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgb(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.dvore-front-blog-content-overview-img-container {
  position: relative;
}
.dvore-front-blog-content-overview .dvore-front-blog-content-overview-img-container {
  display: flex;
  align-items: center;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}
.dvore-front-blog-content-overview .dvore-front-blog-content-overview-img-container figure {
  width: 100%;
}
.dvore-front-blog-content-overview img {
  max-width: 100vw;
  width: 100%;
  height: auto;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
}

.dvore-front-blog-content-overview-tag-container {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.dvore-front-blog-content-overview-tag {
  background-color: var(--color-primary);
  padding: 5px;
  font-size: 0.8rem;
  color: var(--color-white) !important;
  opacity: 0.5;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  display: none;
}
.dvore-front-blog-content-overview:hover
  .dvore-front-blog-content-overview-tag {
  opacity: 1;
}

.dvore-front-blog-content-overview-title {
  font-size: 1.5rem;
  margin: 0;
  font-family: var(--font-title);
  font-weight: 800;
  color: var(--color-dark);
}
.dvore-front-blog-content-overview-info-container {
  position: relative;
  padding: 30px 30px 100px 30px;
}
.dvore-front-blog-content-overview a.btn {
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.dvore-front-blog-content-overview-info-container .dvore-front-blog-content-overview-info-author-image {
  position: absolute;
  width: 85px;
  height: 85px;
  top: -60px;
  right: 20px;
  border-radius: 50%;
  -webkit-box-shadow: -1px 3px 10px 5px rgb(0 0 0 / 10%);
  box-shadow: -1px 3px 10px 5px rgb(0 0 0 / 10%);
}
.dvore-front-blog-content-overview-info-2 {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.dvore-front-blog-content-overview-date {
  text-transform: uppercase;
  font-size: 12px;
  font-family: var(--font-title);
  font-weight: 500;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.dvore-front-blog-content-overview-date > span:not(.dvore-front-article-date-modified) {
  margin-right: 10px;
}
.dvore-front-article-date-modified {
  padding: 0.25em 0.6em;
  border-radius: 0.215rem;
  font-size: 90%;
}
.dvore-front-blog-content-overview-author {
  text-transform: uppercase;
  font-size: 14px;
  font-family: var(--font-title);
  font-weight: 500;
  margin-left: 10px;
  position: relative;
  display: none;
}
.dvore-front-blog-content-overview-author:before {
  content: "|";
  margin-right: 10px;
}

@media (max-width: 991px) {
  .dvore-front-blog-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .dvore-front-blog-content {
    grid-template-columns: repeat(1, 1fr);
  }
}
