.garage-gallery .item-card {
  position: relative;
  display: grid;
  align-items: center;
  padding-top: 5%;
  padding-bottom: 5%;
  margin-bottom: 4rem;
}

.garage-gallery .item-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  opacity: 0.25;
  background: #dedede url(../img/bronco/pattern-swirl-faded.svg) center/485px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.garage-gallery .item-card .item-card__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 3rem;
}

.garage-gallery .item-card .item-card__info > * {
  padding-bottom: 1rem;
}

.garage-gallery .item-card .item-card__info .item-card__year {
  font-family: 'benton-modern-display', serif;
  font-size: calc(1em + 2.8vw);
  font-weight: bold;
  line-height: normal;
  color: var(--linkColor);
}

.garage-gallery .item-card .item-card__info .item-card__descrition {
  font-size: 1.1rem;
  font-weight: 600;
  color: #888;
}

.garage-gallery .item-card figure {
  position: relative;
  box-shadow: -2px 10px 20px rgba(0, 0, 0, 0.15);
  transition: all .2s ease-in-out;
}

.garage-gallery .item-card figure:hover {
  transform: rotateZ(1deg);
  box-shadow: -2px 15px 25px rgba(0, 0, 0, 0.25);
}
/*# sourceMappingURL=garage.css.map */