/**
 * Cards styles.
 */
.cards-container {
  margin-bottom: 2rem;
}

.cards-grid {
  display: grid;
  gap: 2rem;
}
.cards-grid .card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 8px solid var(--tertiary);
  box-shadow: 0 0 10px #DBDCDB;
}
.cards-grid .card .card-image {
  height: 7.5rem;
  width: auto;
  display: block;
  margin: 0 auto;
}
.cards-grid .card .card-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
.cards-grid .card .card-content > :first-child {
  margin-top: 0;
}
.cards-grid .card .card-content > :nth-last-child(2) {
  margin-bottom: 2rem;
}
.cards-grid .card .card-content > :last-child {
  margin-top: auto;
  margin-bottom: 0;
}
.cards-grid .card .card-content .anchor-arrow {
  margin-top: auto;
}

.col-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 980px) {
  .col-2 {
    grid-template-columns: 1fr;
  }
}

.col-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px) {
  .col-3 {
    grid-template-columns: 1fr;
  }
}

.col-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 980px) {
  .col-4 {
    grid-template-columns: 1fr;
  }
}

/* Not using the block, but same selectors so keeping this together */
.archive.category .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.archive.category .cards-grid .card {
  align-items: start;
}
.archive.category .cards-grid .card .card-content {
  text-align: left;
}

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