@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;
}
*/
@media (min-width: 48rem) {
  .news-card-featured {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
}
.block-editor-block-list__block .news-card-featured {
  pointer-events: none;
}
@media (min-width: 48rem) {
  .news-card-featured__content {
    max-width: 36rem;
    margin-right: auto;
    margin-left: auto;
    padding: 0rem 2rem;
  }
}
.news-card-featured__image-wrapper {
  margin-bottom: 1.5rem;
  padding-bottom: 66.25%;
  border-radius: 0 clamp(2.25rem, -0.3214285714rem + 5.3571428571vw, 4.5rem) 0 0;
}
@media (min-width: 48rem) {
  .news-card-featured__image-wrapper {
    flex: 0 0 calc(50% - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem) / 2);
    max-width: calc(50% - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem) / 2);
    margin-top: auto;
    margin-bottom: auto;
    padding-bottom: calc((50% - clamp(1rem, -0.1428571429rem + 2.380952381vw, 2rem) / 2) * 0.6625);
  }
}
.news-card-featured__meta {
  margin-bottom: 0.5rem;
  font-size: 0;
  line-height: 0;
}
.news-card-featured__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);
}
.news-card-featured__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%);
}
.news-card-featured__title {
  font-weight: var(--t2-font-weight);
  font-size: var(--t2-font-size);
  font-family: var(--t2-font-family);
  line-height: var(--t2-line-height);
  --margin-top: calc(var(--t2-margin-bottom) * 2);
  margin-bottom: var(--t2-margin-bottom);
  --margin-top: 0;
}
.news-card-featured__title:last-child {
  margin-bottom: 0;
}
.news-card-featured__link {
  color: var(--blockColor, #0d0d0d);
}
.news-card-featured__author {
  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);
  color: var(--blockColor, #0d0d0d);
}
.news-card-featured__button {
  margin-top: clamp(2rem, 1.7142857143rem + 0.5952380952vw, 2.25rem);
}