/************************************
 * Grids
 */
/************************************
 * Breakpoints
 */
/************************************
 * Transitions
 */
/************************************
 * Paths
 */
/************************************
 * Fonts
 */
/*** LOCAL FONTS ***/
/*** FONTS ***/
/*** VARIABLES TO USE ***/
/************************************
 * Font Sizes
 */
/************************************
 * COLORS
 */
/************************************
 * THEME
 */
/**
 * Font-size calcul
 */
/**
* Trigger hover effect on different pseudo-classes
* depending on touch or no-touch device
* => no-touch > on hover and on focus (by default, can be disable)
* => touch > on active, and when a class is added on the targeted element (optionnal)
*
* @param $focus (boolean) set to false to disable the hover effect on focus (no-touch only)
* @param $touchClass (string) the hover effect will be set if the targeted element has this class
*/
/**
* Set an item to 100% of its parent's width and height
*/
/**
* Set an item to 100% of the window width (and 100% of its parent height)
* even if located in a limited width wrapper
*/
/**
* Set an item to 100% of the window width
* even if located in a limited width wrapper,
* but keep it in the flow
*/
/**
* To call on an <img> tag.
* Set the image size to adapt to its parent
*/
/**
* Like img-cover(), but for responsive img with <picture>
* /!\ To call on <picture>, or <img> parent.
*/
/**
* Floating form items
* if $class2 equals 'empty', the next item is cleared
*/
/*
A simple little SCSS mixin for creating scrim gradients
Inspired by Andreas Larson - https://github.com/larsenwork
https://css-tricks.com/easing-linear-gradients/
*/
/**
Convert em value into px
 */
/**
Fluid font-size between 2 breakpoints.
Font-size must be in px, use em2px() function to convert from em.
*/
/**
Fluid value between 2 breakpoints (can be use for other than font-size)
(Font-size must be in px, use em2px() function to convert from em)
*/
/*
Fluid value - clamp version (2023)
@see https://www.smashingmagazine.com/2022/10/fluid-typography-clamp-sass-functions/
 */
/**
 * Animated placeholder for images or divs (FB like)
 */
/*@mixin breakpoint($point) {
  @if $point == desktop {
    @media only screen and (max-width: $bp-xlarge) {
      @content;
    }
  }
  @else if $point == table {
    @media only screen and (max-width: $bp-large) {
      @content;
    }
  }
  @else if $point == mobile {
    @media only screen and (max-width: $bp-xsmall) {
      @content;
    }
  }
}*/
/*** SPECIFIC TO CURRENT PROJECT ***/
.block-multifocus__team-member {
  container-type: inline-size;
  height: 100%;
}
.block-multifocus__team-member .team-member {
  height: 100%;
  container: none !important;
  padding: 10px !important;
  width: 600px;
  max-width: 100% !important;
  border-radius: 100px !important;
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
  gap: 15px !important;
}
.block-multifocus__team-member .team-member .left {
  -webkit-box-flex: 0 !important;
      -ms-flex: 0 0 100px !important;
          flex: 0 0 100px !important;
  -ms-flex-item-align: center;
      align-self: center;
}
.block-multifocus__team-member .team-member .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  padding-block: 10px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.block-multifocus__team-member .team-member .quote {
  font-size: 14px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.block-multifocus__team-member .team-member .quote:before {
  content: "";
  margin-right: 7.5px;
  width: clamp(10px, 0.19vw + 9.27px, 13px);
  height: clamp(10px, 0.19vw + 9.27px, 13px);
  position: relative;
  display: inline-block;
  background: url("../../svg/quote.svg") no-repeat center;
  background-size: contain;
}
@container (max-width: 320px) {
  .block-multifocus__team-member .team-member {
    gap: 0 !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background: transparent;
  }
  .block-multifocus__team-member .team-member .left {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 150px;
            flex: 0 0 150px;
    z-index: 1;
    border: 5px solid var(--c-page-bg);
  }
  .block-multifocus__team-member .team-member .right {
    background: var(--c-dark);
    border-radius: 35px;
    padding-inline: 20px;
    -webkit-padding-after: 20px;
            padding-block-end: 20px;
    -webkit-padding-before: 60px;
            padding-block-start: 60px;
    -webkit-margin-before: -50px;
            margin-block-start: -50px;
  }
}
@container (min-width: 371px) {
  .block-multifocus__team-member .team-member .left {
    -webkit-box-flex: 0 !important;
        -ms-flex: 0 0 150px !important;
            flex: 0 0 150px !important;
  }
  .block-multifocus__team-member .team-member .right {
    gap: 10px;
  }
  .block-multifocus__team-member .team-member .quote {
    font-size: 16px;
  }
}
/*# sourceMappingURL=block-team-member.css.map */
