/* 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-cta-strip__content {
  position: relative;
  z-index: 1;
  padding: clamp(5.5rem, 4.9285714286rem + 1.1904761905vw, 6rem) 1.25rem 6rem;
  text-align: center;
  border-radius: 4.5rem;
  background: linear-gradient(90deg, #0587be 0%, #0737cf 50%, #0a1151 100%);
  box-shadow: 0 0.625rem 0.8125rem rgba(0, 8, 49, 0.08);
  overflow: hidden;
}
@media (min-width: 48rem) {
  .block-cta-strip__content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-right: clamp(4rem, -2.6428571429rem + 10.7142857143vw, 7rem);
    padding-left: clamp(4rem, -2.6428571429rem + 10.7142857143vw, 7rem);
    border-radius: 100rem;
  }
}
.block-cta-strip__content::before {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  z-index: -1;
  width: 220vw;
  height: 220vw;
  background: linear-gradient(90deg, #0587be 0%, #0737cf 50%, #0a1151 100%);
  transform: translate(23%, 23%);
  clip-path: url(#crescent-mask);
}
@media (min-width: 36rem) {
  .block-cta-strip__content::before {
    left: 0;
    right: auto;
    width: 112.5rem;
    height: 112.5rem;
    background: linear-gradient(-90deg, #0587be 0%, #0737cf 50%, #0a1151 100%);
    transform: rotate(-180deg) translate(12.5%, -8%);
  }
}
@media (max-width: 47.98rem) {
  .block-cta-strip .block-content:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}
@media (min-width: 48rem) {
  .block-cta-strip .block-content:not(:last-child) {
    margin-right: 3rem;
    text-align: left;
  }
}
.block-cta-strip .block-content * {
  text-align: center;
}
@media (min-width: 48rem) {
  .block-cta-strip .block-content * {
    text-align: left;
  }
}
@media (min-width: 48rem) {
  .block-cta-strip .block-content + .wp-block-buttons,
.block-cta-strip .block-content + .wp-block-button {
    margin-top: auto;
  }
}
@media (max-width: 47.98rem) {
  .block-cta-strip .wp-block-buttons {
    justify-content: center;
  }
}