/**
 * 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)
 */
/*** SPECIFIC TO CURRENT PROJECT ***/
/************************************
 * 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)
 */
/*** SPECIFIC TO CURRENT PROJECT ***/
/************************************
 * Grids
 */
/************************************
 * Breakpoints
 */
/************************************
 * Transitions
 */
/************************************
 * Paths
 */
/************************************
 * Fonts
 */
/*** LOCAL FONTS ***/
/*** FONTS ***/
/*** VARIABLES TO USE ***/
/************************************
 * Font Sizes
 */
/************************************
 * COLORS
 */
/************************************
 * THEME
 */
/************************************
 * Grids
 */
/************************************
 * Breakpoints
 */
/************************************
 * Transitions
 */
/************************************
 * Paths
 */
/************************************
 * Fonts
 */
/*** LOCAL FONTS ***/
/*** FONTS ***/
/*** VARIABLES TO USE ***/
/************************************
 * Font Sizes
 */
/************************************
 * COLORS
 */
/************************************
 * THEME
 */
.yellow-btn {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  right: 0;
  bottom: 0;
  width: clamp(50px, 2.87vw + 21.85px, 77px);
  height: clamp(50px, 2.87vw + 21.85px, 77px);
  -webkit-transform: translate(-38%, 40%);
          transform: translate(-38%, 40%);
  opacity: 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.yellow-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 80px;
  background-color: var(--c-main);
  z-index: -1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.yellow-btn .arrow {
  content: url("../../svg/arrow-blue-small.svg");
}
@media screen and (max-width: 980px) {
  .yellow-btn {
    display: none;
  }
}

.post-teaser-card {
  display: block;
  position: relative;
  padding-inline: clamp(15px, 0.32vw + 11.87px, 18px) 15px;
}
@media screen and (max-width: 980px) {
  .post-teaser-card {
    padding-inline: clamp(5px, 1.65vw + -1.2px, 15px);
  }
}
.post-teaser-card:hover, .post-teaser-card:focus {
  color: var(--c-secondary);
}
.post-teaser-card:hover .yellow-btn, .post-teaser-card:focus .yellow-btn {
  opacity: 1;
}
.post-teaser-card__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 20px;
  gap: 12px;
}
.post-teaser-card__header .line {
  width: 95px;
  height: 4px;
  background-color: var(--c-main);
}
.post-teaser-card__header .date {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(12px, 0.13vw + 11.51px, 14px);
}
.post-teaser-card__body {
  position: relative;
  line-height: 0;
}
.post-teaser-card__body img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-teaser-card__footer {
  padding-block: clamp(13px, 0.45vw + 11.3px, 20px);
}
.post-teaser-card__footer .category {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(11px, 0.06vw + 10.76px, 12px);
  color: var(--c-secondary-light);
  text-transform: uppercase;
}
.post-teaser-card__footer .title {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(18px, 0.26vw + 17.03px, 22px);
  line-height: 1.2;
}
.post-teaser-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  max-height: 0;
  background-color: #F4F4F4;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: -1;
}
@media screen and (min-width: 995px) {
  .post-teaser-card:hover:before, .post-teaser-card:focus:before {
    max-height: 100%;
  }
}

/************************************
 * 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)
 */
/*** SPECIFIC TO CURRENT PROJECT ***/
.share-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: clamp(30px, 4.21vw + 14.22px, 95px);
}
.share-container__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 2;
}
.share-container__title {
  font-family: "Barlow", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: var(--c-secondary);
  font-size: clamp(14px, 0.66vw + 11.52px, 18px);
  margin-right: 14px;
}
.share-container .a2a_kit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.share-container .a2a_kit a {
  position: relative;
  width: 100%;
  height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: clamp(8px, 0.26vw + 7.03px, 12px);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.share-container .a2a_kit a:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% + 20px);
  height: calc(100% + 20px);
  border-radius: 50%;
  background-color: var(--c-main);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: -1;
  opacity: 0;
  padding: 15px;
}
.share-container .a2a_kit a:hover, .share-container .a2a_kit a:focus {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}
.share-container .a2a_kit a:hover:before, .share-container .a2a_kit a:focus:before {
  opacity: 1;
}
.share-container .a2a_kit .share-picto {
  height: 20px;
}
.share-container .a2a_kit .share-facebook {
  content: url("../../svg/facebook.svg");
}
.share-container .a2a_kit .share-twitter {
  content: url("../../svg/x-twitter.svg");
}
.share-container .a2a_kit .share-linkedin {
  content: url("../../svg/linkedin.svg");
}
.share-container hr {
  width: 100%;
  border: 1px solid #CBCBCB;
  margin-bottom: 70px;
}

.single-post #masthead {
  overflow: hidden;
}
.single-post .article-post__top {
  margin-top: clamp(60px, 0.65vw + 57.57px, 70px);
}
.single-post .article-post__top .content {
  max-width: 1478px;
  padding-inline: 195px;
  margin-inline: auto;
}
@media screen and (max-width: 1200px) {
  .single-post .article-post__top .content {
    padding-inline: clamp(10px, 4.85vw + -8.18px, 50px);
  }
}
.single-post .article-post__top .header__top {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 15px;
}
.single-post .article-post__top .header__top > a {
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--c-secondary);
  position: absolute;
  right: calc(100% + clamp(15px, 17.36vw + -193.33px, 140px));
  white-space: pre;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
@media screen and (max-width: 1200px) {
  .single-post .article-post__top .header__top > a {
    right: unset;
    left: 0;
    top: -45px;
  }
}
.single-post .article-post__top .header__top > a .arrow {
  content: url("../../svg/arrow-half-left.svg");
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.single-post .article-post__top .header__top > a:hover .arrow, .single-post .article-post__top .header__top > a:focus .arrow {
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
}
.single-post .article-post__top .header__top .line {
  margin-left: auto;
  width: 115px;
  height: 4px;
  background-color: var(--c-main);
  margin-right: 25px;
}
.single-post .article-post__top .header__top .date {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(14px, 0.13vw + 13.51px, 16px);
  white-space: pre;
  margin-top: 0;
}
.single-post .article-post__top .header__top .category {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(15px, 0.19vw + 14.27px, 18px);
  color: var(--c-secondary-light);
  text-transform: uppercase;
}
.single-post .article-post__top .header__bottom h1 {
  text-transform: uppercase;
}
.single-post .article-post__top .header__bottom img {
  width: 100%;
}
.single-post .article-post__top .body {
  padding-block: clamp(30px, 2.72vw + 19.81px, 72px) clamp(30px, 4.21vw + 14.22px, 95px);
  padding-left: clamp(0px, 28.72vw + -281.49px, 270px);
}
.single-post .article-post__top .body .post-image {
  margin-block: clamp(30px, 1.94vw + 22.72px, 60px);
}
.single-post .article-post__top .body .post-image__metadata {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.single-post .article-post__top .body .post-image__description {
  font-size: clamp(14px, 0.13vw + 13.51px, 16px);
  color: var(--c-secondary-light);
  padding-right: 10px;
}
.single-post .article-post__top .body .post-image__caption {
  font-size: clamp(11px, 0.13vw + 10.51px, 13px);
  color: #B6B7B7;
}
.single-post .article-post__bottom {
  max-width: 1940px;
  margin-inline: auto;
  margin-bottom: clamp(53px, 3.17vw + 41.11px, 102px);
  padding-inline: clamp(18px, 14.04vw + -119.62px, 150px);
}
@media screen and (max-width: 995px) {
  .single-post .article-post__bottom {
    padding-right: 0;
  }
}
.single-post .article-post__bottom .last-posts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(5px, 1.17vw + -6.47px, 16px);
}
@media screen and (max-width: 995px) {
  .single-post .article-post__bottom .last-posts {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .single-post .article-post__bottom .last-posts .slick-list {
    padding: 0 15% 0 0 !important;
  }
}
/*# sourceMappingURL=post-full.css.map */
