.post-preview {
  min-height: 250px;
  position: relative;
}
.post-preview.post-preview--featured .post-title {
  font-family: var(--font-stack-heading);
}
.post-preview .post-preview-thumbnail {
  height: 170px;
  vertical-align: middle;
  display: block;
  position: relative;
  background: var(--color-light);
  border-radius: var(--border-radius);
  overflow: hidden;
}
.post-preview .post-preview-thumbnail .post-thumbnail {
  height: 100%;
}
.post-preview .post-preview-thumbnail .post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
  transition: all 0.2s ease-out;
}
.post-preview .post-preview-thumbnail a {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translate3d(0, -50%, 0);
  width: 100%;
  height: 100%;
}
.post-preview .post-preview-content {
  padding: 0.5em 0;
  line-height: 1.3;
}
.post-preview .post-preview-content .post-title {
  font-weight: var(--font-weight-bold);
  font-size: 1em;
  color: var(--color-secondary);
}
.post-preview .post-preview-content .post-excerpt {
  margin-top: 0.5em;
  line-height: 1.4;
  font-size: 0.9em;
}
.post-preview:hover img {
  transform: scale(1.1);
}
.post-preview .post-link {
  position: absolute;
  bottom: 0;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 2;
  text-indent: -9999px;
}

.post-category {
  margin-bottom: 0.25em;
}

.post-date {
  margin-top: 0.5em;
  font-size: 0.8em;
  letter-spacing: 0.03em;
  color: var(--color-text-grey);
}

/* Post preview - L  */
.featured-post .post-preview,
.archive-grid article:first-child,
.container_post.container_template--l .post-preview,
.container_page.container_template--l .post-preview {
  position: relative;
  background: var(--color-tertiary);
  color: #fff;
  border-radius: var(--border-radius);
}
.featured-post .post-preview .post-preview-thumbnail,
.archive-grid article:first-child .post-preview-thumbnail,
.container_post.container_template--l .post-preview .post-preview-thumbnail,
.container_page.container_template--l .post-preview .post-preview-thumbnail {
  min-height: 400px;
}
.featured-post .post-preview .post-preview-thumbnail::before,
.archive-grid article:first-child .post-preview-thumbnail::before,
.container_post.container_template--l .post-preview .post-preview-thumbnail::before,
.container_page.container_template--l .post-preview .post-preview-thumbnail::before {
  content: " ";
  background: var(--color-tertiary);
  background: linear-gradient(15deg, rgba(7, 7, 33, 0.95) 0%, rgba(7, 7, 33, 0) 60%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.featured-post .post-preview .post-preview-content,
.archive-grid article:first-child .post-preview-content,
.container_post.container_template--l .post-preview .post-preview-content,
.container_page.container_template--l .post-preview .post-preview-content {
  grid-column: 1/3;
  position: absolute;
  bottom: 0px;
  padding: 1em;
  color: #fff;
  z-index: 2;
  max-width: 700px;
}
.featured-post .post-preview .post-preview-content .post-title,
.archive-grid article:first-child .post-preview-content .post-title,
.container_post.container_template--l .post-preview .post-preview-content .post-title,
.container_page.container_template--l .post-preview .post-preview-content .post-title {
  color: #fff;
  font-size: 1.4em;
  font-family: var(--font-stack-heading);
}
.featured-post .post-preview .post-preview-content a,
.featured-post .post-preview .post-preview-content .post-date,
.archive-grid article:first-child .post-preview-content a,
.archive-grid article:first-child .post-preview-content .post-date,
.container_post.container_template--l .post-preview .post-preview-content a,
.container_post.container_template--l .post-preview .post-preview-content .post-date,
.container_page.container_template--l .post-preview .post-preview-content a,
.container_page.container_template--l .post-preview .post-preview-content .post-date {
  color: #fff;
}

/* Archive Grid Small */
.archive-grid-small .post-preview {
  margin-bottom: 0em;
}

.small-post-preview {
  background: #fff;
  transition: background 0.2s linear;
  min-height: auto;
}

.small-post-preview .post-preview-thumbnail {
  width: 90px;
  height: 90px;
  border-radius: var(--border-radius);
}

.small-post-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  height: 100%;
  align-items: center;
}

.post-preview-content-s {
  padding: 0.4em 1.2em 0.4em 1.2em;
}

.small-post-title {
  line-height: 1.4em;
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
}

.content-wpb .small-post-preview a,
.content-wpb .post-preview a {
  border-bottom: 0;
}
.content-wpb .small-post-preview a:hover,
.content-wpb .post-preview a:hover {
  border-bottom: 0;
}

/* Post small horizontal */
.sc-post_s-h .post-category {
  display: none;
}

/* print pages */
body .container_page .post-category {
  display: none;
}

/* ===================================== Responsive  ===================================== */
/*--------------------------------------------------------------
#  Big phone
--------------------------------------------------------------*/
@media screen and (min-width: 500px) {
  .post-preview-content-s {
    padding-right: 1.2em;
  }
  /*  == Archive grid == */
  .archive-grid article:first-child {
    grid-column: 1/3;
    position: relative;
    background: var(--color-tertiary);
    color: #fff;
  }
  /* Post small horizontal */
  .sc-post_s-h .small-post-grid {
    align-items: center;
  }
  .sc-post_s-h .post-preview-thumbnail {
    height: 100px;
    width: 150px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .sc-post_s-h .post-preview-thumbnail .post-thumbnail {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .sc-post_s-h .post-category {
    display: block;
  }
  .sc-post_s-h .small-post-title {
    font-size: 1em;
  }
  /* Post - L (2 Column layout)  */
  .featured-post .post-preview .post-preview-content .post-title,
  .archive-grid article:first-child .post-preview-content .post-title,
  .container_post.container_template--l .post-preview-content .post-title,
  .container_page.container_template--l .post-preview-content .post-title {
    font-size: 1.6em;
  }
}
/*--------------------------------------------------------------
#  Tablet
--------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .post-title,
  .small-post-title {
    font-size: 1em;
  }
  /* Post preview - L  */
  .archive-grid article:first-child .post-preview-thumbnail,
  .archive-grid article:first-child,
  .container_post.container_template--l .post-preview .post-preview-thumbnail,
  .container_page.container_template--l .post-preview .post-preview-thumbnail {
    min-height: 322px;
  }
  /* (2 Column layout)  */
  .vc_col-sm-6 .container_post.container_template--l .post-preview-content .post-title,
  .vc_col-sm-6 .container_page.container_template--l .post-preview-content .post-title {
    font-size: 1.3em;
  }
  .vc_col-sm-6 .container_post.container_template--l .post-preview,
  .vc_col-sm-6 .container_post.container_template--l .post-preview .post-preview-thumbnail,
  .vc_col-sm-6 .container_page.container_template--l .post-preview,
  .vc_col-sm-6 .container_page.container_template--l .post-preview .post-preview-thumbnail {
    min-height: 250px;
  }
  .sc-post_s-h {
    background: var(--color-light);
    border-radius: var(--border-radius);
    overflow: hidden;
  }
}
/*--------------------------------------------------------------
#  Between Tablet and Desktop
--------------------------------------------------------------*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  /* Post S 2 column */
  .vc_col-sm-6 .small-post-title {
    font-size: 0.8em;
  }
  /* Post S H */
  .vc_col-sm-6 .container_post.container_template--s-h .sc-post_s-h .small-post-grid {
    display: block;
  }
  .vc_col-sm-6 .container_post.container_template--s-h .sc-post_s-h .post-preview-thumbnail {
    width: 100%;
    height: 170px;
  }
  .vc_col-sm-6 .container_post.container_template--s-h .sc-post_s-h .post-preview-content-s {
    padding: 1.2em;
  }
}
/*--------------------------------------------------------------
#  Desktop
--------------------------------------------------------------*/
@media screen and (min-width: 1024px) {
  .small-post-title {
    font-size: 0.9em;
    line-height: 1.3em;
  }
  .sc-post_s-h .post-preview-content-s {
    padding: 0 1.2em;
  }
  /* Post SH */
  .container-sidebar .vc_col-sm-6 .container_post.container_template--s-h .sc-post_s-h .post-category {
    display: none;
  }
  .vc_col-sm-6 .container_post.container_template--s-h .sc-post_s-h .small-post-title {
    font-size: 0.8em;
  }
}
/*--------------------------------------------------------------
#  Large Desktop
--------------------------------------------------------------*/
@media screen and (min-width: 1300px) {
  /* Post SH */
  .vc_col-sm-6 .container_post.container_template--s-h .sc-post_s-h .small-post-title {
    font-size: 1em;
  }
}
/*--------------------------------------------------------------
#  Mobile Only
--------------------------------------------------------------*/
@media screen and (max-width: 767px) {
  .sc-post_s-h .small-post-grid {
    margin-left: -20px;
  }
  .sc-post_s-h .post-preview-thumbnail {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    width: 125px;
  }
}

/*# sourceMappingURL=post-preview.css.map */
