:root {
  --color-blue: #2972a7;
  --color-blue-dark: #1d2f4c;
  --color-blue-mid: #24476b;
  --color-blue-soft: #e1f6ff;
  --color-text: #484848;
  --color-text-strong: #153e5c;
  --color-text-light: #a3a3a3;
  --color-bg: #f1f4f7;
  --color-white: #ffffff;
  --color-border: #edf6ff;
  --color-border-strong: #dce8f2;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --container: 1312px;
  --container-narrow: 860px;
  --shadow-soft: 0 12px 32px rgba(29, 47, 76, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

.wp-site-shell,
.wp-site-shell *,
.wp-site-shell *::before,
.wp-site-shell *::after {
  box-sizing: border-box;
}

.wp-site-shell {
  color: var(--color-text);
  background: #fff;
  font-family: Poppins, Arial, sans-serif;
  line-height: 1.5;
}

.wp-site-shell img {
  display: block;
  max-width: 100%;
  height: auto;
}

.wp-site-shell a {
  color: inherit;
}

.wp-site-shell button,
.wp-site-shell input {
  font: inherit;
}

.wp-site-shell .container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
  padding-left: 0!important;
  padding-right: 0!important;
}

.wp-site-shell .container--narrow {
  width: min(100%, var(--container-narrow));
}

.wp-site-shell .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.wp-site-shell .topbar {
  background: linear-gradient(3deg, #1d2f4c 0%, #24476b 50%, #2972a7 100%);
  color: #fff;
}

.wp-site-shell .topbar__text {
  margin: 0;
  padding: 10px 0;
  text-align: center;
  font-size: 0.95rem;
}

.wp-site-shell .site-header {
  background: #fff;
}

.wp-site-shell .site-header--desktop {
  border-bottom: 1px solid #e7eef5;
}

.wp-site-shell .site-header__inner {
  display: grid;
  grid-template-columns: 200px minmax(280px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 20px 0;
}

.wp-site-shell .site-header__mobile-inner {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.wp-site-shell .site-logo {
  color: var(--color-blue);
  text-decoration: none;
  font-size: 1.45rem;
  font-weight: 700;
}

.wp-site-shell .searchbar {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wp-site-shell .searchbar input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid #a3a3a3;
  border-radius: 16px;
  background: #fff;
}

@media (min-width: 821px) {
  .wp-site-shell .searchbar input {
    min-width: 350px;
  }
}

@media (max-width: 820px) {
  .wp-site-shell .searchbar input {
    min-width: 100px;
  }
}

.wp-site-shell .button-primary,
.wp-site-shell .button-outline {
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  border: 1px solid var(--color-blue);
  background: var(--color-blue);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.wp-site-shell .product-card__button {
  padding: 10px;
  border: 1px solid var(--color-blue-dark);
  background: var(--color-blue-dark);
  color: #fff;
  width: 100%;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
}


.wp-site-shell .searchbar--compact {
  max-width: 350px;
  margin-inline: auto;
}

.wp-site-shell .header-actions {
  display: flex;
  gap: 8px;
}

.wp-site-shell .header-action {
  display: inline-flex;
  min-height: 46px;
  padding: 0 16px;
  align-items: center;
  justify-content: center;
  border: 1px solid #a3a3a3;
  border-radius: 999px;
  background: #fff;
  text-decoration: none;
  white-space: nowrap;
}

.wp-site-shell .header-action--icon {
  min-height: 40px;
  padding-inline: 12px;
}

.wp-site-shell .nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  border: 1px solid #d8e4ee;
  border-radius: 12px;
  background: #fff;
}

.wp-site-shell .nav-toggle__bar {
  width: 18px;
  height: 2px;
  background: var(--color-blue-dark);
}

.wp-site-shell .main-nav {
  background: var(--color-blue);
}

.wp-site-shell .main-nav__menu {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.wp-site-shell .main-nav__menu li a {
  display: block;
  padding: 14px 18px;
  color: #fff;
  text-decoration: none;
  font-size: 0.98rem;
}

.wp-site-shell .main-nav__menu--mobile {
  flex-direction: column;
  padding: 12px 0;
}


.wp-site-shell .breadcrumb-bar .container .breadcrumb {
  background: #fff;
  font-size: 1rem!important;
}

.wp-site-shell .breadcrumb-bar{
  min-height: 49px;
  padding: 12px 0;
  border-bottom: 1px #cacaca dashed !important;
}
.wp-site-shell .breadcrumb-bar .container {
  height: 100%;
}



.wp-site-shell .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

  gap: 8px;

  margin: 0;

  line-height: 1;
}

.wp-site-shell .breadcrumb a {
  color: var(--color-blue);
  text-decoration: none;
}

.wp-site-shell .site-main {
  min-height: 40vh;
}

.wp-site-shell .page-section {
  padding: 24px 0 24px;
  background: var(--color-bg);
}

.wp-site-shell .panel {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.wp-site-shell .panel--hero,
.wp-site-shell .panel--archive-head,
.wp-site-shell .panel--meta {
  box-shadow: none;
}

.wp-site-shell .panel--meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.wp-site-shell .panel--article {
  margin-top: 24px;
}

.wp-site-shell .page-title {
  margin: 0;
  color: var(--color-blue);
  font-size: clamp(2rem, 3vw, 2.4rem);
  line-height: 1.2;
  margin-bottom: 8px;
}

.wp-site-shell .page-title--article {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
    color: var(--text-secondary, #2972A7);
  /* desktop */
  font-family: Poppins;
  font-size: 38px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 53.2px */
}

.wp-site-shell .hero-blog {
  display: grid;
  gap: 24px;
}

.wp-site-shell .hero-blog__intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.wp-site-shell .hero-blog__title {
  margin: 0;
  color: var(--color-blue);
  font-size: clamp(2rem, 3vw, 2.4rem);
  line-height: 1.2;
}

.wp-site-shell .tag-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.wp-site-shell .tag-list--single {
  justify-content: flex-start;
}

.wp-site-shell .tag-pill,
.wp-site-shell .pagination-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid #f2eeee;
  border-radius: 8px;
  background: #fff;
  color: var(--color-blue);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}

.wp-site-shell .content-section {
  margin-top: 32px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.wp-site-shell .section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.wp-site-shell .section-header__eyebrow {
  margin: 0;
  color: var(--color-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.wp-site-shell .section-header__line {
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 3px;
  background: var(--color-blue);
}

.wp-site-shell .section-header__link,
.wp-site-shell .text-link {
  color: #296b9c;
  text-decoration: none;
  font-weight: 600;
}

.wp-site-shell .articles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.wp-site-shell .article-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.wp-site-shell .article-card__image {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: #d7e8f4;
}

.wp-site-shell .article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wp-site-shell .article-card__tag {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 8px;
  border: 1px solid #f2eeee;
  border-radius: 8px;
  background: #f5fcff;
  color: var(--color-blue);
  font-size: 0.875rem;
  font-weight: 600;
}

.wp-site-shell .article-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wp-site-shell .article-card__title {
  
  margin: 0;
  color: var(--color-blue);
  font-size: 1.3rem;
  line-height: 1.35;
  font-weight: 700;
}

.wp-site-shell .article-card__title a {
  text-decoration: none;
}

.wp-site-shell .article-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: var(--color-text-light);
  font-size: 0.92rem;
}

.wp-site-shell .dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
}

.wp-site-shell .article-card__excerpt,
.wp-site-shell .featured-article__excerpt,
.wp-site-shell .article-hero__excerpt {
  margin: 0;
  font-size: 1rem;
}

.wp-site-shell .featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.wp-site-shell .featured-article__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wp-site-shell .featured-article__title {
  margin: 0;
  color: var(--color-blue);
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.25;
}

.wp-site-shell .featured-article__title a {
  text-decoration: none;
}

.wp-site-shell .featured-article__media {
  display: flex;
  overflow: hidden;
  border-radius: var(--radius-md);
  align-items: center;
}

.wp-site-shell .featured-article__media img {
  width: 100%;
  object-fit: contain;
  border-radius:var(--radius-md);
}

.wp-site-shell .lexique-card {
  justify-content: flex-start;
}

.wp-site-shell .lexique-card__letter {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--color-blue-soft);
  color: var(--color-blue-dark);
  font-weight: 700;
  font-size: 1.1rem;
}

.wp-site-shell .article-hero {
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.wp-site-shell .article-hero__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.wp-site-shell .article-hero__image {
  overflow: hidden;
  border-bottom-left-radius: var(--radius-md);
  border-bottom-right-radius: var(--radius-md);
  align-self: stretch;
}


.article-hero.panel {
  padding: 0;
}

.wp-site-shell .article-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.wp-site-shell ul,
.wp-site-shell ul {
  list-style: disc;
}

.wp-site-shell .summary-box ul,
.wp-site-shell .footer-columns ul {
  margin: 0;
  padding-left: 18px;
}

.wp-site-shell .entry-content > *:first-child {
  margin-top: 0;
}

.wp-site-shell .entry-content > *:last-child {
  margin-bottom: 0;
}

.wp-site-shell .entry-content p,
.wp-site-shell .entry-content li {
  
  font-size: 1.1rem;
}

.wp-site-shell .accordion details {
  border-top: 1px solid var(--color-border-strong);
  padding: 14px 0;
}

.wp-site-shell .accordion summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--color-blue-dark);
}

.wp-site-shell .product-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.wp-site-shell .product-card {
  display: flex;
  flex-direction: column;
   border-radius: var(--radius-md);
  border: 1px solid var(--strokes-card, #EDF6FF);
  background: var(--backgrounds-card, #FFF);
  margin-bottom: 16px;
  padding:10px;
}

.wp-site-shell .product-card__media {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #e9f2f8;
}

.wp-site-shell .product-card__media img {
  width: 100%;
  height: auto;
}

.wp-site-shell .product-card__title {
  margin: 0;
  color: var(--color-blue);
  font-size: 1.1rem;
}

.wp-site-shell .recipe-infos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.wp-site-shell .recipe-info-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.wp-site-shell .alphabet-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.wp-site-shell .pagination-simple {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.wp-site-shell .pagination-chip.is-active,
.wp-site-shell .pagination-simple .current {
  background: var(--color-blue);
  color: #fff;
  border-color: var(--color-blue);
}

.wp-site-shell .pagination-simple .page-numbers a,
.wp-site-shell .pagination-simple .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  min-width: 36px;
  padding: 8px 12px;
  border: 1px solid #f2eeee;
  border-radius: 8px;
  background: #fff;
  color: var(--color-blue);
  text-decoration: none;
}

.wp-site-shell .pagination-simple ul.page-numbers {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.wp-site-shell .reassurance {
  padding: 40px 0;
  background: #fff;
}

.wp-site-shell .reassurance__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.wp-site-shell .reassurance__item {
  padding: 18px 16px;
  text-align: center;
  border-radius: var(--radius-md);
  background: var(--color-bg);
  font-weight: 600;
  color: var(--color-blue-dark);
}

.wp-site-shell .newsletter-band {
  padding: 48px 0;
  color: #fff;
  background: var(--color-blue);
}

.wp-site-shell .newsletter-band__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.wp-site-shell .newsletter-band__col {
  padding: 24px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-md);
}

.wp-site-shell .button-outline {
  margin-top: 12px;
  border-color: #fff;
  background: transparent;
}

.wp-site-shell .social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.wp-site-shell .social-chip {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.wp-site-shell .footer-columns {
  padding: 48px 0;
  background: #fafafa;
}

.wp-site-shell .footer-columns__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.wp-site-shell .footer-columns h3 {
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-blue);
  font-size: 1rem;
}

.wp-site-shell .footer-columns ul {
  list-style: none;
  padding-left: 0;
}

.wp-site-shell .footer-columns li {
  margin-bottom: 8px;
}

.wp-site-shell .footer-columns a {
  text-decoration: none;
}

.wp-site-shell .site-copyright {
  padding: 12px 0;
  text-align: center;
  background: #fff;
  border-top: 1px solid #d9d9d9;
}

.wp-site-shell .site-copyright p {
  margin: 0;
  font-size: 0.875rem;
}

.wp-site-shell a:link:not(.nav-link):not(.btn){
  color:var(--color-blue);
}

.wp-site-shell a:link:not(.nav-link):not(.btn), .wp-site-shell a:visited:not(.nav-link):not(.btn){
   color:var(--color-blue);
}

@media (max-width: 1100px) {
  .wp-site-shell .site-header__inner {
    grid-template-columns: 180px 1fr;
  }

  .wp-site-shell .header-actions {
    grid-column: 1 / -1;
  }

  .wp-site-shell .articles-grid,
  .wp-site-shell .product-row,
  .wp-site-shell .reassurance__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wp-site-shell .featured-article,
  .wp-site-shell .newsletter-band__grid,
  .wp-site-shell .footer-columns__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .wp-site-shell .site-header--desktop,
  .wp-site-shell .main-nav--desktop {
    display: none;
  }

  .wp-site-shell .site-header__mobile-inner {
    display: flex;
  }

  .wp-site-shell .main-nav--mobile {
    background: #fff;
    border-bottom: 1px solid #dfe8f0;
  }

  .wp-site-shell .main-nav--mobile .main-nav__menu li a {
    color: var(--color-blue-dark);
    padding-inline: 0;
  }

  .wp-site-shell .articles-grid,
  .wp-site-shell .product-row,
  .wp-site-shell .recipe-infos,
  .wp-site-shell .reassurance__grid,
  .wp-site-shell .footer-columns__grid {
    grid-template-columns: 1fr;
  }

  .wp-site-shell .featured-article {
    grid-template-columns: 1fr;
  }


  .wp-site-shell .hero-blog__title,
  .wp-site-shell .page-title {
    font-size: 1.9rem;
  }

  .wp-site-shell .searchbar {
    flex-direction: column;
    align-items: stretch;
  }

  .wp-site-shell .button-primary,
  .wp-site-shell .button-outline {
    width: 100%;
  }

  .wp-site-shell .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 821px) {
  .wp-site-shell .site-header--mobile,
  .wp-site-shell .main-nav--mobile {
    display: none;
  }
}

.wp-site-shell .searchbar__field {
  position: relative;
  width: 100%;
}

.wp-site-shell .searchbar__field input {
  width: 100%;
  min-height: 48px;
  padding: 0 48px 0 16px; /* espace à droite pour le bouton */
  border: 1px solid #a3a3a3;
  border-radius: 16px;
  background: #fff;
}

.wp-site-shell .searchbar__button {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);

  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  
  border: 1px solid var(--Grey-300, #A3A3A3);
  border-radius: 1000px;
  background: #E1F6FF;
}

.wp-site-shell .searchbar__button svg {
  width: 18px;
  height: 18px;
}

.wp-site-shell .article-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  margin-top: 24px;
}


.wp-site-shell .article-sidebar {
  position: sticky;
  top: 100px;
  align-self: start;

  display: flex;
  flex-direction: column;

  overflow: visible;
}

.wp-site-shell .article-sidebar .product-card__content {
  margin-top: 24px;
}

.wp-site-shell .article-sidebar .product-card__price {
  margin-top: 12px;
  color: black;
}



.wp-site-shell .article-main {
  margin-top: 0;
  font-size: 1.1rem;
}

@media (max-width: 980px) {
  .wp-site-shell .article-layout {
    grid-template-columns: 1fr;
  }

  .wp-site-shell .article-sidebar {
    max-height: none;
    overflow: visible;

    display: flex;
    flex-direction: column;
    position:static;
    order: 2;
  }

  .wp-site-shell .article-main {
    order: 1;
  }
}

.wp-site-shell .article-callout {
  margin: 24px 0;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  background: #fff;
}

.wp-site-shell .article-callout--takeaway {
  background: #f5fcff;
}

.wp-site-shell .article-callout--summary {
  background: #f1f4f7;
}

.wp-site-shell .article-callout__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.wp-site-shell .article-callout__title {
  margin: 0;
  font-size: 1.1rem;
  color: var(--color-blue);
}

.wp-site-shell .summary-box {
  background-color: white;
}

.wp-site-shell .wp-block-uagb-advanced-heading h2 {
  color: var(--text-secondary, #2972A7);
  
  /* desktop/H2 */
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; 
  margin-bottom: 24px!important; 
}

.wp-site-shell .wp-block-uagb-advanced-heading h2 {
  color: var(--text-secondary, #2972A7);
  
  /* desktop/H2 */
  font-family: Poppins;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; 
  margin-bottom: 24px!important; 
}

.wp-site-shell .wp-block-uagb-advanced-heading h3 {
  color: var(--text-secondary, #2972A7);
  
  /* desktop/H3 */
  font-family: Poppins;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%; /* 33.6px */
  margin-bottom: 12px!important; 
}


/* EN RESUME */
.wp-site-shell .article-callout--summary .article-callout__header,
.editor-styles-wrapper .article-callout--summary .article-callout__header {
  display: inline-flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;

  border-radius: 8px;
  border: 1.5px solid #4FA729;
  background: #F7FFF4;
  margin-bottom: 12px;
}

.wp-site-shell .article-callout--summary .article-callout__title,
.editor-styles-wrapper .article-callout--summary .article-callout__title {
  margin: 0;
  color: #4FA729;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.wp-site-shell .article-callout--summary .article-callout__icon,
.editor-styles-wrapper .article-callout--summary .article-callout__icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  flex: 0 0 24px;
}

.wp-site-shell .article-callout--summary .article-callout__icon svg,
.editor-styles-wrapper .article-callout--summary .article-callout__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

/* BON A SAVOIR */
.wp-site-shell .article-callout--takeaway .article-callout__header,
.editor-styles-wrapper .article-callout--takeaway .article-callout__header {
  display: inline-flex;
  padding: 8px 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;

  border-radius: 8px;
  border: 1.5px solid #98800B;
  background: #FFFBDF;
  margin-bottom: 12px;
}

.wp-site-shell .article-callout--takeaway .article-callout__title,
.editor-styles-wrapper .article-callout--takeaway .article-callout__title {
  margin: 0;
  color: #98800B;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.wp-site-shell .article-callout--takeaway .article-callout__icon,
.editor-styles-wrapper .article-callout--takeaway .article-callout__icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  flex: 0 0 24px;
}

.wp-site-shell .article-callout--takeaway .article-callout__icon svg,
.editor-styles-wrapper .article-callout--takeaway .article-callout__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}


/* SOMMAIRE */
.wp-site-shell .toc {
  padding: 16px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #fff;
}

.wp-site-shell .toc__title {
  margin: 0;
  color: var(--color-blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.wp-site-shell .toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wp-site-shell .toc__item {
  margin-top: 4px;
  margin-bottom: 4px;
}

.wp-site-shell .toc__item a {
  text-decoration: none;
  color: var(--color-text);
  font-size: 0.95rem;
}

.wp-site-shell .toc__item--h3 {
  padding-left: 12px;
  font-size: 0.9rem;
}

.wp-site-shell .author-box {
  margin-top: 48px;
}

.wp-site-shell .author-box__inner {
  display: flex;
  align-items: center;
  gap: 24px;
}

.wp-site-shell .author-box__avatar {
  flex: 0 0 120px;
}

.wp-site-shell .author-box__avatar img {
  width: 120px;
  height: 120px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}

.wp-site-shell .author-box__content {
  flex: 1;
}

.wp-site-shell .author-box__eyebrow {
  margin: 0 0 8px;
  color: var(--color-text-light);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

.wp-site-shell .author-box__name {
  margin: 0 0 12px;
  color: var(--color-blue);
  font-size: 1.5rem;
  line-height: 1.2;
}

.wp-site-shell .author-box__bio p:last-child {
  margin-bottom: 0;
}

@media (max-width: 820px) {

  .wp-site-shell .author-box__inner {
    flex-direction: column;
    text-align: center;
  }

}

.wp-site-shell .wp-block-list {
  padding-left: 1.2em;
}

.wp-site-shell .toc__list,
.wp-site-shell .toc__sublist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wp-site-shell .toc__group {
  margin: 0 0 8px;
}

.wp-site-shell .toc__row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.wp-site-shell .toc__row .toc__link {
  flex: 1;
}

.wp-site-shell .toc__toggle {
  width: 24px;
  height: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 0;
  background: transparent;

  color: var(--color-blue);
  font-size: 20px;
  font-weight: 600;
  line-height: 1;

  cursor: pointer;
}

.wp-site-shell .toc__sublist {
  margin-top: 8px;
  padding-left: 16px;
}

.wp-site-shell .toc__link {
  color: var(--color-text);
  text-decoration: none;
}

.wp-site-shell .toc__link--h2 {
  font-weight: 600;
}

.wp-site-shell .toc__link--h3 {
  font-size: 0.92rem;
  color: var(--color-text-light);
}


.wp-site-shell .schema-faq-section {
  border-top: 1px solid var(--color-border);
  padding: 16px 0;
}

.wp-site-shell .schema-faq-section:last-child {
  border-bottom: 1px solid var(--color-border);
}

.wp-site-shell .schema-faq-toggle {
  width: 100%;
  padding: 0;

  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;

  border: 0;
  background: transparent;
  color: var(--color-blue-dark);
  text-align: left;
  cursor: pointer;

  font: inherit;
  font-weight: 600;
}

.wp-site-shell .schema-faq-toggle__text {
  flex: 1;
}

.wp-site-shell .schema-faq-toggle__icon {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--color-blue);
  font-size: 22px;
  line-height: 1;
  font-weight: 600;
}

.wp-site-shell .schema-faq-answer {
  margin: 12px 0 0;
  color: var(--color-text);
}

.page-numbers li {
    list-style: none;
}

.wp-site-shell .page-numbers .current {
  font-weight: 700;
}

#_mobile_iqitmegamenu-mobile:not(.show) {
  display: none;
}

#_mobile_iqitmegamenu-mobile.show {
  display: block;
}

#_mobile_iqitmegamenu-mobile li > ul {
  display: none;
}

#_mobile_iqitmegamenu-mobile li.show > ul {
  display: block;
}

