/* 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;
}
*/
.block-event-profile-hero {
  position: relative;
  padding: clamp(4.5rem, 2.7857142857rem + 3.5714285714vw, 6rem) 0 clamp(3.25rem, 0.1071428571rem + 6.5476190476vw, 6rem) 0;
}
.block-event-profile-hero__row {
  justify-content: space-between;
  align-items: center;
}
.block-event-profile-hero__image-wrapper {
  margin-bottom: 1.5rem;
  border-radius: 0 clamp(2.25rem, -0.3214285714rem + 5.3571428571vw, 4.5rem) 0 0;
  overflow: hidden;
}
@media (min-width: 48rem) {
  .block-event-profile-hero__image-wrapper {
    margin-bottom: auto;
  }
}
.block-event-profile-hero__content-col {
  max-width: 37rem;
}
.block-event-profile-hero__content-col:only-child {
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 48rem) {
  .block-event-profile-hero__content-col:only-child {
    text-align: center;
  }
}
@media (min-width: 48rem) {
  .block-event-profile-hero__content-col:only-child .block-event-profile-hero__meta {
    justify-content: center;
    margin-right: -0.75rem;
  }
}
.block-event-profile-hero__meta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1rem;
  color: #0d0d0d;
}
.block-event-profile-hero__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;
}
.block-event-profile-hero__meta-item .icon {
  margin-right: 0.25rem;
  font-size: 1rem;
}
.block-event-profile-hero__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;
}
.block-event-profile-hero .wp-block-button__link[target=_blank] {
  --buttonIcon: var(--icon-arrow-external);
}
@media (min-width: 48rem) {
  .block-event-profile-hero__image-col {
    position: static;
  }
}
.block-event-profile-hero__decoration {
  position: absolute;
  left: calc(var(--gutterWidth, 1.25rem) * -1);
  bottom: clamp(-2.625rem, 2.875rem + -11.4583333333vw, -1.25rem);
  z-index: -1;
  display: block;
  display: none;
  width: 100%;
  height: 200vw;
  overflow: hidden;
  pointer-events: none;
}
@media (min-width: 48rem) {
  .block-event-profile-hero__decoration {
    left: 0;
    bottom: clamp(-13.75rem, 16.25rem + -30vw, -2.5rem);
    display: block;
    width: 100%;
    height: 280%;
  }
}
.block-event-profile-hero__decoration::before {
  position: absolute;
  bottom: 0;
  right: -8%;
  content: "";
  width: 200vw;
  height: 200vw;
  background: linear-gradient(90deg, #0587be 0%, #0737cf 50%, #0a1151 100%);
  transform: rotate(30deg);
  clip-path: url(#crescent-mask);
}
@media (min-width: 48rem) {
  .block-event-profile-hero__decoration::before {
    right: 48%;
    width: 107vw;
    height: 107vw;
    max-width: 112.5rem;
    max-height: 112.5rem;
    transform: translateY(-5%) rotate(15deg);
  }
}
.block-event-profile-hero__image-wrapper + .block-event-profile-hero__decoration {
  display: block;
}