#bestco, .bestco {
  --bestco-bg: #fff;
  --bestco-text: #1f1f2e;
  --bestco-muted: #656579;
  --bestco-primary: #e83e8c;
  --bestco-primary-dark: #b91f68;
  --bestco-primary-soft: rgba(232, 62, 140, 0.11);
  --bestco-secondary: #7c3aed;
  --bestco-accent: #ff8ac2;
  --bestco-border: rgba(31, 31, 46, 0.09);
  --bestco-card: rgba(255, 255, 255, 0.82);
  --bestco-shadow: 0 18px 50px rgba(31, 31, 46, 0.09);
  --bestco-shadow-hover: 0 24px 70px rgba(232, 62, 140, 0.18);
  --bestco-radius: 22px;
  --bestco-radius-sm: 14px;

  position: relative;
  isolation: isolate;
  max-width: 1040px;
  margin: 0 auto;
  padding: clamp(22px, 4vw, 52px);
  color: var(--bestco-text);
  font-size: 17px;
  line-height: 1.78;
  background:
    radial-gradient(circle at 10% 0%, rgba(232, 62, 140, 0.12), transparent 32%),
    radial-gradient(circle at 100% 18%, rgba(124, 58, 237, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fff7fb 100%);
  border: 1px solid var(--bestco-border);
  border-radius: 34px;
  box-shadow: var(--bestco-shadow);
  overflow: hidden;
}

/* Effet décoratif premium en arrière-plan */
#bestco::before, .bestco::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(232, 62, 140, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 62, 140, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;

}

/* Halo doux bas de page */
#bestco::after, .bestco::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -120px;
  z-index: -1;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(232, 62, 140, 0.18), transparent 70%);
  filter: blur(6px);
}

/* ==========================================================
   Typographie générale
   ========================================================== */

#bestco p:not(.not-to-miss-content p) {
  margin: 0 0 18px;
  color: var(--bestco-text);
}

#bestco strong {
  color: #171725;
  font-weight: 800;
}

#bestco em {
  color: var(--bestco-primary-dark);
}

/* ==========================================================
   Titres H2 premium
   ========================================================== */

#bestco h2:not(.not-to-miss-content h2), .bestco h2:not(.not-to-miss-content h2) {
  position: relative;
  padding: 20px 24px 20px 58px;
  color: #161625;
  font-size: clamp(26px, 3.4vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 244, 250, 0.86));
  border: 1px solid rgba(232, 62, 140, 0.13);
  border-radius: var(--bestco-radius);
  box-shadow: 0 12px 32px rgba(31, 31, 46, 0.06);
}

#bestco h2:first-of-type {
  margin-top: 0;
}

/* Pastille iconique avant chaque H2 */
#bestco h2:not(.not-to-miss-content h2)::before, .bestco h2:not(.not-to-miss-content h2)::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  background:
    radial-gradient(circle at 35% 35%, #fff 0 18%, transparent 19%),
    linear-gradient(135deg, var(--bestco-primary), var(--bestco-secondary));
  border-radius: 50%;
  box-shadow: 0 0 0 8px var(--bestco-primary-soft);
}

/* Ligne dégradée sous H2 */
#bestco h2:not(.not-to-miss-content h2)::after, .bestco h2:not(.not-to-miss-content h2)::after {
  content: "";
  position: absolute;
  left: 58px;
  right: 26px;
  bottom: -2px;
  height: 3px;
  background: linear-gradient(90deg, var(--bestco-primary), var(--bestco-secondary), transparent);
  border-radius: 999px;
}

/* ==========================================================
   Sous-titres H3
   ========================================================== */

#bestco h3 {
  position: relative;
  margin: 30px 0 12px;
  padding-left: 18px;
  color: fff;
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  font-weight: 850;
}

#bestco h3:not(.not-to-miss-content h3)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 5px;
  height: 1.05em;
  background: linear-gradient(180deg, var(--bestco-primary), var(--bestco-secondary));
  border-radius: 999px;
}

/* ==========================================================
   Liens internes
   ========================================================== */

#bestco a:not(.not-to-miss-content a) {
  position: relative;
  color: var(--bestco-primary-dark);
  font-weight: 800;
  text-decoration: none;
  transition:
    color 0.22s ease,
    background-size 0.22s ease,
    box-shadow 0.22s ease;
  background:
    linear-gradient(90deg, rgba(232, 62, 140, 0.18), rgba(124, 58, 237, 0.14))
    left 88% / 100% 7px no-repeat;
  border-radius: 6px;
}

#bestco a:not(.not-to-miss-content a):hover {
  color: #7c174b;
  background-size: 100% 100%;
  box-shadow: 0 0 0 4px rgba(232, 62, 140, 0.08);
}

/* ==========================================================
   Paragraphes : effet contenu éditorial premium
   ========================================================== */

#bestco h2 + p,
#bestco h3 + p {
  font-size: 1.03em;
}

#bestco p:not(blockquote p):not(.not-to-miss-content p) {
  max-width: 92ch;
}

#bestco p span.join::after, #bestco p span.join::before{display:none;}

/* Mise en valeur du premier paragraphe */
#bestco > p:first-of-type {
  padding: clamp(20px, 3vw, 30px);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.72;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 240, 248, 0.9));
  border: 1px solid rgba(232, 62, 140, 0.14);
  border-radius: var(--bestco-radius);
  box-shadow: 0 18px 42px rgba(31, 31, 46, 0.07);
}

/* ==========================================================
   Listes pays / navigation interne
   ========================================================== */

#bestco ul:not(.not-to-miss-content ul) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 28px;
  padding: 0;
  list-style: none;
}

#bestco li:not(.not-to-miss-content li) {
  position: relative;
  padding: 15px 16px 15px 46px;
  color: var(--bestco-text);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--bestco-border);
  border-radius: var(--bestco-radius-sm);
  box-shadow: 0 10px 24px rgba(31, 31, 46, 0.045);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
	list-style:none;
}

#bestco li:not(.not-to-miss-content li)::before {
  content: "";
  position: absolute;
  left: 17px;
  top: 19px;
  width: 15px;
  height: 15px;
  background:
    linear-gradient(135deg, var(--bestco-primary), var(--bestco-secondary));
  border-radius: 999px;
  box-shadow: 0 0 0 6px var(--bestco-primary-soft);
}

#bestco li:not(.not-to-miss-content li):hover {
  transform: translateY(-3px);
  background: #fff;
  border-color: rgba(232, 62, 140, 0.24);
  box-shadow: var(--bestco-shadow-hover);
}

/* ==========================================================
   CTA central .join
   ========================================================== */

#bestco .join {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 17px 30px;
  color: #fff;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-align: center;
  background:
    linear-gradient(135deg, var(--bestco-primary) 0%, var(--bestco-secondary) 100%);
  border-radius: 999px;
  box-shadow:
    0 18px 40px rgba(232, 62, 140, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transform: translateZ(0);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

#bestco .join:hover {
  transform: translateY(-3px) scale(1.015);
  filter: saturate(1.08);
  box-shadow:
    0 24px 60px rgba(232, 62, 140, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

#bestco .join:active {
  transform: translateY(-1px) scale(0.99);
}

#bestco .join strong {
  color: inherit;
}

/* Conteneur du CTA existant */
#bestco p[style*="text-align:center"] {
  position: relative;
  margin: 36px 0 !important;
  padding: 24px;
  background:
    radial-gradient(circle at center, rgba(232, 62, 140, 0.14), transparent 62%);
  border-radius: 28px;
}

/* ==========================================================
   Témoignages / blockquotes
   ========================================================== */

#bestco blockquote {
  position: relative;
  margin: 22px 0 !important;
  padding: 26px 28px 26px 78px !important;
  color: var(--bestco-text);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 243, 249, 0.92)) !important;
  border: 1px solid rgba(232, 62, 140, 0.16) !important;
  border-left: 0 !important;
  border-radius: var(--bestco-radius) !important;
  box-shadow: 0 18px 42px rgba(31, 31, 46, 0.07);
  overflow: hidden;
}

#bestco blockquote::before {
  content: "“";
  position: absolute;
  left: 24px;
  top: 12px;
  color: rgba(232, 62, 140, 0.36);
  font-size: 76px;
  line-height: 1;
  font-family: Georgia, serif;
  font-weight: 900;
}

#bestco blockquote::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--bestco-primary), var(--bestco-secondary));
}

#bestco blockquote p {
  margin: 0;
  color: #27273a;
  font-size: 1.02em;
  line-height: 1.72;
}

#bestco blockquote strong {
  color: var(--bestco-primary-dark);
}

/* ==========================================================
   FAQ native premium — details / summary
   Scope total : #bestco
   ========================================================== */

#bestco .bestco-faq {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

#bestco .bestco-faq__item {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 244, 250, 0.9));
  border: 1px solid var(--bestco-border);
  border-radius: var(--bestco-radius);
  box-shadow: 0 12px 32px rgba(31, 31, 46, 0.055);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease,
    background 0.22s ease;
}

#bestco .bestco-faq__item:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 62, 140, 0.24);
  box-shadow: var(--bestco-shadow-hover);
}

#bestco .bestco-faq__item[open] {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 238, 247, 0.96));
  border-color: rgba(232, 62, 140, 0.28);
  box-shadow: 0 22px 58px rgba(232, 62, 140, 0.14);
}

#bestco .bestco-faq__question {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 72px;
  padding: 22px 68px 22px 58px;
  color: #242438;
  font-size: clamp(16px, 2vw, 16px);
  line-height: 1.25;
  letter-spacing: -0.025em;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

#bestco .bestco-faq__question::-webkit-details-marker {
  display: none;
}

#bestco .bestco-faq__question::before {
  content: "?";
  position: absolute;
  left: 22px;
  top: 50%;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  color: #fff;
  font-size: 14px;
  line-height: 1;
  font-weight: 900;
  background: linear-gradient(135deg, var(--bestco-primary), var(--bestco-secondary));
  border-radius: 999px;
  box-shadow: 0 0 0 7px var(--bestco-primary-soft);
}

#bestco .bestco-faq__question::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  color: #fff;
  font-size: 21px;
  line-height: 1;
  font-weight: 900;
  background: linear-gradient(135deg, var(--bestco-primary), var(--bestco-secondary));
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(232, 62, 140, 0.24);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease;
}

#bestco .bestco-faq__item[open] .bestco-faq__question::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
  box-shadow: 0 14px 34px rgba(232, 62, 140, 0.34);
}

#bestco .bestco-faq__answer {
  padding: 0 30px 30px 30px;
  color: var(--bestco-muted);
  animation: bestcoFaqReveal 0.26s ease both;
}

#bestco .bestco-faq__answer p {
  margin: 0;
  color: var(--bestco-muted);
  line-height: 1.75;
}

#bestco .bestco-faq__question:focus-visible {
  outline: 3px solid rgba(232, 62, 140, 0.35);
  outline-offset: -3px;
  border-radius: var(--bestco-radius);
}

@keyframes bestcoFaqReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 520px) {
  #bestco .bestco-faq__question {
    min-height: 66px;
    padding: 19px 58px 19px 52px;
    font-size: 18px;
  }

  #bestco .bestco-faq__question::before {
    left: 18px;
    width: 24px;
    height: 24px;
  }

  #bestco .bestco-faq__question::after {
    right: 18px;
    width: 29px;
    height: 29px;
    font-size: 19px;
  }

  #bestco .bestco-faq__answer {
    padding: 0 20px 22px 52px;
  }
}

/* ==========================================================
   Effets de section : respiration entre blocs
   ========================================================== */

#bestco h2:not(:first-of-type) {
  scroll-margin-top: 24px;
}

#bestco h2 + h3 {
  margin-top: 24px;
}

/* ==========================================================
   Accessibilité / focus clavier
   ========================================================== */

#bestco a:not(.not-to-miss-content a):focus-visible,
#bestco .join:focus-visible {
  outline: 3px solid rgba(232, 62, 140, 0.38);
  outline-offset: 4px;
}

/* ==========================================================
   Responsive tablette
   ========================================================== */

@media (max-width: 820px) {
  #bestco {
    padding: 28px 20px;
    border-radius: 26px;
  }

  #bestco ul {
    grid-template-columns: 1fr;
  }

  #bestco h2 {
    padding: 18px 20px 18px 52px;
  }

  #bestco h2::before {
    left: 20px;
  }

  #bestco h2::after {
    left: 52px;
  }

  #bestco blockquote {
    padding: 24px 22px 24px 58px !important;
  }

  #bestco blockquote::before {
    left: 18px;
    font-size: 58px;
  }
}

/* ==========================================================
   Responsive mobile
   ========================================================== */

@media (max-width: 520px) {
  #bestco {
    padding: 22px 16px;
    font-size: 16px;
    line-height: 1.72;
    border-radius: 22px;
  }

  #bestco h2 {
    margin-top: 38px;
    padding: 18px 18px 18px 48px;
    border-radius: 18px;
  }

  #bestco h2::before {
    left: 18px;
    width: 17px;
    height: 17px;
  }

  #bestco h2::after {
    left: 48px;
  }

#bestco h3:not(.not-to-miss-content h3) {
    font-size: 20px;
  }

  #bestco > p:first-of-type {
    padding: 18px;
    font-size: 17px;
  }

  #bestco li {
    padding: 14px 14px 14px 42px;
  }

  #bestco li::before {
    left: 15px;
  }

  #bestco .join {
    min-height: 56px;
    padding: 16px 20px;
    font-size: 17px;
  }

  #bestco p[style*="text-align:center"] {
    padding: 18px 0;
  }

  #bestco blockquote {
    padding: 22px 18px 22px 52px !important;
  }

  #bestco blockquote::before {
    left: 16px;
    top: 14px;
    font-size: 48px;
  }

}

/* ==========================================================
   Mode réduit pour utilisateurs sensibles aux animations
   ========================================================== */

@media (prefers-reduced-motion: reduce) {
  #bestco *,
  #bestco *::before,
  #bestco *::after {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* Image responsive sans déformation */
#bestco .not-to-miss-content img,
.bestco .not-to-miss-content img {
  display: block;
  max-width: 100%;
  width: 50%;
  height: auto;
  object-fit: cover;
}

#bestco .not-to-miss-article span,
.bestco .not-to-miss-article span {
	font-size:1em;
}

#bestco .not-to-miss-article p,
.bestco .not-to-miss-article p {
	font-size:0.8em;
}
@media (max-width: 990px) {
	#bestco .not-to-miss-content img,
	.bestco .not-to-miss-content img {
		 width: 100%;
	}
}

/* ==========================================================
   Sidebar premium — custom_html_sidebar
   Scope total : #custom_html_sidebar
   ========================================================== */

#custom_html_sidebar {
  --sidebar-bg: #ffffff;
  --sidebar-bg-soft: #fff6fb;
  --sidebar-text: #202033;
  --sidebar-muted: #6b6b80;
  --sidebar-primary: #e83e8c;
  --sidebar-primary-dark: #b91f68;
  --sidebar-secondary: #7c3aed;
  --sidebar-border: rgba(32, 32, 51, 0.09);
  --sidebar-card: rgba(255, 255, 255, 0.82);
  --sidebar-shadow: 0 18px 48px rgba(32, 32, 51, 0.10);
  --sidebar-shadow-hover: 0 16px 38px rgba(232, 62, 140, 0.18);
  --sidebar-radius: 22px;
  --sidebar-radius-sm: 14px;

  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 360px;
  margin: 0 auto 28px;
  color: var(--sidebar-text);
  font-size: 15px;
  line-height: 1.45;
}

#custom_html_sidebar,
#custom_html_sidebar * {
  box-sizing: border-box;
}

/* ==========================================================
   Conteneur principal
   ========================================================== */

#custom_html_sidebar nav {
  position: relative;
  overflow: hidden;
  padding: 22px;
  background:
    radial-gradient(circle at 0% 0%, rgba(232, 62, 140, 0.13), transparent 34%),
    radial-gradient(circle at 100% 12%, rgba(124, 58, 237, 0.11), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, var(--sidebar-bg-soft) 100%);
  border: 1px solid var(--sidebar-border);
  border-radius: var(--sidebar-radius);
  box-shadow: var(--sidebar-shadow);
}

/* Grille décorative discrète */
#custom_html_sidebar nav::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(232, 62, 140, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232, 62, 140, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

/* Halo décoratif */
#custom_html_sidebar nav::after {
  content: "";
  position: absolute;
  right: -110px;
  bottom: -110px;
  z-index: -1;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(232, 62, 140, 0.18), transparent 70%);
  filter: blur(8px);
}

/* ==========================================================
   Titres de sections
   ========================================================== */

#custom_html_sidebar h4 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 24px 0 12px;
  padding: 12px 14px 12px 42px;
  color: #171725;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: -0.015em;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(232, 62, 140, 0.13);
  border-radius: var(--sidebar-radius-sm);
  box-shadow: 0 10px 24px rgba(32, 32, 51, 0.055);
}

#custom_html_sidebar h4:first-child {
  margin-top: 0;
}

#custom_html_sidebar h4::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  background:
    radial-gradient(circle at 35% 35%, #ffffff 0 18%, transparent 19%),
    linear-gradient(135deg, var(--sidebar-primary), var(--sidebar-secondary));
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(232, 62, 140, 0.10);
}

#custom_html_sidebar h4 strong {
  color: inherit;
  font-weight: 900;
}

/* ==========================================================
   Listes
   ========================================================== */

#custom_html_sidebar ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
}

#custom_html_sidebar li {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ==========================================================
   Liens premium
   ========================================================== */

#custom_html_sidebar a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 11px 40px 11px 38px;
  color: var(--sidebar-text);
  font-size: 14px;
  line-height: 1.25;
  font-weight: 750;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(32, 32, 51, 0.08);
  border-radius: 13px;
  box-shadow: 0 8px 18px rgba(32, 32, 51, 0.04);
  transition:
    transform 0.22s ease,
    color 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

#custom_html_sidebar a::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  width: 9px;
  height: 9px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--sidebar-primary), var(--sidebar-secondary));
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(232, 62, 140, 0.09);
}

#custom_html_sidebar a::after {
  content: "›";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-52%);
  color: rgba(185, 31, 104, 0.55);
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  transition:
    transform 0.22s ease,
    color 0.22s ease;
}

#custom_html_sidebar a:hover {
  transform: translateY(-2px);
  color: var(--sidebar-primary-dark);
  background: #ffffff;
  border-color: rgba(232, 62, 140, 0.24);
  box-shadow: var(--sidebar-shadow-hover);
}

#custom_html_sidebar a:hover::after {
  transform: translate(3px, -52%);
  color: var(--sidebar-primary-dark);
}

#custom_html_sidebar a:focus-visible {
  outline: 3px solid rgba(232, 62, 140, 0.30);
  outline-offset: 3px;
}

/* Liens externes */
#custom_html_sidebar a[target="_blank"]::after {
  content: "↗";
  font-size: 14px;
  transform: translateY(-50%);
}

#custom_html_sidebar a[target="_blank"]:hover::after {
  transform: translate(2px, -52%);
}

/* ==========================================================
   Protection images éventuelles
   ========================================================== */

#custom_html_sidebar img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 14px;
}

/* ==========================================================
   Variante mobile
   ========================================================== */

@media (max-width: 768px) {
  #custom_html_sidebar {
    max-width: none;
    margin-bottom: 24px;
  }

  #custom_html_sidebar nav {
    padding: 18px;
    border-radius: 20px;
  }

  #custom_html_sidebar h4 {
    margin-top: 20px;
    padding: 11px 13px 11px 39px;
    font-size: 14px;
  }

  #custom_html_sidebar a {
    min-height: 42px;
    padding: 10px 36px 10px 36px;
    font-size: 14px;
  }
}

/* ==========================================================
   Variante très petit écran
   ========================================================== */

@media (max-width: 420px) {
  #custom_html_sidebar nav {
    padding: 15px;
  }

  #custom_html_sidebar h4 {
    border-radius: 12px;
  }

  #custom_html_sidebar a {
    border-radius: 12px;
  }
}

/* ==========================================================
   Accessibilité : réduction animations
   ========================================================== */

@media (prefers-reduced-motion: reduce) {
  #custom_html_sidebar *,
  #custom_html_sidebar *::before,
  #custom_html_sidebar *::after {
    transition: none !important;
  }
}

@media (max-width: 768px) {
.hyperhauth1 h1.title {font-size:11px!important;}
}