/**
 * Cards styles.
 */
@font-face {
  font-family: "Wallace Serif";
  src: url("fonts/AbbottWallaceSerif-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Wallace Serif";
  src: url("fonts/AbbottWallaceSerif-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Wallace Serif";
  src: url("fonts/AbbottWallaceSerif-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Wallace Sans Serif";
  src: url("fonts/AbbottWallaceSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Wallace Sans Serif";
  src: url("fonts/AbbottWallaceSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Wallace Sans Serif";
  src: url("fonts/AbbottWallaceSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --accent-one: #00bfde;
  --accent-two: #344042;
  --accent-three: #F2F2F2;
  --accent-four: #ABF931;
  --accent-five: #F1F1F1;
  --accent-six: #00A0DD;
  --accent-seven: #DBDCDB;
  --accent-eight: #006BA6;
  --accent-nine: #DBE7EB;
  --color-dark: #000;
  --color-light: #fff;
  --color-success: #28a745;
  --color-warning: #FED141;
  --color-error: #dc3545;
  --primary-font: 'Wallace Serif', sans-serif;
  --secondary-font: 'Wallace Sans Serif', sans-serif;
  --section-width-percent: 88%;
  --content-max-width: 1024px;
  --wrapper-left-padding: calc(100% - var(--section-width-percent));
  --border-radius: 0 0.75rem 0.75rem 0.75rem;
}

.cards-container {
  margin-bottom: 2rem;
}

.cards-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 980px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}
.cards-grid.col-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 980px) {
  .cards-grid.col-2 {
    grid-template-columns: 1fr;
  }
}
.cards-grid.col-1 {
  grid-template-columns: 100%;
}
.cards-grid a,
.cards-grid a:hover,
.cards-grid a .card *,
.cards-grid a:hover .card * {
  text-decoration: none;
}
.cards-grid a:hover .card:after {
  transform: scaleY(1);
}
.cards-grid a:hover .card * {
  transition: 0.3s;
}
.cards-grid a:hover .card * {
  color: white;
}
.cards-grid a:hover .card .card-content .anchor-arrow {
  background-color: white !important;
}
.cards-grid .card {
  display: flex;
  flex-direction: column;
  background-color: var(--secondary);
  border-radius: var(--border-radius);
  border: 1px solid var(--tertiary);
  overflow: hidden;
  height: 100%;
  position: relative;
}
.cards-grid .card:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  transform: scaleY(0);
  transition: 0.3s;
  transform-origin: bottom;
}
.cards-grid .card .card-image {
  height: 15rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: end;
  position: relative;
  z-index: 1;
}
.cards-grid .card .card-content * {
  margin: 0;
  z-index: 1;
}
.cards-grid .card .card-content {
  padding: 2.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  width: 100%;
  flex: 1;
  position: relative;
  z-index: 1;
}
.cards-grid .card .card-content > :first-child {
  margin-top: 0;
}
.cards-grid .card .card-content > :last-child:not(ul) {
  margin-top: auto;
  margin-bottom: 0;
}
.cards-grid .card .card-content .anchor-arrow {
  margin-top: auto;
  transition: 0.3s;
}

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