.results__container {
  max-width: 63.75rem;
  width: 100%;
  margin: 0 auto;
}
.results__cards {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px -1.25rem;
}
.results__cards > * {
  margin: 0 10px 1.25rem;
  width: calc(50% - 20px);
}
.results__cards::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2.5rem;
  height: 21.25rem;
  background: -webkit-gradient(linear, left bottom, left top, from(#070101), to(rgba(7, 1, 1, 0)));
  background: linear-gradient(360deg, #070101 0%, rgba(7, 1, 1, 0) 100%);
  pointer-events: none;
  z-index: 2;
}
.results__card {
  position: relative;
}
.results__card::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 56%;
}
.results__card > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 1.5rem;
}
.results__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 2.5rem;
}
@media (max-width: 768px) {
  .results__title {
    margin-bottom: 40px;
  }
  .results__cards {
    margin: unset;
  }
  .results__cards > * {
    margin: unset;
    width: 100%;
  }
  .results__cards::before {
    content: unset;
  }
  .results__card > img {
    border-radius: 15px;
  }
  .results__card:not(:last-child) {
    margin-bottom: 6.5px;
  }
}
/*# sourceMappingURL=results.css.map */