@gray-darker:               #444444;
@gray-dark:                 #696969;
@gray:                      #999999;
@gray-light:                #cccccc;
@gray-lighter:              #ececec;
@gray-lightest:             lighten(@gray-lighter,4%);

*,
*::before,
*::after { 
  box-sizing: border-box;
}

.btn--block {
  display: block;
  width: 100%;
}
 
.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cards__item {
  /* display: flex; */
  padding: 1rem;
}

@media(min-width: 40rem) {
.cards__item{ width: 50%;}
  }

@media(min-width: 56rem) {
  .cards__item{width: 33.3333%;}
  }

.card {
  background-color: white;
  border-radius: 0.25rem;
  /* box-shadow: 0 20px 40px -14px rgba(0,0,0,0.25); */
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
  
.card__image:hover {
      filter: contrast(100%);
}
  

.card__content {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 1rem;
}

.card__eyebrow {
  color: #6d737c;
  line-height: 150%; 
  /* font-weight: bold; */
}

.card__image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  filter: contrast(85%);
  /* filter: saturate(180%); */
  overflow: hidden;
  position: relative;
  transition: filter 0.5s cubic-bezier(.43,.41,.22,.91);
  content: "";
	  display: block;
    padding-top: 56.25%;
/*  &::before {
    content: "";
	  display: block;
    padding-top: 56.25%; *//* 16:9 aspect ratio */
/*  }
  @media(min-width: 40rem) {
    &::before {
      padding-top: 66.6%; *//* 3:2 aspect ratio */
    }
  }
}


.card__title {
 /* color: #e53749;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase; */
}

.card__text {
  flex: 1 1 auto;
 /* font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem; */
  max-width: 48ch;
}

.img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

.card__btn {
  color: #6d737c;
}