.masonry-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

#masonry-grid {
  display: inline-block;
  margin: 0 auto;
}

.cards {
  width: 100%;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}

.card__like {
  width: 18px;
}

.card__clock {
  width: 15px;
  vertical-align: middle;
  fill: #AD7D52;
}

.card__time, .card__conversation {
  font-size: 1em;
  vertical-align: middle;
  margin-left: 2em;
  font-weight: bold;
}

.card__time::before {
  content: "";
  background: url("../../images/photos.svg") center center no-repeat;
  background-size: 80% auto;
  height: 1.5em;
  width: 1.5em;
  position: absolute;
  margin: 0.1em 0 0 -1.75em;
}

.card__conversation::before {
  content: "";
  background: url("../../images/chat.svg") center center no-repeat;
  background-size: 80% auto;
  height: 1.5em;
  width: 1.5em;
  position: absolute;
  margin: 0.1em 0 0 -1.75em;
}

.card__clock-info {
  float: right;
}

.card__img {
  visibility: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 150px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.card__info-hover {
  position: absolute;
  background: linear-gradient(to bottom, #e3dfd9 0% 50%, rgba(0, 0, 0, 0));
  padding: 1em;
  width: 100%;
  opacity: 0;
  top: 0;
}

.card__img--hover {
  transition: 0.2s all ease-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  position: absolute;
  height: 150px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  top: 0;
}

.card {
  transition: all 0.75s cubic-bezier(0.175, 0.885, 0, 1);
  background-color: #ded9d2;
  width: 33%;
  max-width: 50%;
  height: 15vw;
  min-height: 250px;
  margin-bottom: 0.5em;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  transform: scale(0.97, 0.97);
  box-shadow: 0.2em 0.2em #beb4a6;
}

.card:hover {
  box-shadow: 0.4em 0.4em #beb4a6;
  transform: scale(1, 1);
  z-index: 99999;
}

.cards:hover .card:not(:hover), .item-list:hover .card:not(:hover) {
  transform: scale(0.95, 0.95);
}

.card__info {
  z-index: 2;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  padding: 16px 24px 24px 24px;
  transition: 0.2s height ease-out;
  font-size: 0.85em;
  line-height: 1.5;
}

.card__category {
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 500;
  color: #868686;
}

.card__info-hover::after {
  content: "";
  background-image: url("../../images/travel.svg");
  background-size: 100% auto;
  height: 1.75em;
  width: 1.75em;
  display: inline-block;
}

.card__title {
  margin: 0;
  width: 95%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.card__by, .card__date {
  display: block;
}

.card:hover .card__img {
  height: 50px;
}

.card:hover .card__img--hover {
  height: 100%;
  opacity: 0.8;
}

.card:hover .card__info {
  background: linear-gradient(to top, #e3dfd9 0% 50%, rgba(0, 0, 0, 0));
  position: absolute;
  bottom: 0;
  padding-top: 8em;
  width: 100%;
  height: 100%;
}

.card:hover .card__info-hover {
  opacity: 1;
  z-index: 1000;
}

.item-list {
  display: flex;
  flex-wrap: wrap;
}

.item {
  flex: 100%;
  margin: 0 0 1.25rem;
}

@media (min-width: 36em) {
  .item {
    flex: 0 0 calc(50% - 0.625rem);
    margin-left: 0.5rem;
  }
}
@media (min-width: 60em) {
  .item {
    flex: 0 0 calc(33.3333333333% - 0.875rem);
  }
}/*# sourceMappingURL=cards.css.map */