.dv-blog {
  margin: 0 auto;
  max-width: 1040px;
  margin-top: 50px;
  display: flex;
  flex-flow: wrap;
}
.dv-blog a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
}
.dv-post {
  -ms-flex: 1 1 300px;
  flex: 1 1 300px;
  -ms-flex-direction: column;
  flex-direction: column;
  overflow: hidden;
  margin: 0 20px 40px;
  min-height: 300px;
  background: #fff 50%;
  background-size: cover;
  border-radius: 5px;
  box-shadow: 8px 14px 38px rgba(39,44,49,0.06), 1px 3px 8px rgba(39,44,49,0.03);
  transition: all 0.5s ease;
  text-rendering: optimizeLegibility;
}
.dv-post:hover {
  box-shadow: 8px 28px 50px rgba(39,44,49,0.07), 1px 6px 12px rgba(39,44,49,0.04);
  transition: all 0.4s ease;
  transform: translate3D(0, -1px, 0) scale(1.02);
}
.dv-post-column img {
  width: 100%;
  object-fit: cover;
  object-position: center;
  height: 100%;
  margin-right: 0.5rem;
}
.dv-post-image {
  -webkit-flex: 1.5 0 0;
  flex: 1.5 0 0;
}
.dv-post-content {
  -webkit-flex: 1 0 0;
  flex: 1 0 0;
  display: flex;
  justify-content: space-between;
  flex-flow: column;
}
.dv-post-copy {
  padding: 30px 35px 0;
}
.dv-post-copy p {
  line-height: 1.4rem;
  font-size: 1rem;
}
.dv-post-copy h2 {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.dv-post-actions {
  margin: 20px 35px;
  display: flex;
}
.dv-post-author {
  display: flex;
  -webkit-flex: 1.5 0 0;
  flex: 1.5 0 0;
  text-decoration: none;
}
.dv-post-author a:first-of-type > img {
  display: block;
  background: #e3e9ed;
  border-radius: 100%;
  object-fit: cover;
  height: 35px;
  width: 35px;
  margin-right: 10px;
}
.dv-post-author a:last-of-type {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  color: #738a94;
}
.dv-post-readtime {
  display: flex;
  align-items: center;
  -webkit-flex: 1 0 0;
  flex: 1 0 0;
  justify-content: flex-end;
  color: #738a94;
  font-size: 0.8rem;
  font-weight: 600;
}
.dv-post-category {
  font-size: 0.8rem;
  color: #738a94;
  font-weight: 600;
  margin-bottom: 10px;
}
.dv-post-one-column .dv-post-shell {
  display: flex;
}
.dv-post-two-columns-container {
  display: flex;
  flex-flow: row;
  width: 50%;
}
.dv-post-two-columns {
  width: 50%;
}
@media all and (max-width: 1000px) {
  .dv-post-two-columns {
    width: auto;
  }
  .dv-post-two-columns .dv-post-column > img {
    height: 100%;
  }
  .dv-post-two-columns-container {
    display: block;
  }
}
@media all and (max-width: 1000px) {
  .dv-post-one-column .dv-post-copy p,
  .dv-post-two-columns .dv-post-copy p {
    font-size: 0.85rem;
  }
}
@media all and (max-width: 1000px) {
  .dv-post-one-column .dv-post-copy h2,
  .dv-post-two-columns .dv-post-copy h2 {
    font-size: 1.2rem;
  }
}
@media all and (max-width: 768px) {
  .dv-post-shell {
    display: block !important;
  }
  .dv-post-two-columns-container {
    width: 100%;
  }
}
