/* Block: cms-hero (hero) - Order: 1 */
.cms-hero-section {
  --color-bg: var(--color-background, #f7f8fa);
  --color-shape: var(--color-primary-light, #e5f0fa);
  --color-title: var(--color-title, #212529);
  --color-desc: var(--color-text, #48505b);
  --color-focus: var(--color-accent, #2368a2);
  --shadow-main: 0 4px 24px rgba(20,32,55,0.08);
  --shadow-img: 0 2px 8px rgba(30,48,87,0.11);
  --br-main: 1.25rem;
  --br-img: 0.75rem;
  --font-title: var(--font-title, 'Poppins', 'Helvetica Neue', Arial, sans-serif);
  --font-body: var(--font-body, 'Inter', 'Segoe UI', Arial, sans-serif);
  --fs-title-d: var(--font-size-hero, 2.7rem);
  --fs-title-t: 2.2rem;
  --fs-title-m: 1.55rem;
  --fs-desc-d: 1.25rem;
  --fs-desc-m: 1.05rem;
  --lh-title: 1.17;
  --lh-desc: 1.6;
  --space-v-main: 5.5rem;
  --space-v-t: 3.5rem;
  --space-v-m: 2.3rem;
  background: var(--color-bg);
  min-width: 100vw;
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: flex-start;
}

.cms-hero-background-shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 340px;
  z-index: 1;
  pointer-events: none;
  display: block;
}

.cms-hero-background-shape svg {
  width: 100%;
  height: 100%;
  display: block;
}

.cms-hero-background-shape ellipse {
  fill: var(--color-shape);
  transition: fill 0.4s cubic-bezier(0.4,0,0.2,1);
}

.cms-hero-container {
  position: relative;
  max-width: 1060px;
  margin-right: auto;
  margin-left: auto;
  padding: var(--space-v-main) 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  gap: 2.8rem;
}

.cms-hero-header {
  text-align: center;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0.6rem;
}

.cms-hero-title {
  font-family: var(--font-title);
  color: var(--color-title);
  font-size: var(--fs-title-d);
  font-weight: 700;
  line-height: var(--lh-title);
  letter-spacing: -0.8px;
  margin-bottom: 0.45em;
  transition: color 0.22s cubic-bezier(0.4,0,0.2,1);
}

.cms-hero-description {
  font-family: var(--font-body);
  color: var(--color-desc);
  font-size: var(--fs-desc-d);
  line-height: var(--lh-desc);
  font-weight: 400;
  margin: 0 auto 0.25em;
  max-width: 38em;
  transition: color 0.22s cubic-bezier(0.4,0,0.2,1);
}

.cms-hero-figure {
  margin: 0;
  position: relative;
  width: 100%;
  max-width: 960px;
  border-radius: var(--br-img);
  overflow: hidden;
  box-shadow: var(--shadow-img);
  background: #fff;
  transition: box-shadow 0.32s cubic-bezier(0.4,0,0.2,1), transform 0.32s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  outline: none;
}

.cms-hero-figure:focus-visible {
  box-shadow: 0 0 0 4px var(--color-focus), var(--shadow-img);
}

.cms-hero-figure:hover,
.cms-hero-figure:focus-visible {
  transform: scale(1.018) translateY(-2px);
  box-shadow: 0 4px 32px rgba(45,90,170,0.16), 0 2px 8px rgba(26,38,83,0.12);
}

.cms-hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 12/5;
  object-fit: cover;
  border-radius: var(--br-img);
  background: linear-gradient(180deg, #f6f7fa 0%, #eaf0f6 100%);
  transition: filter 0.44s cubic-bezier(0.4,0,0.2,1), opacity 0.44s cubic-bezier(0.4,0,0.2,1);
  filter: brightness(97%) contrast(104%) drop-shadow(0 0px 10px rgba(123,152,196,0.04));
  opacity: 0.97;
}

.cms-hero-figure:hover img,
.cms-hero-figure:focus-visible img {
  filter: brightness(101%) contrast(107%);
  opacity: 1;
}

@media (max-width: 1024px) {
  .cms-hero-container {
    padding: var(--space-v-t) 1.4rem;
    gap: 2.3rem;
    max-width: 94vw;
  }
  .cms-hero-title {
    font-size: var(--fs-title-t);
  }
  .cms-hero-description {
    font-size: 1.12rem;
  }
  .cms-hero-figure {
    max-width: 770px;
  }
  .cms-hero-background-shape {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .cms-hero-section {
    min-width: 0;
  }
  .cms-hero-background-shape {
    height: 120px;
  }
  .cms-hero-container {
    padding: var(--space-v-m) 0.7rem 1.5rem 0.7rem;
    gap: 1.5rem;
    max-width: 100vw;
  }
  .cms-hero-header {
    padding-bottom: 0.25rem;
    max-width: 99vw;
  }
  .cms-hero-title {
    font-size: var(--fs-title-m);
    line-height: 1.19;
    text-align: left;
    margin-bottom: 0.32em;
  }
  .cms-hero-description {
    font-size: var(--fs-desc-m);
    text-align: left;
  }
  .cms-hero-figure {
    max-width: 99vw;
    border-radius: 0.55rem;
  }
  .cms-hero-figure img {
    border-radius: 0.55rem;
  }
}

@media (min-width: 1600px) {
  .cms-hero-container {
    max-width: 1300px;
    gap: 3.7rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .cms-hero-figure {
    max-width: 1200px;
  }
  .cms-hero-background-shape {
    height: 400px;
  }
}

.cms-hero-title:focus-visible,
.cms-hero-description:focus-visible {
  outline: 2.5px solid var(--color-focus);
  outline-offset: 2px;
  border-radius: var(--br-main);
}

.cms-hero-title,
.cms-hero-description {
  background: transparent;
}

.cms-hero-header {
  user-select: text;
}

.cms-hero-section:focus-within {
  box-shadow: 0 0 0 4px var(--color-focus);
}

/* Block: cms-content (content) - Order: 2 */
.cms-content-section {
  width: 100vw;
  background: var(--color-bg, #fafbfc);
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 0;
}
.cms-content-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.cms-content-main {
  font-family: var(--font-family-body, 'Inter', Arial, sans-serif);
  font-size: var(--font-size-md, 1.125rem);
  color: var(--color-text, #222c35);
  background: none;
  line-height: 1.7;
  letter-spacing: 0;
  margin: 0;
  padding: 0;
  word-break: break-word;
}
.cms-content-main h1,
.cms-content-main h2,
.cms-content-main h3,
.cms-content-main h4,
.cms-content-main h5,
.cms-content-main h6 {
  font-family: var(--font-family-heading, 'Inter', Arial, sans-serif);
  margin-top: 2.3em;
  margin-bottom: 0.7em;
  line-height: 1.18;
  color: var(--color-primary, #2254F6);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.cms-content-main h1 { font-size: var(--font-size-xl, 2.5rem);}
.cms-content-main h2 { font-size: var(--font-size-lg, 1.875rem);}
.cms-content-main h3 { font-size: var(--font-size-md, 1.25rem);}
.cms-content-main h4,
.cms-content-main h5,
.cms-content-main h6 { font-size: var(--font-size-sm, 1.06rem);}
.cms-content-main h1:first-child,
.cms-content-main h2:first-child { margin-top: 0; }
.cms-content-main p {
  margin: 1.5em 0;
  font-size: inherit;
  color: inherit;
}
.cms-content-main ul,
.cms-content-main ol {
  margin: 1.5em 0 1.5em 2em;
  padding: 0;
}
.cms-content-main a {
  color: var(--color-link, #2254F6);
  text-decoration: underline;
  text-underline-offset: 0.18em;
  transition: color 0.18s;
}
.cms-content-main a:hover,
.cms-content-main a:focus {
  color: var(--color-link-hover, #113399);
  outline: none;
}
.cms-content-main img {
  max-width: 100%;
  border-radius: 14px;
  display: block;
  margin: 2.2em auto;
  box-shadow: 0 2px 11px 0 rgba(26,41,64,0.08);
  transition: box-shadow 0.28s cubic-bezier(0.36,0.4,0.31,1), filter 0.28s;
}
.cms-content-main img:hover,
.cms-content-main img:focus {
  box-shadow: 0 4px 20px 0 rgba(34,84,246,0.12);
  filter: brightness(1.04);
}
.cms-content-card {
  background: var(--color-surface, #fff);
  border-radius: 20px;
  box-shadow: 0 3px 18px 0 rgba(26,41,64,0.08);
  padding: 36px 30px 32px 30px;
  transition: box-shadow 0.22s cubic-bezier(.42,.01,.42,.98), transform 0.18s cubic-bezier(.2,.7,.3,1);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}
.cms-content-card:focus-within,
.cms-content-card:hover {
  box-shadow: 0 7px 28px 0 rgba(34,84,246,0.15), 0 3px 18px 0 rgba(26,41,64,0.04);
  transform: translateY(-2px) scale(1.015);
}
.cms-content-secondary,
.cms-content-tertiary {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.cms-content-secondary-body,
.cms-content-tertiary-body {
  font-family: var(--font-family-body, 'Inter', Arial, sans-serif);
  font-size: var(--font-size-md, 1.08rem);
  color: var(--color-text-secondary, #253045);
  line-height: 1.6;
  margin: 0;
  word-break: break-word;
}
.cms-content-secondary-body h3,
.cms-content-tertiary-body h3,
.cms-content-secondary-body h2,
.cms-content-tertiary-body h2 {
  margin-top: 0;
  margin-bottom: 0.7em;
  color: var(--color-primary, #2254F6);
}
.cms-content-secondary-body ul,
.cms-content-tertiary-body ul,
.cms-content-secondary-body ol,
.cms-content-tertiary-body ol {
  margin-left: 1.8em;
  margin-bottom: 1.3em;
}
.cms-content-secondary-body a,
.cms-content-tertiary-body a {
  color: var(--color-link, #2254F6);
  transition: color 0.18s;
  text-underline-offset: 0.17em;
}
.cms-content-secondary-body a:hover,
.cms-content-tertiary-body a:hover,
.cms-content-secondary-body a:focus,
.cms-content-tertiary-body a:focus {
  color: var(--color-link-hover, #113399);
  outline: none;
}
.cms-content-deco-shape {
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none;
  width: 42vw;
  height: 26vw;
  min-width: 280px;
  min-height: 180px;
  z-index: 0;
}
@media (max-width: 767px) {
  .cms-content-container {
    max-width: 100vw;
    padding: 24px 0 46px 0;
    gap: 28px;
  }
  .cms-content-main {
    font-size: var(--font-size-base, 1rem);
    padding: 0 18px;
  }
  .cms-content-main img {
    margin: 1.5em auto;
    border-radius: 11px;
  }
  .cms-content-card {
    padding: 22px 12px 20px 12px;
    border-radius: 14px;
  }
  .cms-content-secondary-body,
  .cms-content-tertiary-body {
    font-size: var(--font-size-base, 1rem);
    padding: 0;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .cms-content-container {
    max-width: 96vw;
    padding: 32px 10px 50px 10px;
    gap: 35px;
  }
  .cms-content-main {
    font-size: var(--font-size-md, 1.08rem);
    padding: 0 16px;
  }
  .cms-content-card {
    padding: 26px 18px 26px 18px;
    border-radius: 16px;
  }
  .cms-content-secondary-body,
  .cms-content-tertiary-body {
    font-size: var(--font-size-md, 1.04rem);
    padding: 0;
  }
}
@media (min-width: 1280px) {
  .cms-content-container {
    max-width: 900px;
    padding: 76px 0 90px 0;
    gap: 46px;
  }
  .cms-content-main {
    font-size: var(--font-size-lg, 1.29rem);
    padding: 0 24px;
  }
  .cms-content-main img {
    border-radius: 18px;
    margin: 2.5em auto;
  }
  .cms-content-card {
    padding: 54px 46px 40px 46px;
    border-radius: 28px;
  }
  .cms-content-secondary-body,
  .cms-content-tertiary-body {
    font-size: var(--font-size-lg, 1.18rem);
  }
}
@media (min-width: 1800px) {
  .cms-content-container {
    max-width: 1160px;
    padding-left: 0;
    padding-right: 0;
  }
}

/* Block: hero-homepage (hero) - Order: 3 */
.hero-homepage-section {
  position: relative;
  width: 100vw;
  min-height: 66vh;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
  background: var(--color-bg-hero, #fafbfc);
  overflow: hidden;
}

.hero-homepage-bg-shape {
  position: absolute;
  inset: 0;
  width: 100vw;
  height: 500px;
  pointer-events: none;
  z-index: 0;
  filter: drop-shadow(0 18px 40px rgba(60, 60, 60, 0.13));
}
.hero-homepage-bg-vector rect {
  fill: var(--color-primary-light, #e7f1fb);
}
@media (max-width: 767px) {
  .hero-homepage-bg-shape {
    height: 320px;
  }
}
@media (min-width: 1400px) {
  .hero-homepage-bg-shape {
    height: 650px;
  }
}

.hero-homepage-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 48px 24px 40px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .hero-homepage-container {
    padding: 32px 10vw 24px 10vw;
  }
}
@media (min-width: 1400px) {
  .hero-homepage-container {
    max-width: 1200px;
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.hero-homepage-header {
  text-align: center;
  margin-bottom: 24px;
  width: 100%;
}
.hero-homepage-title {
  font-family: var(--font-title, 'Inter', 'Segoe UI', Arial, sans-serif);
  font-weight: 800;
  font-size: 2.75rem;
  line-height: 1.1;
  color: var(--color-primary, #1559b3);
  letter-spacing: -0.03em;
  margin: 0 0 8px 0;
}
@media (max-width: 767px) {
  .hero-homepage-title {
    font-size: 2rem;
  }
}
@media (min-width: 1400px) {
  .hero-homepage-title {
    font-size: 3.3rem;
  }
}

.hero-homepage-slogan {
  font-family: var(--font-sans, 'Inter', 'Segoe UI', Arial, sans-serif);
  font-size: 1.15rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--color-secondary, #205c88);
  margin: 0 auto;
  opacity: 0.92;
  max-width: 80%;
}
@media (max-width: 767px) {
  .hero-homepage-slogan {
    font-size: 1rem;
    max-width: 100%;
  }
}
@media (min-width: 1300px) {
  .hero-homepage-slogan {
    font-size: 1.22rem;
    max-width: 70%;
  }
}

.hero-homepage-intro {
  width: 100%;
  margin: 0;
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}
.hero-homepage-description {
  font-family: var(--font-sans, 'Inter', 'Segoe UI', Arial, sans-serif);
  font-size: 1.18rem;
  color: var(--color-text, #17233d);
  line-height: 1.7;
  max-width: 540px;
  text-align: center;
  margin: 0;
  font-weight: 400;
  opacity: 0.96;
}
@media (max-width: 767px) {
  .hero-homepage-intro {
    margin-bottom: 20px;
  }
  .hero-homepage-description {
    font-size: 1rem;
    max-width: 100%;
  }
}
@media (min-width: 1400px) {
  .hero-homepage-description {
    font-size: 1.22rem;
    max-width: 700px;
  }
}

.hero-homepage-actions {
  width: 100%;
  margin: 0;
  text-align: center;
  display: flex;
  justify-content: center;
}
.hero-homepage-actions-list {
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 600px) {
  .hero-homepage-actions-list {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }
}
@media (min-width: 1300px) {
  .hero-homepage-actions-list {
    gap: 30px;
  }
}

.hero-homepage-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 28px;
  height: 54px;
  font-family: var(--font-sans, 'Inter', 'Segoe UI', Arial, sans-serif);
  font-size: 1.09rem;
  font-weight: 600;
  border-radius: 18px;
  background: var(--color-surface, #fff);
  color: var(--color-primary, #1559b3);
  box-shadow: 0 3px 18px 0 rgba(22,46,86,0.09);
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.23s, color 0.18s, transform 0.16s;
  outline: none;
  cursor: pointer;
  position: relative;
  min-width: 130px;
  justify-content: center;
}
.hero-homepage-action:focus-visible {
  box-shadow: 0 0 0 4px var(--color-primary-light, #c6e1ff), 0 3px 14px 0 rgba(22,46,86,0.07);
  background: var(--color-primary-light, #e7f1fb);
  color: var(--color-text, #17233d);
}
.hero-homepage-action:hover,
.hero-homepage-action:active {
  background: var(--color-primary, #1559b3);
  color: var(--color-inverse, #fff);
  box-shadow: 0 6px 24px 0 rgba(22,46,86,0.16);
  transform: translateY(-2px) scale(1.028);
}
.hero-homepage-action .hero-homepage-action-text {
  z-index: 1;
  position: relative;
  white-space: nowrap;
}
.hero-homepage-action .hero-homepage-action-icon {
  display: inline-block;
  vertical-align: middle;
  transition: color 0.2s;
  fill: currentColor;
  stroke: currentColor;
}
.hero-homepage-action--home .hero-homepage-action-icon {
  color: var(--color-primary, #1559b3);
}
.hero-homepage-action--search .hero-homepage-action-icon {
  color: var(--color-secondary, #205c88);
}
.hero-homepage-action--newsletter .hero-homepage-action-icon {
  color: var(--color-accent, #ebbf35);
}
.hero-homepage-action:hover .hero-homepage-action-icon,
.hero-homepage-action:active .hero-homepage-action-icon {
  color: var(--color-inverse, #fff);
}
@media (max-width: 767px) {
  .hero-homepage-action {
    min-width: 98px;
    padding: 0 16px;
    height: 44px;
    font-size: 1rem;
    border-radius: 14px;
  }
}
@media (min-width: 1400px) {
  .hero-homepage-action {
    font-size: 1.15rem;
    height: 60px;
    min-width: 160px;
    border-radius: 22px;
    padding: 0 36px;
  }
}

/* Block: bloc-texte-hp (custom) - Order: 4 */
.bloc-texte-hp-section {
  padding: 0;
  background: var(--color-background, #f9fafb);
}
.bloc-texte-hp-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  gap: 2.5rem;
  padding: 4.5rem 2rem;
  background: var(--color-surface, #fff);
  border-radius: 1.25rem;
  box-shadow: 0 6px 32px 0 rgba(31,37,71,0.09),0 1.5px 4px 0 rgba(60, 60, 100, 0.07);
  position: relative;
  z-index: 1;
  align-items: stretch;
}
.bloc-texte-hp-content {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
.bloc-texte-hp-header {
  margin-bottom: 2rem;
}
.bloc-texte-hp-title {
  font-family: var(--font-title, 'Montserrat', sans-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-primary-text, #1f2547);
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.bloc-texte-hp-type {
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-accent, #5664d2);
  margin: 0 0 0.5rem 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: .85;
}
.bloc-texte-hp-article {
  font-family: var(--font-base, 'Montserrat', sans-serif);
  font-size: 1.14rem;
  line-height: 1.75;
  color: var(--color-body-text, #293056);
  margin-bottom: 2.2rem;
  font-weight: 400;
}
.bloc-texte-hp-article p {
  margin: 0;
}
.bloc-texte-hp-nav {
  margin-top: auto;
}
.bloc-texte-hp-nav-list {
  display: flex;
  flex-flow: row wrap;
  gap: 1.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.bloc-texte-hp-link {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 1.13rem;
  color: var(--color-primary-text, #1f2547);
  background: var(--color-action, #f4f6fd);
  border-radius: 0.8em;
  padding: 0.65em 1.3em;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(86,100,210,0.08);
  min-width: 0;
  min-height: 2.4em;
  transition: background 0.15s cubic-bezier(.4,0,.2,1), color 0.15s, box-shadow 0.18s cubic-bezier(.55,.085,.68,.53);
  position: relative;
  font-weight: 500;
  outline: none;
}
.bloc-texte-hp-link:focus-visible {
  box-shadow: 0 0 0 3px var(--color-focus, #899ffa44);
  background: var(--color-action-focused, #e1e5fa);
  color: var(--color-accent, #5664d2);
  z-index: 3;
}
.bloc-texte-hp-link:hover,
.bloc-texte-hp-link:active {
  background: var(--color-action-hover, #eaf0ff);
  color: var(--color-accent, #5664d2);
}
.bloc-texte-hp-link:active {
  box-shadow: 0 2px 10px rgba(86,100,210,0.13);
}
.bloc-texte-hp-icon {
  display: flex;
  align-items: center;
  color: var(--color-accent, #5664d2);
  font-size: 1.3em;
  line-height: 1;
  transition: color 0.15s cubic-bezier(.4,0,.2,1);
}
.bloc-texte-hp-link:hover .bloc-texte-hp-icon,
.bloc-texte-hp-link:focus-visible .bloc-texte-hp-icon {
  color: var(--color-primary-text, #1f2547);
}
.bloc-texte-hp-graphic {
  flex: 0 0 auto;
  align-self: flex-end;
  position: relative;
  min-width: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.bloc-texte-hp-bgshape {
  display: block;
  width: 180px;
  height: 98px;
  max-width: 220px;
  max-height: 120px;
  background: none;
  filter: drop-shadow(0 8px 22px rgba(86,100,210,0.06));
}
.bloc-texte-hp-bgshape ellipse {
  fill: var(--color-accent-verylight, #f1f3fd);
  stroke: var(--color-accent, #5664d2);
  stroke-width: 2;
  opacity: 0.88;
}

@media (max-width: 1024px) {
  .bloc-texte-hp-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
    padding: 3rem 1.5rem;
    max-width: 96vw;
  }
  .bloc-texte-hp-graphic {
    align-items: flex-end;
    justify-content: flex-end;
    min-height: 70px;
    min-width: 120px;
    margin-top: 1rem;
  }
  .bloc-texte-hp-bgshape {
    width: 130px;
    height: 60px;
    max-width: 140px;
    max-height: 70px;
  }
}
@media (max-width: 767px) {
  .bloc-texte-hp-wrapper {
    flex-direction: column;
    padding: 2.1rem 0.6rem;
    max-width: 99vw;
    border-radius: 1.1rem;
    gap: 1.25rem;
    box-shadow: 0 3px 17px rgba(31,37,71,0.09);
  }
  .bloc-texte-hp-title {
    font-size: 1.4rem;
  }
  .bloc-texte-hp-header {
    margin-bottom: 1.25rem;
  }
  .bloc-texte-hp-article {
    font-size: 1rem;
    margin-bottom: 1.4rem;
  }
  .bloc-texte-hp-nav-list {
    gap: 0.5rem;
  }
  .bloc-texte-hp-link {
    font-size: 0.98rem;
    padding: 0.53em 1em;
  }
  .bloc-texte-hp-graphic {
    min-width: 80px;
    min-height: 45px;
    margin-top: 0.3rem;
  }
  .bloc-texte-hp-bgshape {
    width: 80px;
    height: 40px;
    max-width: 95px;
    max-height: 45px;
  }
}
@media (min-width: 1400px) {
  .bloc-texte-hp-wrapper {
    max-width: 1100px;
    padding: 6rem 3.5rem;
  }
  .bloc-texte-hp-bgshape {
    width: 249px;
    height: 120px;
    max-width: 290px;
    max-height: 135px;
  }
}
@media (min-width: 1800px) {
  .bloc-texte-hp-wrapper {
    max-width: 1400px;
    padding: 7.5rem 5vw 7.5rem 5vw;
  }
  .bloc-texte-hp-title {
    font-size: 3rem;
  }
  .bloc-texte-hp-bgshape {
    width: 330px;
    height: 162px;
    max-width: 400px;
    max-height: 184px;
  }
}
