/* stylelint-disable order/order */
/* stylelint-enable order/order */
/****************
 * 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-content-sidebar {
  position: relative;
  padding-top: clamp(2rem, -4.8571428571rem + 14.2857142857vw, 8rem);
}
@media (min-width: 62rem) {
  .block-content-sidebar::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 24.375rem;
    height: 100%;
    background-color: rgba(0, 192, 222, 0.25);
    clip-path: polygon(0 0, 91% 0, 0 97%, 0 98%, 0% 50%);
  }
}
body .block-content-sidebar .wp-block-columns {
  align-items: center !important;
}
@media (max-width: 61.98rem) {
  body .block-content-sidebar .wp-block-columns {
    flex-direction: column-reverse;
  }
}
@media (max-width: 61.98rem) {
  .block-content-sidebar .wp-block-column:first-of-type {
    margin-top: 1.5rem;
  }
  .block-content-sidebar .wp-block-column:first-of-type::before {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    z-index: 1;
    width: 24.375rem;
    height: 100%;
    margin-left: -2rem;
    background-color: rgba(0, 192, 222, 0.25);
    clip-path: polygon(0 0, 85% 0, 0 115%, 0 98%, 0% 50%);
  }
}
.block-content-sidebar .block-sidebar {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  background-color: #fff;
}
@media (max-width: 61.98rem) {
  .block-content-sidebar .block-sidebar {
    margin-top: 1.5rem;
  }
}
.block-content-sidebar .block-sidebar h2 {
  --margin-top: 0;
  margin-bottom: 0.5rem;
}
.block-content-sidebar .block-sidebar p {
  font-weight: var(--subtitle-1-font-weight);
  font-size: var(--subtitle-1-font-size);
  font-family: var(--subtitle-1-font-family);
  line-height: var(--subtitle-1-line-height);
  margin-bottom: var(--subtitle-1-margin-bottom);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.block-content-sidebar .block-sidebar p:last-child {
  margin-bottom: 0;
}
.block-content-sidebar__images {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 2rem;
  margin-top: clamp(3rem, -0.4285714286rem + 7.1428571429vw, 6rem);
}
@media (max-width: 61.98rem) {
  .block-content-sidebar__images {
    flex-wrap: wrap;
  }
  .block-content-sidebar__images .block-content-sidebar__image-col {
    width: 100%;
  }
}
.block-content-sidebar__images figure {
  height: 100%;
}
.block-content-sidebar__images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}