/**
 * Cards styles.
 */
.cards-container {
  margin-top: 2.5rem;
}

.cards-grid {
  display: grid;
  gap: 2.5rem;
}
.cards-grid .card {
  border-radius: 0.5rem;
  background-color: var(--accent-three);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.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 > :last-child {
  margin-top: auto;
  margin-bottom: 0;
}
.cards-grid .card .card-content .anchor-arrow,
.cards-grid .card .card-content .anchor-right-arrow{
  margin-top: auto;
}

#index .card-content {
  align-items: center;
}

/* 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 */
