@charset "UTF-8";
/* stylelint-disable order/order */
/* stylelint-enable order/order */
/*
* Used to add the CSS Grid properties for the 12-column grid.
*
* @return string  The CSS Grid properties for the 12-column grid.
*/
/****************
 * Fonts
 *
 * The font settings are defined via the gulp figma task creates variables in the css/__base-includes/figma/_figma-font-styles.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/****************
 * Colors
 *
 * The primary colors are defined via the gulp figma task creates variables in the css/__base-includes/figma/_figma-color-variables.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/****************
 * Effects
 ****************/
/****************
 * Grid Settings
 ****************/
/*
This file can be used for optional additions to the Figma-generated font style mixins in the figma/_figma-font-styles.scss file.

For example, if you want to add styles to the @overline mixin, just create a mixin here called @overline-custom and that CSS will be added to the primary mixin:

@mixin overline-custom() {
	font-weight: 700;
}
*/
.resource-card {
  position: relative;
  position: relative;
  z-index: 1;
  color: #0a0028;
  border-radius: 0.75rem;
  background-color: #fcfcfc;
  box-shadow: 0 0.3125rem 1.25rem rgba(10, 17, 81, 0.1);
  overflow: hidden;
  transition: box-shadow 0.4s ease-in-out;
}
.resource-card::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  z-index: 2;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  background: linear-gradient(#fcfcfc, #fcfcfc) padding-box, linear-gradient(to right, #0587be 0%, #0737cf 50%, #0a1151 100%) border-box;
  mix-blend-mode: darken;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in-out;
}
.resource-card:hover, .resource-card:focus {
  box-shadow: 0 0.3125rem 1.5625rem rgba(10, 17, 81, 0.15);
}
.resource-card:hover::before, .resource-card:focus::before {
  opacity: 1;
}
.resource-card:hover .resource-card__title, .resource-card:focus .resource-card__title {
  color: #0f1fb4;
}
.resource-card__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 18rem;
  padding: 1.25rem;
}
@media (max-width: 61.98rem) {
  .resource-card__inner {
    padding-bottom: 5rem;
  }
}
.resource-card__meta {
  margin-bottom: 1.75rem;
  color: #343a7a;
  font-size: 0;
  line-height: 0;
}
.resource-card__meta span {
  font-weight: var(--subtitle-3-font-weight);
  font-size: var(--subtitle-3-font-size);
  font-family: var(--subtitle-3-font-family);
  line-height: var(--subtitle-3-line-height);
}
.resource-card__meta span:not(:last-child)::after {
  content: "•";
  display: inline-block;
  width: 0.25rem;
  margin: auto 0.5rem;
  color: transparent;
  background-color: #bdbfd1;
  clip-path: circle(0.125rem at 50% 50%);
}
.resource-card__title {
  --margin-top: 0;
  transition: color 0.4s ease-in-out;
}
.resource-card__excerpt {
  font-weight: var(--subtitle-2-font-weight);
  font-size: var(--subtitle-2-font-size);
  font-family: var(--subtitle-2-font-family);
  line-height: var(--subtitle-2-line-height);
  margin-bottom: clamp(1.5rem, 0.2142857143rem + 2.6785714286vw, 2.625rem);
  color: #343a7a;
}
.resource-card__excerpt p {
  font-weight: var(--subtitle-2-font-weight);
  font-size: var(--subtitle-2-font-size);
  font-family: var(--subtitle-2-font-family);
  line-height: var(--subtitle-2-line-height);
}
.resource-card .wp-block-button {
  margin-top: auto !important;
  margin-bottom: 0.375rem !important;
}
.resource-card .share-icons {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  margin-right: -0.25rem;
}
@media (max-width: 61.98rem) {
  .resource-card .share-icons {
    left: 1.25rem;
    justify-content: flex-start;
    margin: 0;
  }
}
.resource-card .share-icons .has-overline-font-size {
  margin: auto 0.5rem auto auto;
}
@media (max-width: 61.98rem) {
  .resource-card .share-icons .has-overline-font-size {
    margin-left: 0;
  }
}
@media (max-width: 61.98rem) {
  .resource-card .share-icons__link:last-child {
    margin-right: auto !important;
  }
}