/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Outfit:wght@100..900&display=swap");
.c-btn {
  font-weight: 400;
  font-family: "Inter", sans-serif;
  display: inline-flex;
  padding: 0.625rem 1.125rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 30px;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  cursor: pointer;
  background-color: var(--wp--preset--color--bg-primary);
  color: var(--wp--preset--color--txt-white);
}
.c-btn {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .c-btn {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .c-btn {
    font-size: 0.875rem;
  }
}
.c-btn--bg-primary {
  background-color: var(--wp--preset--color--bg-primary);
  color: var(--wp--preset--color--txt-white);
  border-color: var(--wp--preset--color--bg-primary);
}
.c-btn--bg-black {
  background-color: #131313;
  color: var(--wp--preset--color--txt-white);
  border-color: #131313;
}
.c-btn--bg-white {
  background-color: var(--wp--preset--color--bg-white);
  color: var(--wp--preset--color--txt-black);
  border-color: #131313;
}
.c-btn--bg-secondary {
  background-color: var(--wp--preset--color--bg-secondary);
  color: var(--wp--preset--color--txt-black);
  border-color: var(--wp--preset--color--bg-secondary);
}
.c-btn--bg-transparent {
  background-color: transparent;
  color: var(--wp--preset--color--txt-black);
  border-color: #131313;
}
.c-btn[class*=c-btn--hover-]:hover, .c-btn[class*=c-btn--hover-]:focus-visible {
  text-decoration: none;
}
.c-btn--hover-bg-primary:hover, .c-btn--hover-bg-primary:focus-visible {
  background-color: var(--wp--preset--color--bg-primary);
  color: var(--wp--preset--color--txt-white);
  border-color: var(--wp--preset--color--bg-primary);
}
.c-btn--hover-bg-black:hover, .c-btn--hover-bg-black:focus-visible {
  background-color: #131313;
  color: var(--wp--preset--color--txt-white);
  border-color: #131313;
}
.c-btn--hover-bg-white:hover, .c-btn--hover-bg-white:focus-visible {
  background-color: var(--wp--preset--color--bg-white);
  color: var(--wp--preset--color--txt-black);
  border-color: var(--wp--preset--color--bg-white);
}
.c-btn--hover-bg-secondary:hover, .c-btn--hover-bg-secondary:focus-visible {
  background-color: var(--wp--preset--color--bg-secondary);
  color: var(--wp--preset--color--txt-black);
  border-color: var(--wp--preset--color--bg-secondary);
}

.c-breadcrumb > span {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.375rem;
  opacity: 1;
}
.c-breadcrumb span > span,
.c-breadcrumb span > span > a {
  color: var(--wp--preset--color--txt-black);
  font-weight: 400;
  font-family: "Inter", sans-serif;
  line-height: 1.3;
  opacity: 0.5;
}
.c-breadcrumb span > span,
.c-breadcrumb span > span > a {
  font-size: 12px;
}
@media screen and (min-width: 569px) {
  .c-breadcrumb span > span,
  .c-breadcrumb span > span > a {
    font-size: calc(12px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .c-breadcrumb span > span,
  .c-breadcrumb span > span > a {
    font-size: 0.75rem;
  }
}
.c-breadcrumb span > span > a {
  opacity: 1;
}
.c-breadcrumb svg {
  transform: translateY(-1px);
}
/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
.c-product-card {
  display: grid;
  background-color: var(--wp--preset--color--bg-gray-light);
  padding: 1.875rem;
  border-radius: 4px;
}
.c-product-card__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-product-card__compare-btn {
  background-color: transparent;
  border: 0;
  outline: 0;
  display: flex;
  gap: 0.3125rem;
  font-weight: 300;
  font-family: "Inter", sans-serif;
  opacity: 0.4;
}
.c-product-card__compare-btn {
  font-size: 15px;
}
@media screen and (min-width: 569px) {
  .c-product-card__compare-btn {
    font-size: calc(15px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .c-product-card__compare-btn {
    font-size: 0.9375rem;
  }
}
.c-product-card__compare-indicator {
  width: 2.1875rem;
  height: 2.1875rem;
  display: grid;
  place-items: center;
  background-color: var(--wp--preset--color--bg-white);
  border-radius: 4px;
}
.c-product-card__compare-indicator svg {
  height: 0.75rem;
  width: auto;
}
.c-product-card__compare-indicator path {
  stroke: var(--wp--preset--color--txt-black);
}
.c-product-card__thumb-wrap {
  max-height: 20rem;
}
.c-product-card__thumb {
  object-fit: contain;
  height: 100%;
  width: 100%;
}
.c-product-card__ttl {
  color: inherit;
  font-weight: 400;
  line-height: 1.5;
}
.c-product-card__ttl {
  font-size: 15px;
}
@media screen and (min-width: 569px) {
  .c-product-card__ttl {
    font-size: calc(15px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .c-product-card__ttl {
    font-size: 0.9375rem;
  }
}

/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
.reference-single {
  padding-top: 1.25rem;
  padding-bottom: 6.25rem;
}
.reference-single__container {
  width: 100%;
  margin: auto;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  padding-left: 3.75rem;
  padding-right: 3.75rem;
  max-width: calc(71.25rem + 1.875rem * 2);
}
@media screen and (max-width: 1280px) {
  .reference-single__container {
    padding-left: calc(1.875rem / 2);
    padding-right: calc(1.875rem / 2);
  }
}
@media screen and (max-width: 991px) {
  .reference-single__container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: 1280px) {
  .reference-single__container {
    padding-left: calc(1.875rem / 2);
    padding-right: calc(1.875rem / 2);
  }
}
@media screen and (max-width: 991px) {
  .reference-single__container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .reference-single__container {
    max-width: calc(75rem + 1.875rem * 2);
  }
}
@media screen and (min-width: 1920px) {
  .reference-single__container {
    max-width: calc(75rem + 1.875rem * 2);
  }
}
@media screen and (min-width: 2160px) {
  .reference-single__container {
    max-width: calc(90rem + 1.875rem * 2);
  }
}
.reference-single__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  padding-top: 1.25rem;
}
.reference-single__breadcrumb {
  align-self: flex-start;
  width: 100%;
  text-align: left;
  margin-bottom: 0.5rem;
}
.reference-single__breadcrumb .wpseo-breadcrumb,
.reference-single__breadcrumb span,
.reference-single__breadcrumb a {
  text-align: left;
}
.reference-single__title {
  margin: 0;
  color: var(--wp--preset--color--txt-gray-dark);
  font-family: "Inter", sans-serif;
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 4rem;
  letter-spacing: -0.07rem;
}
.reference-single__nom {
  max-width: 61.25rem;
  color: var(--wp--preset--color--txt-gray-dark);
}
.reference-single__nom p {
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
  font-style: normal;
  font-weight: 300;
  color: var(--wp--preset--color--txt-gray-dark);
}
.reference-single__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.reference-single__chip {
  color: var(--wp--preset--color--txt-gray-dark);
}
.reference-single__chip--market {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.875rem;
  line-height: 1.4;
  font-style: normal;
  font-weight: 500;
  background: color-mix(in srgb, var(--wp--preset--color--bg-secondary) 20%, transparent);
  padding: 0.375rem 0.875rem;
  border-radius: 2.0625rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}
.reference-single__chip--tag {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.875rem;
  line-height: 1.4;
  font-style: normal;
  font-weight: 500;
  background: color-mix(in srgb, var(--wp--preset--color--bg-secondary) 20%, transparent);
  padding: 0.375rem 0.875rem;
  border-radius: 2.0625rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: var(--wp--preset--color--bg-white);
  border: 0.0625rem solid color-mix(in srgb, var(--wp--preset--color--bg-secondary) 50%, transparent);
  color: var(--wp--preset--color--txt-gray-dark);
}
.reference-single__chip--lieu {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.875rem;
  line-height: 1.4;
  font-style: normal;
  font-weight: 500;
  background: color-mix(in srgb, var(--wp--preset--color--bg-secondary) 20%, transparent);
  padding: 0.375rem 0.875rem;
  border-radius: 2.0625rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: transparent;
  border: 0.0625rem solid color-mix(in srgb, var(--wp--preset--color--txt-black) 22%, transparent);
  color: var(--wp--preset--color--txt-gray-dark);
}
.reference-single__media {
  margin: 1.5rem 0 0;
}
.reference-single__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  max-height: 37.5rem;
  object-fit: cover;
}
.reference-single__caption {
  margin-top: 0.625rem;
  color: var(--wp--preset--color--txt-gray-medium);
}
.reference-single__caption {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .reference-single__caption {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .reference-single__caption {
    font-size: 0.875rem;
  }
}
.reference-single__grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.875rem 3.75rem;
}
.reference-single__item {
  border-top: 0.0625rem solid var(--wp--preset--color--bg-gray-light);
  padding-top: 0.5625rem;
}
.reference-single__item-label {
  margin: 0;
  color: var(--wp--preset--color--bg-primary);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
}
.reference-single__item-value {
  margin-top: 0.5625rem;
}
.reference-single__item-value p {
  margin: 0;
  color: var(--wp--preset--color--txt-gray-dark);
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.0225rem;
}
.reference-single__item-value a {
  display: inline-block;
  margin-top: 0.25rem;
  color: var(--wp--preset--color--txt-gray-dark);
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
@media screen and (max-width: 1024px) {
  .reference-single__title {
    font-size: 3.5rem;
    font-style: normal;
    font-weight: 500;
    font-family: "Inter", sans-serif;
    line-height: 1.14;
    letter-spacing: -0.07rem;
    color: var(--wp--preset--color--txt-gray-dark);
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  .reference-single__title {
    font-size: 3rem;
    line-height: 1.15;
    letter-spacing: -0.06rem;
  }
}
@media screen and (max-width: 1024px) and (max-width: 991px) {
  .reference-single__title {
    font-size: 2.5rem;
    line-height: 1.15;
    letter-spacing: -0.05rem;
  }
}
@media screen and (max-width: 1024px) and (max-width: 580px) {
  .reference-single__title {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.04rem;
  }
}
@media screen and (max-width: 1024px) {
  .reference-single__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1.875rem;
  }
}
@media screen and (max-width: 991px) {
  .reference-single {
    padding-top: 2.5rem;
    padding-bottom: 3.75rem;
  }
  .reference-single__chips {
    gap: 0.625rem;
  }
  .reference-single__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }
}

/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
.market-single__other-markets {
  margin-top: 4rem;
  margin-bottom: 4rem;
}
.market-single__other-markets-title {
  margin: 0 0 1.5rem;
  color: var(--wp--preset--color--txt-gray-dark);
  font-weight: 500;
}
.market-single__other-markets-title {
  font-size: 28px;
}
@media screen and (min-width: 569px) {
  .market-single__other-markets-title {
    font-size: calc(28px + 8 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .market-single__other-markets-title {
    font-size: 2.25rem;
  }
}
.market-single__other-markets-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.market-single__other-markets-link {
  padding: 0.75rem 1.5rem;
  border-radius: 1.875rem;
  border: 1px solid color-mix(in srgb, #131313 25%, transparent);
  display: inline-flex;
  align-items: center;
  color: var(--wp--preset--color--txt-gray-dark);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -0.03rem;
}
.market-single__other-markets-link:hover {
  background-color: #131313;
  border-color: #131313;
  color: var(--wp--preset--color--txt-white);
}
@media screen and (max-width: 991px) {
  .market-single__other-markets {
    margin-top: 2.5rem;
    margin-bottom: 3rem;
  }
  .market-single__other-markets-title {
    margin-bottom: 1rem;
  }
  .market-single__other-markets-link {
    font-size: 1.125rem;
    padding: 0.625rem 1rem;
  }
}

/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
.jobs-offer-single {
  padding-top: 1.25rem;
  padding-bottom: 5rem;
}
.jobs-offer-single .s-form-shortcode {
  border-top: 1px solid rgba(0, 0, 0, 0.2705882353);
  padding-top: 2.5rem;
}
.jobs-offer-single .s-form-shortcode__form {
  max-width: 45.625rem;
  margin-right: auto;
  margin-left: auto;
}
.jobs-offer-single__container {
  width: 100%;
  margin: auto;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  padding-left: 3.75rem;
  padding-right: 3.75rem;
  max-width: calc(71.25rem + 1.875rem * 2);
}
@media screen and (max-width: 1280px) {
  .jobs-offer-single__container {
    padding-left: calc(1.875rem / 2);
    padding-right: calc(1.875rem / 2);
  }
}
@media screen and (max-width: 991px) {
  .jobs-offer-single__container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: 1280px) {
  .jobs-offer-single__container {
    padding-left: calc(1.875rem / 2);
    padding-right: calc(1.875rem / 2);
  }
}
@media screen and (max-width: 991px) {
  .jobs-offer-single__container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .jobs-offer-single__container {
    max-width: calc(75rem + 1.875rem * 2);
  }
}
@media screen and (min-width: 1920px) {
  .jobs-offer-single__container {
    max-width: calc(75rem + 1.875rem * 2);
  }
}
@media screen and (min-width: 2160px) {
  .jobs-offer-single__container {
    max-width: calc(90rem + 1.875rem * 2);
  }
}
.jobs-offer-single__breadcrumb {
  margin-top: 1.25rem;
  margin-bottom: 3.75rem;
}
.jobs-offer-single__layout {
  display: grid;
  grid-template-columns: minmax(0, 30%) minmax(0, 70%);
  gap: 2rem;
  align-items: start;
}
.jobs-offer-single__left {
  min-width: 0;
  position: sticky;
  background-color: var(--wp--preset--color--bg-tertiary);
  top: calc(4.625rem + 1.25rem);
  border-radius: 1.25rem;
}
.jobs-offer-single__sticky {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem;
}
.jobs-offer-single__title {
  margin: 0;
  color: var(--wp--preset--color--txt-black);
  font-weight: 400;
}
.jobs-offer-single__title {
  font-size: 28px;
}
@media screen and (min-width: 569px) {
  .jobs-offer-single__title {
    font-size: calc(28px + 8 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .jobs-offer-single__title {
    font-size: 2.25rem;
  }
}
.jobs-offer-single__resume {
  color: var(--wp--preset--color--txt-black);
}
.jobs-offer-single__resume p {
  margin-top: 0;
  margin-bottom: 1em;
  font-size: 1rem;
  line-height: 1.375;
}
.jobs-offer-single__resume p:last-child {
  margin-bottom: 0;
}
.jobs-offer-single__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.jobs-offer-single__meta-item {
  margin: 0;
}
.jobs-offer-single__meta-value {
  color: var(--wp--preset--color--txt-black);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.875rem;
  line-height: 1.4;
  font-style: normal;
  font-weight: 500;
  background: color-mix(in srgb, var(--wp--preset--color--bg-secondary) 20%, transparent);
  padding: 0.375rem 0.875rem;
  border-radius: 2.0625rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}
.jobs-offer-single__right {
  min-width: 0;
}
.jobs-offer-single__description {
  color: var(--wp--preset--color--txt-black);
  margin-top: 1.75rem;
}
.jobs-offer-single__description h2 {
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  line-height: 1.14;
  letter-spacing: -0.07rem;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 1024px) {
  .jobs-offer-single__description h2 {
    font-size: 3rem;
    line-height: 1.15;
    letter-spacing: -0.06rem;
  }
}
@media screen and (max-width: 991px) {
  .jobs-offer-single__description h2 {
    font-size: 2.5rem;
    line-height: 1.15;
    letter-spacing: -0.05rem;
  }
}
@media screen and (max-width: 580px) {
  .jobs-offer-single__description h2 {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.04rem;
  }
}
@media screen and (max-width: 991px) {
  .jobs-offer-single__description h2 {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 580px) {
  .jobs-offer-single__description h2 {
    margin-bottom: 2rem;
  }
}
.jobs-offer-single__description h3 {
  font-size: 2rem;
  line-height: 1.09;
  font-style: normal;
  font-weight: 200;
  font-family: "Inter", sans-serif;
  margin-bottom: 1rem;
}
.jobs-offer-single__description h5 {
  font-size: 18px;
}
@media screen and (min-width: 569px) {
  .jobs-offer-single__description h5 {
    font-size: calc(18px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .jobs-offer-single__description h5 {
    font-size: 1.125rem;
  }
}
.jobs-offer-single__description p {
  margin-top: 1.875rem;
}
.jobs-offer-single__description p:first-child {
  margin-top: 0;
}
.jobs-offer-single__description h2 + p,
.jobs-offer-single__description h3 + p,
.jobs-offer-single__description h4 + p,
.jobs-offer-single__description h5 + p {
  margin-top: 1.25rem;
}
.jobs-offer-single__description p + ul {
  margin-top: 0;
}
.jobs-offer-single__description b,
.jobs-offer-single__description strong {
  font-weight: 700;
}
.jobs-offer-single__description .btn {
  margin-top: 2rem;
}
.jobs-offer-single__description i,
.jobs-offer-single__description em {
  font-style: italic;
}
.jobs-offer-single__description p > a,
.jobs-offer-single__description li > a {
  text-decoration: underline;
  line-height: 1.37;
}
.jobs-offer-single__description ul,
.jobs-offer-single__description ol {
  margin-top: 1.875rem;
  list-style: none;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.jobs-offer-single__description ul li,
.jobs-offer-single__description ol li {
  position: relative;
  padding-left: 1.5rem;
}
.jobs-offer-single__description ul li a,
.jobs-offer-single__description ol li a {
  font-size: 16px;
}
.jobs-offer-single__description ul li:last-child,
.jobs-offer-single__description ol li:last-child {
  margin-bottom: 0;
}
.jobs-offer-single__description ul li::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0.4375rem;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #131313;
  border-radius: 200px;
}
.jobs-offer-single__description ol li {
  list-style: decimal;
}
.jobs-offer-single__description img {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.jobs-offer-single__description *:first-child {
  margin-top: 0;
}
.jobs-offer-single__description img {
  margin: 1.25rem 0 3.5rem;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
.jobs-offer-single__description h2 {
  font-weight: 400;
  margin-top: 3.75rem;
  margin-bottom: 1rem;
}
.jobs-offer-single__description h2 {
  font-size: 28px;
}
@media screen and (min-width: 569px) {
  .jobs-offer-single__description h2 {
    font-size: calc(28px + 8 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .jobs-offer-single__description h2 {
    font-size: 2.25rem;
  }
}
.jobs-offer-single__cta {
  margin-top: 6.25rem;
}
@media screen and (max-width: 1024px) {
  .jobs-offer-single {
    padding-bottom: 10px;
  }
  .jobs-offer-single__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .jobs-offer-single__left {
    position: static;
    top: auto;
  }
  .jobs-offer-single__cta {
    margin-top: 60px;
  }
}

/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
.communique-single {
  padding-top: 1.25rem;
}
.communique-single .c-breadcrumb {
  margin-top: 1.25rem;
  margin-bottom: 1.875rem;
}
.communique-single__hero {
  width: 100%;
  margin: auto;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
  padding-left: 3.75rem;
  padding-right: 3.75rem;
  max-width: calc(71.25rem + 1.875rem * 2);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 1280px) {
  .communique-single__hero {
    padding-left: calc(1.875rem / 2);
    padding-right: calc(1.875rem / 2);
  }
}
@media screen and (max-width: 991px) {
  .communique-single__hero {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (max-width: 1280px) {
  .communique-single__hero {
    padding-left: calc(1.875rem / 2);
    padding-right: calc(1.875rem / 2);
  }
}
@media screen and (max-width: 991px) {
  .communique-single__hero {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
@media screen and (min-width: 1024px) {
  .communique-single__hero {
    max-width: calc(75rem + 1.875rem * 2);
  }
}
@media screen and (min-width: 1920px) {
  .communique-single__hero {
    max-width: calc(75rem + 1.875rem * 2);
  }
}
@media screen and (min-width: 2160px) {
  .communique-single__hero {
    max-width: calc(90rem + 1.875rem * 2);
  }
}
.communique-single__hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: stretch;
}
.communique-single__breadcrumb {
  margin-bottom: 0.75rem;
}
.communique-single__hero-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
  justify-content: flex-start;
}
.communique-single__date {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.875rem;
  line-height: 1.4;
  font-style: normal;
  font-weight: 500;
  background: color-mix(in srgb, var(--wp--preset--color--bg-secondary) 20%, transparent);
  padding: 0.375rem 0.875rem;
  border-radius: 2.0625rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: var(--wp--preset--color--bg-white);
  border: 1px solid color-mix(in srgb, var(--wp--preset--color--txt-black) 22%, transparent);
}
.communique-single__title {
  margin: 0;
  color: var(--wp--preset--color--txt-black);
  font-size: 3.5rem;
  line-height: 1;
  font-style: normal;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  line-height: 64px;
  /* 114.286% */
  letter-spacing: -1.12px;
}
.communique-single__media {
  margin: 0;
  height: 100%;
  position: relative;
}
.communique-single__image {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 1.25rem;
  object-fit: cover;
}
.communique-single__caption {
  margin-top: 0.625rem;
  color: var(--wp--preset--color--txt-gray-medium);
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  line-height: 1.4;
  font-style: normal;
  font-weight: 300;
}
.communique-single__content-wrap {
  margin-top: 0;
}
.communique-single__content {
  color: var(--wp--preset--color--txt-black);
}
.communique-single__content h2 {
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  line-height: 1.14;
  letter-spacing: -0.07rem;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 1024px) {
  .communique-single__content h2 {
    font-size: 3rem;
    line-height: 1.15;
    letter-spacing: -0.06rem;
  }
}
@media screen and (max-width: 991px) {
  .communique-single__content h2 {
    font-size: 2.5rem;
    line-height: 1.15;
    letter-spacing: -0.05rem;
  }
}
@media screen and (max-width: 580px) {
  .communique-single__content h2 {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.04rem;
  }
}
@media screen and (max-width: 991px) {
  .communique-single__content h2 {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 580px) {
  .communique-single__content h2 {
    margin-bottom: 2rem;
  }
}
.communique-single__content h3 {
  font-size: 2rem;
  line-height: 1.09;
  font-style: normal;
  font-weight: 200;
  font-family: "Inter", sans-serif;
  margin-bottom: 1rem;
}
.communique-single__content h5 {
  font-size: 18px;
}
@media screen and (min-width: 569px) {
  .communique-single__content h5 {
    font-size: calc(18px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .communique-single__content h5 {
    font-size: 1.125rem;
  }
}
.communique-single__content p {
  margin-top: 1.875rem;
}
.communique-single__content p:first-child {
  margin-top: 0;
}
.communique-single__content h2 + p,
.communique-single__content h3 + p,
.communique-single__content h4 + p,
.communique-single__content h5 + p {
  margin-top: 1.25rem;
}
.communique-single__content p + ul {
  margin-top: 0;
}
.communique-single__content b,
.communique-single__content strong {
  font-weight: 700;
}
.communique-single__content .btn {
  margin-top: 2rem;
}
.communique-single__content i,
.communique-single__content em {
  font-style: italic;
}
.communique-single__content p > a,
.communique-single__content li > a {
  text-decoration: underline;
  line-height: 1.37;
}
.communique-single__content ul,
.communique-single__content ol {
  margin-top: 1.875rem;
  list-style: none;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.communique-single__content ul li,
.communique-single__content ol li {
  position: relative;
  padding-left: 1.5rem;
}
.communique-single__content ul li a,
.communique-single__content ol li a {
  font-size: 16px;
}
.communique-single__content ul li:last-child,
.communique-single__content ol li:last-child {
  margin-bottom: 0;
}
.communique-single__content ul li::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0.4375rem;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #131313;
  border-radius: 200px;
}
.communique-single__content ol li {
  list-style: decimal;
}
.communique-single__content img {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}
.communique-single__content *:first-child {
  margin-top: 0;
}
.communique-single__content img {
  margin: 1.25rem 0 3.5rem;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1rem;
}
.communique-single__back-wrap {
  margin-top: 0.5rem;
}
.communique-single__back-link {
  color: var(--wp--preset--color--txt-black);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
.communique-single__back-link {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .communique-single__back-link {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .communique-single__back-link {
    font-size: 0.875rem;
  }
}
.communique-single__others {
  margin-top: 4rem;
  padding-top: 3.5rem;
  padding-bottom: 4rem;
  background-color: var(--wp--preset--color--bg-tertiary);
}
.communique-single__others-title {
  margin: 0 0 1.5rem;
  color: var(--wp--preset--color--txt-black);
  font-size: 3.5rem;
  font-style: normal;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  line-height: 1.14;
  letter-spacing: -0.07rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .communique-single__others-title {
    font-size: 3rem;
    line-height: 1.15;
    letter-spacing: -0.06rem;
  }
}
@media screen and (max-width: 991px) {
  .communique-single__others-title {
    font-size: 2.5rem;
    line-height: 1.15;
    letter-spacing: -0.05rem;
  }
}
@media screen and (max-width: 580px) {
  .communique-single__others-title {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: -0.04rem;
  }
}
.communique-single__others-inner {
  width: 100%;
}
.communique-single__others-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.communique-single__card {
  min-width: 0;
  height: 100%;
  background-color: var(--wp--preset--color--bg-white);
  box-shadow: rgba(100, 100, 100, 0.16) 0px 0px 3.75rem;
  border-radius: 1rem;
}
.communique-single__card-content {
  flex: 1;
  padding: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
}
.communique-single__card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.communique-single__card-media {
  margin: 0;
}
.communique-single__card-image {
  display: block;
  width: 100%;
  height: 10.625rem;
  border-radius: 1rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  object-fit: cover;
}
.communique-single__card-date {
  font-weight: 500;
  margin-top: 0.25rem;
}
.communique-single__card-date {
  font-size: 12px;
}
@media screen and (min-width: 569px) {
  .communique-single__card-date {
    font-size: calc(12px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .communique-single__card-date {
    font-size: 0.75rem;
  }
}
.communique-single__card-title {
  margin: 0;
  color: var(--wp--preset--color--txt-black);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.025rem;
}
.communique-single__card-title {
  font-size: 20px;
}
@media screen and (min-width: 569px) {
  .communique-single__card-title {
    font-size: calc(20px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .communique-single__card-title {
    font-size: 1.25rem;
  }
}
.communique-single__card-cta {
  color: var(--wp--preset--color--txt-black);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  margin-top: auto;
  padding-top: 1rem;
}
.communique-single__card-cta {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .communique-single__card-cta {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .communique-single__card-cta {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 1024px) {
  .communique-single__others-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .communique-single {
    padding-bottom: 3.5rem;
  }
  .communique-single__hero-layout {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .communique-single__media {
    height: auto;
  }
  .communique-single__image {
    position: static;
    height: auto;
    aspect-ratio: 4/3;
  }
  .communique-single__content {
    margin-top: 0;
  }
  .communique-single__others {
    margin-top: 3rem;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
  }
  .communique-single__others-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .communique-single__card-image {
    height: 11.25rem;
  }
}

.post-card {
  box-shadow: rgba(100, 100, 100, 0.16) 0px 0px 3.75rem;
  border-radius: 1rem;
}
.post-card__metas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
}
.post-card__theme {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.875rem;
  line-height: 1.4;
  font-style: normal;
  font-weight: 500;
  background: color-mix(in srgb, var(--wp--preset--color--bg-secondary) 20%, transparent);
  padding: 0.375rem 0.875rem;
  border-radius: 2.0625rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}
.post-card__date {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.875rem;
  line-height: 1.4;
  font-style: normal;
  font-weight: 500;
  background: color-mix(in srgb, var(--wp--preset--color--bg-secondary) 20%, transparent);
  padding: 0.375rem 0.875rem;
  border-radius: 2.0625rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: transparent;
  border: 0.0625rem solid color-mix(in srgb, var(--wp--preset--color--txt-black) 22%, transparent);
}
.post-card__title {
  margin: 0;
  color: var(--wp--preset--color--txt-black);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.03rem;
}
.post-card__title {
  font-size: 24px;
}
@media screen and (min-width: 569px) {
  .post-card__title {
    font-size: calc(24px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .post-card__title {
    font-size: 1.5rem;
  }
}
.post-card__cta {
  color: var(--wp--preset--color--txt-black);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
.post-card__cta {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .post-card__cta {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .post-card__cta {
    font-size: 0.875rem;
  }
}
.post-card__media {
  margin: 0;
}
.post-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 0.75rem;
  object-fit: cover;
}
.post-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.post-card__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
.post-card--featured {
  margin-bottom: 3rem;
  border-bottom: 1px solid color-mix(in srgb, var(--wp--preset--color--txt-black) 22%, transparent);
  padding-bottom: 3.75rem;
}
.post-card--featured .post-card__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5rem;
  align-items: center;
}
.post-card--featured .post-card__media-link {
  display: block;
  text-decoration: none;
}
.post-card--featured .post-card__image {
  aspect-ratio: 660/397;
  border-radius: 1.25rem;
}
.post-card--featured .post-card__content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.post-card--featured .post-card__title a {
  color: inherit;
  text-decoration: none;
}
.post-card--featured .post-card__title a:hover {
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
.post-card--featured .post-card__excerpt {
  margin: 0;
  font-weight: 500;
  line-height: 1.4;
  color: var(--wp--preset--color--txt-black);
}
.post-card--featured .post-card__excerpt {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .post-card--featured .post-card__excerpt {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .post-card--featured .post-card__excerpt {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 1024px) {
  .post-card--featured .post-card__layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .post-card--featured .post-card__image {
    aspect-ratio: 16/10;
  }
}

.post-single {
  border-bottom: 1px solid color-mix(in srgb, var(--wp--preset--color--txt-black) 22%, transparent);
}
.post-single__container {
  padding-bottom: 3.75rem;
  border-bottom: 1px solid #C8C8C8;
}
.post-single__hero {
  border-top: 0;
  padding: 1.25rem 0 0;
}
.post-single__breadcrumb {
  margin-bottom: 2.5rem;
}
.post-single__hero-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5rem;
  align-items: center;
}
.post-single__hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.post-single__title {
  margin: 0;
  color: var(--wp--preset--color--txt-black);
  font-weight: 500;
  line-height: 3.5rem;
  letter-spacing: -0.06rem;
}
.post-single__title {
  font-size: 48px;
}
@media screen and (min-width: 569px) {
  .post-single__title {
    font-size: calc(48px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .post-single__title {
    font-size: 3rem;
  }
}
.post-single__metas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
}
.post-single__theme {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.875rem;
  line-height: 1.4;
  font-style: normal;
  font-weight: 500;
  background: color-mix(in srgb, var(--wp--preset--color--bg-secondary) 20%, transparent);
  padding: 0.375rem 0.875rem;
  border-radius: 2.0625rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  width: fit-content;
}
.post-single__date {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.875rem;
  line-height: 1.4;
  font-style: normal;
  font-weight: 500;
  background: color-mix(in srgb, var(--wp--preset--color--bg-secondary) 20%, transparent);
  padding: 0.375rem 0.875rem;
  border-radius: 2.0625rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  background: transparent;
  border: 0.0625rem solid color-mix(in srgb, var(--wp--preset--color--txt-black) 22%, transparent);
}
.post-single__media {
  margin: 0;
}
.post-single__image {
  display: block;
  width: 100%;
  aspect-ratio: 620/361;
  border-radius: 0.75rem;
  object-fit: cover;
}
.post-single__back-wrap {
  max-width: 53.125rem;
  margin-left: auto;
  margin-right: 0;
  margin-top: 2.5rem;
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid #C8C8C8;
}
.post-single__back-link {
  color: var(--wp--preset--color--txt-black);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
.post-single__back-link {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .post-single__back-link {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .post-single__back-link {
    font-size: 0.875rem;
  }
}
.post-single__related {
  background: var(--wp--preset--color--bg-tertiary);
  padding: 6.25rem 3.75rem;
}
.post-single__related-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
.post-single__related-title {
  margin: 0;
  text-align: center;
  color: var(--wp--preset--color--txt-black);
  font-weight: 500;
  line-height: 4rem;
  letter-spacing: -0.07rem;
  width: 100%;
}
.post-single__related-title {
  font-size: 56px;
}
@media screen and (min-width: 569px) {
  .post-single__related-title {
    font-size: calc(56px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .post-single__related-title {
    font-size: 3.5rem;
  }
}
.post-single__related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.875rem 1.25rem;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .post-single__hero {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .post-single__hero-layout {
    gap: 2rem;
  }
  .post-single__related {
    padding: 5rem 1.5rem;
  }
  .post-single__related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  .post-single__hero-layout {
    grid-template-columns: 1fr;
  }
  .post-single__title {
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.045rem;
  }
  .post-single__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) and (min-width: 569px) {
  .post-single__title {
    font-size: calc(28px + 8 * (100vw - 569px) / 871);
  }
}
@media screen and (max-width: 767px) and (min-width: 1440px) {
  .post-single__title {
    font-size: 2.25rem;
  }
}
@media screen and (max-width: 767px) {
  .post-single__back-wrap {
    max-width: none;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .post-single__related-grid {
    grid-template-columns: 1fr;
  }
}

.post-single-content {
  padding: 3.75rem 0 0rem;
}
.post-single-content .post-single__container {
  display: flex;
  gap: 5.625rem;
  border-bottom: none;
  align-items: flex-start;
}
.post-single-content .single-post-menu {
  position: sticky;
  top: 6.25rem;
  flex: 0 0 21.125rem;
  max-width: 21.125rem;
  padding: 1.5rem;
  background: var(--wp--preset--color--bg-tertiary);
  border-radius: 0.5rem;
  z-index: 2;
}
.post-single-content .single-post-menu__title {
  margin: 0 0 1.5rem;
  color: var(--wp--preset--color--txt-black);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.875rem;
  line-height: 1.4;
  font-weight: 400;
  text-transform: uppercase;
}
.post-single-content .single-post-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.post-single-content .single-post-menu__link {
  display: block;
  color: var(--wp--preset--color--txt-black);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.4;
}
.post-single-content .single-post-menu__link {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .post-single-content .single-post-menu__link {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .post-single-content .single-post-menu__link {
    font-size: 0.875rem;
  }
}
.post-single-content .single-post-menu__link--h3 {
  padding-left: 1rem;
  font-weight: 500;
  line-height: 1.3;
}
.post-single-content .single-post-menu__link--h3 {
  font-size: 12px;
}
@media screen and (min-width: 569px) {
  .post-single-content .single-post-menu__link--h3 {
    font-size: calc(12px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .post-single-content .single-post-menu__link--h3 {
    font-size: 0.75rem;
  }
}
.post-single-content .single-post-menu__link:hover {
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
.post-single-content .entry-content {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 53.125rem;
}
.post-single-content .entry-content.textFormat h2,
.post-single-content .entry-content.textFormat h3 {
  scroll-margin-top: 7.5rem;
}
.post-single-content .entry-content.textFormat h2 {
  margin: 3.75rem 0 0;
  color: var(--wp--preset--color--txt-black);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.045rem;
  text-transform: none;
  font-family: "Inter", sans-serif;
}
.post-single-content .entry-content.textFormat h2 {
  font-size: 28px;
}
@media screen and (min-width: 569px) {
  .post-single-content .entry-content.textFormat h2 {
    font-size: calc(28px + 8 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .post-single-content .entry-content.textFormat h2 {
    font-size: 2.25rem;
  }
}
.post-single-content .entry-content.textFormat h2:first-child {
  margin-top: 0;
}
.post-single-content .entry-content.textFormat h2 mark {
  color: inherit;
  font-weight: 500;
  line-height: 1.2;
}
.post-single-content .entry-content.textFormat h2 mark {
  font-size: 28px;
}
@media screen and (min-width: 569px) {
  .post-single-content .entry-content.textFormat h2 mark {
    font-size: calc(28px + 8 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .post-single-content .entry-content.textFormat h2 mark {
    font-size: 2.25rem;
  }
}
.post-single-content .entry-content.textFormat h3 {
  margin: 1rem 0 0;
  color: var(--wp--preset--color--txt-black);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.03rem;
  text-transform: none;
  font-family: "Inter", sans-serif;
}
.post-single-content .entry-content.textFormat h3 {
  font-size: 24px;
}
@media screen and (min-width: 569px) {
  .post-single-content .entry-content.textFormat h3 {
    font-size: calc(24px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .post-single-content .entry-content.textFormat h3 {
    font-size: 1.5rem;
  }
}
.post-single-content .entry-content.textFormat h3 mark {
  color: inherit;
  font-weight: 500;
  line-height: 1.3;
}
.post-single-content .entry-content.textFormat h3 mark {
  font-size: 24px;
}
@media screen and (min-width: 569px) {
  .post-single-content .entry-content.textFormat h3 mark {
    font-size: calc(24px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .post-single-content .entry-content.textFormat h3 mark {
    font-size: 1.5rem;
  }
}
.post-single-content .entry-content.textFormat p,
.post-single-content .entry-content.textFormat li {
  margin-top: 1rem;
  color: var(--wp--preset--color--txt-black) !important;
  font-weight: 500;
  line-height: 1.4;
}
.post-single-content .entry-content.textFormat p,
.post-single-content .entry-content.textFormat li {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .post-single-content .entry-content.textFormat p,
  .post-single-content .entry-content.textFormat li {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .post-single-content .entry-content.textFormat p,
  .post-single-content .entry-content.textFormat li {
    font-size: 0.875rem;
  }
}
.post-single-content .entry-content.textFormat .wp-block-image img,
.post-single-content .entry-content.textFormat img {
  border-radius: 0.75rem;
}
.post-single-content .entry-content.textFormat .wp-block-quote {
  margin: 3.75rem 0 0;
  padding: 0 0 0 1.5rem;
  border-radius: 0;
  background: transparent;
  border-left: 3px solid var(--wp--preset--color--bg-primary);
}
.post-single-content .entry-content.textFormat .wp-block-quote blockquote {
  margin: 0;
  padding: 0;
}
.post-single-content .entry-content.textFormat .wp-block-quote p,
.post-single-content .entry-content.textFormat .wp-block-quote a {
  margin-top: 0;
  color: var(--wp--preset--color--txt-black) !important;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.0225rem;
}
.post-single-content .entry-content.textFormat .wp-block-quote p,
.post-single-content .entry-content.textFormat .wp-block-quote a {
  font-size: 18px;
}
@media screen and (min-width: 569px) {
  .post-single-content .entry-content.textFormat .wp-block-quote p,
  .post-single-content .entry-content.textFormat .wp-block-quote a {
    font-size: calc(18px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .post-single-content .entry-content.textFormat .wp-block-quote p,
  .post-single-content .entry-content.textFormat .wp-block-quote a {
    font-size: 1.125rem;
  }
}
.post-single-content .entry-content.textFormat .wp-block-button__link {
  border-radius: 1.875rem;
  background: var(--wp--preset--color--bg-primary);
  color: var(--wp--preset--color--txt-white) !important;
  padding: 0.875rem 1.5rem;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
}
.post-single-content .entry-content.textFormat .wp-block-button__link {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .post-single-content .entry-content.textFormat .wp-block-button__link {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .post-single-content .entry-content.textFormat .wp-block-button__link {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 1024px) {
  .post-single-content {
    gap: 3rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .post-single-content .single-post-menu {
    flex-basis: 17.5rem;
    max-width: 17.5rem;
  }
}
@media screen and (max-width: 991px) {
  .post-single-content {
    flex-direction: column;
    gap: 2rem;
    padding-top: 2rem;
  }
  .post-single-content .single-post-menu {
    display: none;
  }
  .post-single-content .entry-content {
    max-width: none;
  }
}

.topbar-on .post-single-content .single-post-menu {
  top: 8.75rem;
}

.frm-fluent-form .ff-el-group.ff-dropzone .ff-el-input--content {
  width: 100%;
}
.frm-fluent-form .ff-el-group.ff-dropzone .ff_file_upload_holder {
  display: block;
  width: 100%;
  margin: 0;
  padding-left: 1.5625rem;
}
.frm-fluent-form .ff-el-group.ff-dropzone .ff_upload_btn.ff-btn {
  display: inline;
  width: auto;
  min-height: 0;
  padding: 0;
  margin: 0;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: color-mix(in srgb, var(--wp--preset--color--txt-black) 60%, transparent);
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-style: italic;
  line-height: 1.5;
  letter-spacing: normal;
  text-transform: none;
  text-align: left;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
  cursor: pointer;
  transition: color 0.2s ease;
}
.frm-fluent-form .ff-el-group.ff-dropzone .ff_upload_btn.ff-btn {
  font-size: 14px;
}
@media screen and (min-width: 569px) {
  .frm-fluent-form .ff-el-group.ff-dropzone .ff_upload_btn.ff-btn {
    font-size: calc(14px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .frm-fluent-form .ff-el-group.ff-dropzone .ff_upload_btn.ff-btn {
    font-size: 0.875rem;
  }
}
.frm-fluent-form .ff-el-group.ff-dropzone .ff_upload_btn.ff-btn:hover, .frm-fluent-form .ff-el-group.ff-dropzone .ff_upload_btn.ff-btn:focus-visible {
  color: var(--wp--preset--color--txt-black);
  background: transparent !important;
}
.frm-fluent-form .ff-el-group.ff-dropzone .ff-uploaded-list {
  margin-top: 0.5rem;
  padding-left: 1.5625rem;
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--wp--preset--color--txt-black);
}
.frm-fluent-form .ff-el-group.ff-dropzone .ff-uploaded-list:empty {
  display: none;
  margin: 0;
}

@media screen and (min-width: 1024px) {
  .l-container-md {
    max-width: calc(71.25rem + 1.875rem * 2);
  }
}
@media screen and (min-width: 1920px) {
  .l-container-md {
    max-width: calc(71.25rem + 1.875rem * 2);
  }
}

@media screen and (min-width: 1024px) {
  .l-container-lg {
    max-width: calc(75rem + 1.875rem * 2);
  }
}
@media screen and (min-width: 1920px) {
  .l-container-lg {
    max-width: calc(75rem + 1.875rem * 2);
  }
}
@media screen and (min-width: 2160px) {
  .l-container-lg {
    max-width: calc(90rem + 1.875rem * 2);
  }
}

.has-bg-secondary-background-color {
  background-color: color-mix(in srgb, var(--wp--preset--color--bg-secondary) 20%, transparent) !important;
}

.has-bg-primary-background-color {
  background-color: color-mix(in srgb, var(--wp--preset--color--bg-primary) 20%, transparent) !important;
}

@media screen and (max-width: 1024px) {
  .h2 {
    font-size: 2.625rem;
    line-height: 1.15;
  }
}
@media screen and (max-width: 991px) {
  .h2 {
    font-size: 2.25rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 580px) {
  .h2 {
    font-size: 1.75rem;
    line-height: 1.25;
  }
}