/* Card Rows */
#blog-section a.cta {
  position: relative;
  z-index: 5;
}

#blog-section__cards.row {
}

#blog-section__cards{
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

.blog-section__card {
  display: block;
  text-decoration: none;
  color: var(--black);
  overflow: hidden;
  transition: 300ms;
  border: none;
  border-radius: 0;
  height: 100%;
  margin-bottom: 40px;
}

/* Card Image */
.blog-section__card .card__img {
  width: 100%;
  height: 210px;    
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

@media (min-width: 576px){
  .blog-section__card .card__img{
    height: 178.5px;
  }
}

@media (min-width: 768px){
  .blog-section__card .card__img{
    height: 246px;
  }
}

@media (min-width: 992px){
  .blog-section__card .card__img{
    height: 214px;
  }
}

@media (min-width: 1200px){
  .blog-section__card .card__img{
    height: 187px;
  }
}

@media (min-width: 1300px){
  .blog-section__card .card__img{
    height: 198px;
  }
}

.zoom-in::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: inherit;
  background-size: cover;
  transform-origin: center;
  transition: 400ms linear;
}

a.blog-section__card:hover .zoom-in::after, a.blog-section__card:focus .zoom-in::after {
  transform: scale(1.15);
}

/* Card Body */
.blog-section__card .card__body{
  padding: 16px 0px;
}

.blog-section__card .card__body .card__heading{
  font-family: 'Source Sans Pro', 'Lato', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 8px;
  max-height: 96px;
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box !important;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  white-space: normal;
}

.blog-section__card .card__body .card__subheading{
  font-family: 'Source Sans Pro', 'Lato', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  line-height: 12px;
  margin-bottom: 16px;
  color: var(--primary);
}


@media (min-width: 992px) {
.blog-section__card .card__body .card__subheading {
    font-size: 14px;
    line-height: 14px;
  }
}

.blog-section__card .card__body .card__date{
  font-size: 14px;
  line-height: 21px;
  font-weight: 400;
}