.content-cards__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.content-cards__card {
  background-color: #1e1e1e;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.content-cards__image {
  aspect-ratio: 427.5/220;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.content-cards__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-cards__content {
  padding: 12px 20px 30px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  color: #fff;
}
.content-cards__title {
  margin-bottom: 20px;
  color: #fff;
}
.content-cards__title::after {
  content: "";
  display: flex;
  position: relative;
  top: auto;
  bottom: -4px;
  width: 100%;
  max-width: 360px;
  height: 4px;
  background-image: linear-gradient(to right, var(--red) 78%, transparent 100%);
}
.content-cards__description {
  flex-grow: 1;
}
.content-cards__description p:last-child {
  margin-bottom: 0;
}
.content-cards__button {
  margin-top: auto;
  padding-top: 20px;
}

@media (min-width: 768px) {
  .content-cards__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .content-cards__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .content-cards__wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

/*# sourceMappingURL=content-cards.css.map */
