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