body.new-header-2025 {
	--gutter: 2rem;
	--wrapper: 1400px;
	--headerHeight: 185px;
	padding-left: 0 !important;
	padding-top: var(--headerHeight);
	letter-spacing: 0 !important;
	overflow-x: clip;
}
.main-header,
.main-header__wrapper,
.top-nav,
.article-header .socials-sidebar,
.home-intro .socials-sidebar {
	display: none;
}
.wrapper {
	padding: 0 var(--gutter);
	margin: auto;
}
.wrapper-1000 {
	max-width: 1000px;
}
.wrapper-1100 {
	max-width: 1100px;
}
.wrapper-1200 {
	max-width: 1200px;
}
.wrapper-1300 {
	max-width: 1300px;
}
.wrapper-1400 {
	max-width: 1400px;
}
.wrapper-1500 {
	max-width: 1500px;
}
.wrapper-1600 {
	max-width: 1600px;
}
.wrapper-1700 {
	max-width: 1700px;
}
header.nav-up.new-header {
	transform: translateY(-100%);
}
header.new-header {
	z-index: 1001;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	transition: 0.5s;
	padding: 0;
	border-bottom: #f7f7f7 1px solid;
}
.nh-menu {
	margin-top: 1em;
	position: relative;
	top: 1px;
}
.nh-menu > ul {
	list-style-type: none;
	--g: 0.5em;
	display: flex;
	justify-content: center;
	width: calc(100% + (var(--g) * 2));
	margin-left: calc(var(--g) * -1);
}
.nh-menu > ul > li {
	flex: 1 1 auto;
	position: relative;
	text-align: left;
}
.nh-menu > ul > li:last-child {
	text-align: right;
}
.nh-menu > ul > li > a {
	z-index: 2;
	position: relative;
	display: inline-block;
	padding: 0.75em 1em;
	font-weight: 500;
	border-radius: 0.5em 0.5em 0 0;
	white-space: nowrap;
}
.nh-menu > ul > li:not([class*="current-menu-item"]):hover > a {
	background-color: #f7f7f7;
}
.nh-menu > ul > li.featured > a {
	background-color: var(--yellow);
}
.nh-menu > ul > li.menu-item-has-children > a::after {
	content: '';
	position: relative;
	display: inline-block;
	width: 1em;
	height: 1em;
	background-image: url(../img/icon-down2.svg);
	background-position: center right;
	background-repeat: no-repeat;
	background-size: auto 0.7em;
	vertical-align: middle;
	opacity: 0.5;
}
.nh-menu > ul > li.menu-item-has-children > a:before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: transparent;
	transition: 0;
}
.nh-menu > ul > li.menu-item-has-children:hover > a::before {
	background-color: #eee;
}
.nh-menu > ul > li > ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 15em;
	text-align: left;
	font-size: 0.95em;
	list-style-type: none;
}
.nh-menu > ul > li:hover > ul {
	display: block;
}
.nh-menu > ul > li > ul > li > a {
	display: block;
	padding: 0.75em 1em;
	background: #f7f7f7;
}
.nh-menu > ul > li > ul > li > a:hover {
	background: #654998;
	color: #fff;
}
.nh-menu > ul > li > ul > li:first-child > a {
	border-radius: 0 0.5em 0 0;
}
.nh-menu > ul > li > ul > li:last-child > a {
	border-radius: 0 0 0.5em 0.5em;
}
.nh-menu > ul > li > ul > li:not(:last-child) > a {
	border-bottom: #eee 1px solid;
}
.nh-menu > ul > li::before {
	content: '';
	--s: 2.2em;
	z-index: 1;
	position: absolute;
	top: 0;
	left: calc(var(--s) * 0.25);
	width: var(--s);
	height: var(--s);
	background-color: transparent;
	border-radius: 50%;
	transition: 0.3s;
}
.nh-menu > ul > li.current-menu-ancestor:not(.featured)::before,
.nh-menu > ul > li.current-menu-item:not(.featured)::before {
	background-color: var(--yellow);
}
.nh-top {
	--g: 0.5em;
	display: flex;
	width: calc(100% + (var(--g) * 2));
	margin-left: calc(var(--g) * -1);
}
.nh-top > * {
	padding: var(--g);
}
.nh-logo {
	flex: 0 0 15em;
}
.nh-logo img {
	display: block;
	width: 100%;
	height: auto;
}
.nh-socials {
	flex: 1;
}
.nh-socials .socials-sidebar {
	background: transparent;
	flex-direction: row;
	justify-content: end;
}
.nh-socials .socials-sidebar > div {
	padding: 0.5em;
}
.nh-socials .socials-sidebar img {
	filter: none;
	width: 1.125em;
}
.nh-socials .socials-sidebar a {
	transition: 0.3s;
}
.nh-socials .socials-sidebar a:hover {
	filter: invert(64%) sepia(98%) saturate(431%) hue-rotate(132deg) brightness(80%) contrast(89%);
}
.nh-alert {
	background: #f7f7f7;
	padding: 0.5rem;
	text-align: center;
	line-height: 1.25em;
	font-size: 0.9em;
	transition: 0.3s;
	overflow: clip;
	max-height: 100px;
	transition: 0.4s ease;
}
.nh-alert a {
	text-decoration: underline;
}
body.scrolled .nh-alert {
  max-height: 0;      /* réduit la hauteur à zéro */
  padding-top: 0;
  padding-bottom: 0;
}

.nh-menu .dots {
  --dot-size: 8px;
  --dot-gap: 1px;
  --bounce-height: 6px;
  --color: black;

  cursor: pointer;
}

/* lien */
.nh-menu .dots > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--dot-gap);
  position: relative;
  text-decoration: none;
  opacity: 0.7;
  position: relative;
  top: 1px;
	background: transparent !important;
}
.nh-menu .dots > a:hover {
	background: transparent !important;
	opacity: 1;
}

/* texte accessible uniquement */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* style des points */
.nh-menu .dots .dot {
  display: inline-block;
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background-color: currentColor;
  transform: translateY(0);
  transition: 0.3s ease;
  margin: 0.125em;
}

/* keyframes rebond */
@keyframes bounce {
  0%, 20%, 100% { transform: translateY(0); }        /* repos */
  10% { transform: translateY(calc(-1 * var(--bounce-height))); } /* montée */
  15% { transform: translateY(calc(-1 * var(--bounce-height)/2)); } /* redescente partielle */
}

/* animation hover / active / focus */
.nh-menu .dots:hover .dot,
.nh-menu .dots:focus-within .dot,
.nh-menu .dots.active .dot {
  animation: bounce 1.6s ease-in-out infinite;
  color: #15b6c4;
}

/* cascade pour chaque point */
.nh-menu .dots .dot:nth-child(2) { animation-delay: 0.1s; }
.nh-menu .dots .dot:nth-child(3) { animation-delay: 0.2s; }

/* couleur active */
.nh-menu .dots { color: var(--color); flex: 1; }

.mobile-menu {
	z-index: 1003 !important;
}
body .mobile-menu-overlay {
	z-index: 1002 !important;
}
.mobile-socials {
	padding: 0.5em 1em;
}
.mobile-socials img {
	opacity: 0.7;
}
.mobile-socials img:hover {
	opacity: 1;
}
.mobile-socials .socials-sidebar {
	justify-content: start;
}

@media screen and (max-width: 1100px) {
	.nh-menu {
		font-size: 0.9em;
	}
}
@media screen and (max-width: 900px) {
	.nh-menu > ul {
		justify-content: start;
	}
	.nh-menu > ul > li {
		flex: 0 1 auto;
	}
	.nh-menu > ul > li.nh-menu .dots {
		flex: 1 1 auto;
	}
	.nh-menu .toHide {
		display: none;
	}
}
@media screen and (max-width: 700px) {
	.nh-alert { font-size: 0.8em; }
	.nh-logo { flex: 0 0 11em; }
	.nh-socials .socials-sidebar img { width: 1em; }
}
@media screen and (min-width: 650px) {
  .page-template-page-blog .socials-sidebar,
  .single-lexique .socials-sidebar,
  .page-template-page-articles .socials-sidebar,
  .page-template-default .socials-sidebar,
  .page-template-page-iframe .socials-sidebar,
  .archive .socials-sidebar,
  body.search .socials-sidebar {
    z-index: 1;
    position: relative;
    top: 0;
    right: 0;
    width: auto;
    height: auto;
  }
}
@media screen and (max-width: 500px) {
	.new-header .nh-socials {
	  flex: 0 1 9em;
	  margin-right: 0;
    margin-left: auto;
    display: none;
	}
	.nh-socials .socials-sidebar { flex-wrap: wrap; }
	.nh-socials .socials-sidebar > div {
		padding: 0.2em 0.4em;
	}
	.mobile-socials {
		padding: 0.5em;
	}
}

.archive-nav {
	z-index: 1000 !important;
}
.section-w-padding,
.article__content {
	max-width: var(--wrapper);
	padding-left: var(--gutter);
	padding-right: var(--gutter);
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 650px) {
  .no-padding-on-mobile {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

body.home header.new-header,
body.single-post header.new-header {
	border-bottom: none;
}

.new-header-2025 .home-v2-last {
	padding-bottom: 3em !important;
}
@media screen and (max-width: 650px) {
	.new-header-2025.page-template-page-accueil .section-w-padding {
		padding: 0 1.5em 3em 1.5em !important;
	}
	.new-header-2025.page-template-page-accueil .shorts-gallery {
		width: calc(100% + 2.5em);
	}
}