/* stylelint-disable order/order */
/*
* Converts an pixel value into a rem value.
*
* @param string  $values    the pixel value(s) as a number. Can convert multiple values if values separated by a space.
* @param integer $base      the base pixel value.
*
* @return string   a space-separated string of rem values.
*/
/*
* This is an abbreviated wrapper for the responsive-values function.
*/
/*
* Creates a CSS clamp value that sizes between breakpoints.
*
* @param integer $min                    the minimum pixel value.
* @param integer $max                    the maximum pixel value.
* @param string  $smallest-breakpoint    the name of the smallest breakpoint from the $grid-breakpoints variable.
* @param string  $largest-breakpoint     the name of the largest breakpoint from the $grid-breakpoints variable.
* @param string  $screen                 whether to use a horizontal (width) breakpoint or a vertical (height) breakpoint.
*
* @return string   a CSS clamp property value.
*/
/*
* Outputs a font family value from the $fonts variable.
*
* @param string  $key   the font key.
*
* @return string   a font family value.
*/
/*
* Outputs a color value from the $paints or $additional-paints variables.
*
* @param string   $key   the color name.
*
* @return string   a color value.
*/
/*
* Outputs an effect value from the $effects variable.
*
* @param string  $key   the effect name.
*
* @return string   an effect value.
*/
/* stylelint-enable order/order */
/*
* Used to target heading selectors.
*
* @param integer  $start               the first heading element to target. 1 through 6.
* @param integer  $end                 the last heading element to target. 1 through 6.
* @param string   $beforeCombinator    the CSS combinator to include before the heading classes.
* @param string   $afterCombinator     the CSS combinator to include after the heading classes.
* @param boolean  $includeFontClasses  whether or not to include the .has-t-1... classes or just output the standard heading elements.
*
* @return string  The included CSS wrapped with selectors for the specified headings.
*/
/*
* Used to add properties to a for a pseudo element to make an icon based on the iconfont set.
*
* @param string   $content     the content for the icon. Usually uses one of the iconfont variables.
* @param string   $font-size   the font size with unit.
*
* @return string  The CSS properties for the icon.
*/
/*
* Generates CSS to fit an element into the 12-column grid. Only works when used on an element where the parent element is the width of the entire page.
*
* @return string  CSS properties to set the width of the element to the specified column sizes.
*/
/*
* Used to target elements with a background color that has a text color different from the standard color.
*
* @param string   $additionalSelectors     additional comma-separated selectors to add.
*
* @return string  The included CSS wrapped with selectors for the specified background.
*/
/*
* Used to target button elements with a background color set to use the alt button colors.
*
* @param string   $additionalSelectors     additional comma-separated selectors to add.
*
* @return string  The included CSS wrapped with selectors for the specified background.
*/
/*
* Used to add the CSS Grid properties for the 12-column grid.
*
* @return string  The CSS Grid properties for the 12-column grid.
*/
/*
* Used to visually hide an element but still allow screen readers to access the element and its contents for accessibility.
*
* @return string  The styles needed to visually hide an element.
*/
/*
* Used to add the decorative line on the right or left side of a text element.
*/
/*
* Used to truncate text.
*/
/****************
 * Fonts
 *
 * The font settings are defined via the gulp figma which task creates variables in the css/__base-includes/figma/_figma-font-styles.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/*
* This array is used to specify the fonts used on the project with the following parameters:
	base - the name for use in the font() mixin.
		css - the output CSS value.
		figma-name: - the 'font-family' name ued in the _figma-font-variable.scss file.
	)
*/
/****************
 * Colors
 *
 * The primary colors are defined via the gulp figma task which creates variables in the css/__base-includes/figma/_figma-color-variables.scss file based on the Figma file. Additional variables are defined here.
 ****************/
/* If additional colors need to be added to the _figma-color-variables.scss, they can be added to this variable: */
/* This variable controls the background colors generated in the ACF background_color field and the background color classes - bg-white, bg-neutral-10, etc: */
/* This variable controls the default text color on a light background. Used with paint(text) to generate a CSS variable that changes to use background font colors. */
/* If a background color uses a different font color than the default color, use these variables to specify the alternate colors */
/* Backgrounds specified in this variable will use the alternative text colors: */
/* Backgrounds specified in this variable will use the alternative button colors: */
/****************
 * Effects
 ****************/
/****************
 * Grid Settings
 ****************/
/****************
 * Block Spacing
 *
 * These variables are based on the "Spacing" rules found in the "Foundations" section in Figma. These control the default spacing between blocks of different colors.
 ****************/
/*
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-collage {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
@media (max-width: 61.98rem) {
  .block-content-collage {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
.block-content-collage__container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  padding: 0 clamp(1.25rem, -0.1785714286rem + 2.9761904762vw, 2.5rem) 0 clamp(1.25rem, -0.1785714286rem + 2.9761904762vw, 2.5rem);
}
@media (max-width: 61.98rem) {
  .block-content-collage__container {
    flex-direction: column-reverse;
    padding: 0 1.25rem 0 1.25rem;
  }
}
.block-content-collage__left {
  position: relative;
  flex: 0 0 52%;
  padding-right: clamp(1.25rem, -13.8739255014rem + 24.6418338109vw, 12rem);
}
@media (max-width: 61.98rem) {
  .block-content-collage__left {
    width: 73%;
  }
}
.block-content-collage__right {
  margin-top: clamp(0rem, -13.125rem + 14.5833333333vw, 2.1875rem);
  margin-right: clamp(0rem, -37.5rem + 50vw, 15rem);
}
@media (max-width: 61.98rem) {
  .block-content-collage__right {
    height: auto;
    margin-bottom: 3rem;
    overflow: unset;
  }
}
@media (min-width: 62rem) {
  .block-content-collage__content {
    min-height: clamp(24.375rem, 13.5610465116rem + 17.4418604651vw, 31.875rem);
  }
}
@media (max-width: 61.98rem) {
  .block-content-collage__content {
    margin-bottom: auto;
  }
}
@media (max-width: 61.98rem) {
  .block-content-collage__content .wp-block-buttons--tertiary-wrapper {
    margin-top: 1.25rem;
  }
}
.block-content-collage__content .wp-block-list li:last-child {
  padding-bottom: 1.5rem;
}
@media (max-width: 61.98rem) {
  .block-content-collage__content .wp-block-list li:last-child {
    padding-bottom: 0rem;
  }
}
.block-content-collage__content .wp-block-buttons:last-child {
  margin-bottom: 0;
}
@media (max-width: 61.98rem) {
  .block-content-collage__content .wp-block-buttons:last-child {
    margin-top: 1.25rem;
  }
}
.block-content-collage__content .wp-block-buttons {
  margin-top: 0;
}
.block-content-collage__content .wp-block-list,
.block-content-collage__content .wp-block-buttons-is-layout-flex {
  margin: 0;
}
.block-content-collage__right_image_1 {
  width: clamp(11.25rem, 0.0755813953rem + 18.023255814vw, 19rem);
  margin-top: 4.125rem;
  border-radius: 1.25rem;
  transform: translate(clamp(-9.375rem, 13.5174418605rem + -21.8023255814vw, 0rem));
  overflow: hidden;
}
@media (max-width: 61.98rem) {
  .block-content-collage__right_image_1 {
    display: none;
  }
}
.block-content-collage__right_image_1 img {
  min-height: 6.5rem;
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 1/1;
}
.block-content-collage__large_image {
  border-radius: 1.25rem;
  overflow: hidden;
}
@media (max-width: 61.98rem) {
  .block-content-collage__large_image {
    width: clamp(13.625rem, -3.6106939935rem + 73.538961039vw, 41.9375rem);
  }
}
.block-content-collage__large_image img {
  width: 100%;
  height: clamp(15.75rem, -2.7412743506rem + 78.8961038961vw, 46.125rem);
  object-fit: cover;
  object-position: top center;
}
@media (min-width: 62rem) {
  .block-content-collage__large_image img {
    min-height: var(--large-image-height);
    max-height: 46.125rem;
  }
}
.block-content-collage__small_image_1 {
  margin-top: clamp(1.25rem, -0.6071428571rem + 3.869047619vw, 2.875rem);
  text-align: right;
  overflow: hidden;
}
@media (max-width: 61.98rem) {
  .block-content-collage__small_image_1 {
    width: clamp(8.875rem, -1.5501217532rem + 44.4805194805vw, 26rem);
    margin-left: clamp(4.6875rem, -2.0850243506rem + 28.8961038961vw, 15.8125rem);
  }
}
.block-content-collage__small_image_1 img {
  height: clamp(6.625rem, -1.2509131494rem + 33.6038961039vw, 19.5625rem);
  border-radius: 1.25rem;
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 2/3;
}
@media (min-width: 62rem) {
  .block-content-collage__small_image_1 img {
    height: clamp(15.9375rem, 11.5218023256rem + 7.1220930233vw, 19rem);
    max-width: clamp(15.625rem, 0.6656976744rem + 24.1279069767vw, 26rem);
  }
}
.block-content-collage__small_image_2 {
  display: none;
}
@media (max-width: 61.98rem) {
  .block-content-collage__small_image_2 {
    position: absolute;
    left: clamp(14.375rem, -3.1270292208rem + 74.6753246753vw, 43.125rem);
    bottom: 18%;
    display: block;
    width: clamp(6.4375rem, 0.6542207792rem + 24.6753246753vw, 15.9375rem);
    border-radius: 1.25rem;
    overflow: hidden;
  }
}
.block-content-collage__small_image_2 img {
  width: auto;
  height: clamp(6.4375rem, 0.6542207792rem + 24.6753246753vw, 15.9375rem);
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 1/1;
}
@media (min-width: 62rem) {
  .block-content-collage__small_image_2 img {
    min-height: 19rem;
  }
}