/* 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;
}
*/
.news-card {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  padding: 0;
  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;
}
@media (min-width: 36rem) {
  .news-card {
    flex-direction: row;
  }
}
.news-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;
}
.news-card:hover, .news-card:focus {
  box-shadow: 0 0.3125rem 1.5625rem rgba(10, 17, 81, 0.15);
}
.news-card:hover::before, .news-card:focus::before {
  opacity: 1;
}
.news-card:hover .news-card__title, .news-card:focus .news-card__title {
  color: #0f1fb4;
}
.news-card__image-wrapper {
  padding-bottom: 56.57894737%;
}
@media (min-width: 36rem) {
  .news-card__image-wrapper {
    flex: 0 0 47.5%;
    height: 100%;
    max-width: 19rem;
    padding-bottom: 0;
  }
}
.news-card__image-wrapper img {
  padding: 15px;
  object-fit: contain;
}
.news-card__content {
  flex-grow: 1;
  padding: 1.25rem;
}
.news-card__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 0.5rem;
}
.news-card__type {
  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);
  margin-right: 1rem;
  color: #343a7a;
}
.news-card__date {
  font-weight: var(--overline-font-weight);
  font-size: var(--overline-font-size);
  font-family: var(--overline-font-family);
  line-height: var(--overline-line-height);
  letter-spacing: var(--overline-letter-spacing);
  text-transform: var(--overline-text-transform);
  display: inline-block;
  padding: 0.5rem 0.75rem;
  color: #0a0028 !important;
  background-color: #4bc031;
  margin-right: 0;
  margin-left: auto;
  padding: 0.25rem 0.75rem;
  text-align: center;
}
.bg-navy .news-card__date {
  color: #bdbfd1;
}
.news-card__title {
  font-weight: var(--title-1-font-weight);
  font-size: var(--title-1-font-size);
  font-family: var(--title-1-font-family);
  line-height: var(--title-1-line-height);
  margin-bottom: var(--title-1-margin-bottom);
  --margin-top: 0;
  transition: color 0.4s ease-in-out;
}
.news-card__title:last-child {
  margin-bottom: 0;
}
.news-card__author {
  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);
  margin-top: auto;
  color: #343a7a;
}