/* 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;
}
*/
.event-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  padding: clamp(1.25rem, 0.3928571429rem + 1.7857142857vw, 2rem);
  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: 48rem) {
  .event-card {
    grid-template-rows: auto 1fr;
    grid-template-columns: clamp(4rem, 2.8571428571rem + 2.380952381vw, 5rem) 1fr 12rem;
    column-gap: clamp(1.25rem, 0.3928571429rem + 1.7857142857vw, 2rem);
  }
}
.event-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;
}
.event-card:hover, .event-card:focus {
  box-shadow: 0 0.3125rem 1.5625rem rgba(10, 17, 81, 0.15);
}
.event-card:hover::before, .event-card:focus::before {
  opacity: 1;
}
.event-card:hover .resource-card__title, .event-card:focus .resource-card__title {
  color: #0f1fb4;
}
.event-card__inner-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.event-card__inner {
  display: contents;
}
.event-card__start-col {
  grid-area: 1/1/2/2;
  margin-bottom: 1.25rem;
}
@media (min-width: 48rem) {
  .event-card__start-col {
    grid-area: 1/1/3/2;
    margin-bottom: 0;
  }
}
.event-card__start {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: clamp(4rem, 2.8571428571rem + 2.380952381vw, 5rem);
  height: clamp(4rem, 2.8571428571rem + 2.380952381vw, 5rem);
  border-radius: 50%;
  background-color: #4bc031;
}
.event-card__start-day {
  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);
  color: #0a0028;
}
.bg-navy .event-card__start-day {
  color: #bdbfd1;
}
.event-card__start-date {
  font-weight: var(--t3-font-weight);
  font-size: var(--t3-font-size);
  font-family: var(--t3-font-family);
  line-height: var(--t3-line-height);
  color: #0d0d0d;
}
.event-card__content {
  grid-area: 2/1/3/2;
  display: block;
  margin-bottom: 2rem;
}
@media (min-width: 48rem) {
  .event-card__content {
    grid-area: 1/2/3/3;
    margin-bottom: auto;
    padding-right: clamp(1.25rem, 0.3928571429rem + 1.7857142857vw, 2rem);
    border-right: 1px solid #bdbfd1;
  }
}
.event-card__title {
  color: #0a0028;
}
.event-card__meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1rem;
  color: #0d0d0d;
}
.event-card__meta:last-child {
  margin-bottom: 0;
}
.event-card__meta-item {
  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);
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 0.75rem;
}
.event-card__meta-item .icon {
  margin-right: 0.25rem;
  font-size: 1rem;
}
.event-card__meta-item .icon::before {
  background-image: linear-gradient(90deg, #0587be 0%, #0737cf 50%, #0a1151 100%);
  -webkit-background-clip: text;
  -moz-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
}
.event-card__excerpt {
  color: #6f7086;
}
.event-card__excerpt p {
  font-weight: var(--body-2-font-weight);
  font-size: var(--body-2-font-size);
  font-family: var(--body-2-font-family);
  line-height: var(--body-2-line-height);
}
.event-card__button-col {
  grid-area: 4/1/5/2;
}
@media (min-width: 48rem) {
  .event-card__button-col {
    grid-area: 2/3/3/4;
    margin-top: 0;
  }
}
.event-card__button-col .wp-block-button__link {
  transition-duration: 0.4s !important;
}
.event-card .wp-block-button {
  width: 100%;
  margin-top: 0;
}
.event-card .wp-block-button__link {
  width: 100%;
}
.event-card .wp-block-button__link[target=_blank] {
  --buttonIcon: var(--icon-arrow-external);
}
.event-card .wp-block-button:not(:last-child) {
  margin-bottom: 0.75rem;
}
.event-card .wp-block-button + .wp-block-button {
  margin-top: 0.75rem;
}
.event-card__registration-link {
  grid-area: 3/1/4/2;
  position: relative;
  z-index: 2;
  margin-bottom: 0.75rem;
}
@media (min-width: 48rem) {
  .event-card__registration-link {
    grid-area: 1/3/2/4;
  }
}