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

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .cards-grid {
    grid-template-columns: 1fr !important;
  }
}
.cards-grid .card {
  padding: 2rem;
  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 > :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;
}

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

.archive.category .cards-grid .card {
  border: 0;
  box-shadow: none;
}
.archive.category .cards-grid .card .card-content a {
  font-family: var(--secondary-font);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--tertiary);
}
.archive.category .cards-grid .card .card-content a:after {
  position: relative;
  left: 0;
  background: url("/wp-content/uploads/chevron-right-skinny.svg") no-repeat center right;
  height: 0.65rem;
  width: 0.65rem;
  mask-image: none;
  transition: 0.3s;
}
.archive.category .cards-grid .card .card-content p {
  margin-top: 1rem;
}

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