.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;
  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.25rem;
  color: var(--color-dark);
  font-family: var(--font-text);
  font-weight: bold;
}
.dvore-front-blog-content-overview-info-container {
  padding: 20px;
  border: 1px solid var(--color-pale-grey);
  background-color: var(--color-pale-grey);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}
.dvore-front-blog-content-overview-info-2 {
  margin-top: 10px;
}
.dvore-front-blog-content-overview-date {
  font-size: 0.9rem;
  font-family: var(--font-title);
  color: var(--color-dark);
  text-transform: lowercase;
}
.dvore-front-blog-content-overview-author {
  text-transform: uppercase;
  font-size: 0.9rem;
  color: var(--color-dark);
  font-family: var(--font-title);
  position: relative;
}
.dvore-front-blog-content-overview-btn {
  color: var(--color-dark);
  position: relative;
  border: 1px solid var(--color-dark);
  display: block;
  text-align: center;
  padding: 10px;
  transition: ease-in-out all 0.2s;
}
.dvore-front-blog-content-overview-btn:hover,
.dvore-front-blog-content-overview-btn:focus,
.dvore-front-blog-content-overview-btn:active {
  background-color: var(--color-dark);
  color: var(--color-white);
}

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