/* Insert your cesefor content custom SASS styling. */
.card .card-img-overlay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.card .card-img-overlay:before {
  position: absolute;
  z-index: -1;
  left: -10px;
  bottom: -10px;
  content: '';
  width: 50%;
  height: 50%;
  display: block;
  background-color: #febf00;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-in-out;
  -o-transition: opacity 0.6s ease-in-out;
  transition: opacity 0.6s ease-in-out;
}

.card .card-img-overlay .card-title {
  font-size: 1.37475rem;
  margin-bottom: 0.5rem;
}

.card .card-img-overlay .field--name-field-formatted-description {
  font-size: 1.00012rem;
  line-height: 1.3em;
}

.card:focus .card-img-overlay:before, .card:hover .card-img-overlay:before {
  opacity: 1;
}

.card-deck .card {
  margin-bottom: 1.5rem;
}

article.node .card {
  background: transparent;
}
