/************************************
 * 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__link-cards .list-cards {
  container-type: inline-size;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
}
.block-multifocus__link-cards .list-cards__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.block-multifocus__link-cards .list-cards__item a {
  background-color: var(--c-secondary);
  color: #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  padding-inline: clamp(15px, 0.65vw + 12.57px, 25px);
  padding-block: clamp(20px, 0.65vw + 17.57px, 30px);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.block-multifocus__link-cards .list-cards__item a span {
  -ms-flex-item-align: center;
      align-self: center;
}
.block-multifocus__link-cards .list-cards__item a:after {
  content: "";
  position: relative;
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  background: url("../../svg/arrow-green.svg") no-repeat center;
  background-size: contain;
  -webkit-transition: 0.4s cubic-bezier(0.56, 0.96, 0.3, 1.55);
  transition: 0.4s cubic-bezier(0.56, 0.96, 0.3, 1.55);
}
@media screen and (hover: hover) {
  .block-multifocus__link-cards .list-cards__item a:hover {
    background-color: var(--c-dark);
  }
  .block-multifocus__link-cards .list-cards__item a:hover:after {
    -webkit-transform: translateX(7.5px);
            transform: translateX(7.5px);
  }
}
@container (min-width: 450px) {
  .block-multifocus__link-cards .list-cards__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 7.5px);
            flex: 0 0 calc(50% - 7.5px);
  }
}
@container (min-width: 750px) {
  .block-multifocus__link-cards .list-cards__item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(33.3333% - 10px);
            flex: 0 0 calc(33.3333% - 10px);
  }
}
/*# sourceMappingURL=block-link-cards.css.map */
