.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;
}

.dvore-front-blog-content-overview-img-container {
  position: relative;
}
.dvore-front-blog-content-overview img {
  max-width: 100vw;
  width: 100%;
  height: auto;
}
.dvore-front-blog-content-overview-img-container figure {
    position: relative;
    padding-bottom: 200px;
    width: 100%;
}
.dvore-front-blog-content-overview-img-container figure img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.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;
}
.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: 1rem 0 0 0;
  font-family: var(--font-title);
  font-weight: 500;
}
.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: 14px;
  font-family: var(--font-title);
  font-weight: 500;
}
.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;
}
.dvore-front-blog-content-overview-author:before {
  content: "|";
  margin-right: 10px;
}

@media (max-width: 768px) {
  .dvore-front-blog-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 680px) {
    .dvore-front-blog-content {
        grid-template-columns: repeat(1, 1fr);
    }
    .dvore-front-blog-content-overview-img-container figure {
        padding-bottom: 300px;
    }
    .dvore-front-blog-content-overview-img-container figure img {
        height: 300px;
    }
}
@media (max-width: 480px) {
    .dvore-front-blog-content-overview-img-container figure {
        padding-bottom: 200px;
    }
    .dvore-front-blog-content-overview-img-container figure img {
        height: 200px;
    }
}
