/* ================================================================
   HIGYLANG — higylang-overrides.css
   ================================================================ */

   SERVICE DETAILS — Layout OnePage adapté
   Sidebar navigation + zone de contenu détaillé
   ================================================================ */
.hl-svc-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: calc(var(--hl-hdr-h) + 1.5rem);
}

/* Liste de navigation des services */
.hl-svc-nav {
  background-color: var(--hl-surface);
  border: 1.5px solid var(--hl-border);
  border-radius: var(--hl-r-lg);
  padding: 0.5rem 1.25rem;
}
.hl-svc-nav a {
  display: block;
  padding: 0.75rem 0 0.75rem 1rem;
  border-left: 3px solid var(--hl-border);
  color: var(--hl-text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--hl-t), border-color var(--hl-t), padding-left var(--hl-t);
  line-height: 1.4;
}
.hl-svc-nav a + a {
  border-top: 1px solid var(--hl-border);
}
.hl-svc-nav a:hover {
  color: var(--hl-heading);
  border-color: var(--hl-accent);
  padding-left: 1.35rem;
}
.hl-svc-nav a.active {
  color: var(--hl-heading);
  font-weight: 700;
  border-color: var(--hl-accent);
}

/* Bloc teaser sidebar */
.hl-svc-teaser {
  background-color: var(--hl-accent-lt);
  border-radius: var(--hl-r-lg);
  padding: 1.35rem;
  border: 1.5px solid var(--hl-border);
}
.hl-svc-teaser h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--hl-heading);
  margin-bottom: 0.5rem;
}
.hl-svc-teaser p {
  font-size: 0.875rem;
  color: var(--hl-text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Zone de contenu détaillé */
.hl-svc-detail__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--hl-r-lg);
  margin-bottom: 1.75rem;
  display: block;
}
.hl-svc-detail__img-ph {
  aspect-ratio: 16/9;
  margin-bottom: 1.75rem;
}

.hl-svc-detail__title {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--hl-heading);
  margin-bottom: 0.85rem;
  line-height: 1.32;
}

.hl-svc-detail__body {
  font-size: 0.9375rem;
  color: var(--hl-text-muted);
  line-height: 1.75;
}
.hl-svc-detail__body p { margin-bottom: 1rem; }
.hl-svc-detail__body p:last-child { margin-bottom: 0; }

.hl-svc-detail__list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.hl-svc-detail__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9275rem;
  color: var(--hl-text-muted);
}
.hl-svc-detail__list li .bi {
  color: var(--hl-accent);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.22rem;
}

@media (max-width: 991.98px) {
  .hl-svc-sidebar { position: static; }
}


/* ================================================================
   PAGES LÉGALES — Contenu structuré
   ================================================================ */
.hl-legal__body {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--hl-text);
}
.hl-legal__body h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--hl-heading);
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  padding-bottom: 0.4rem;
  border-bottom: 1.5px solid var(--hl-border);
}
.hl-legal__body h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--hl-heading);
  margin-top: 1.25rem;
  margin-bottom: 0.4rem;
}
.hl-legal__body p  { margin-bottom: 0.85rem; }
.hl-legal__body ul {
  padding-left: 1.25rem;
  margin-bottom: 0.85rem;
}
.hl-legal__body ul li { margin-bottom: 0.3rem; }
.hl-legal__body a  { color: var(--hl-accent-dk); text-decoration: underline; }
.hl-legal__body a:hover { color: var(--hl-accent); }
.hl-legal__body strong { color: var(--hl-heading); font-weight: 600; }

.hl-legal__updated {
  font-size: 0.8rem;
  color: var(--hl-text-muted);
  margin-bottom: 2rem;
  padding: 0.6rem 1rem;
  background-color: var(--hl-bg-alt);
  border-radius: var(--hl-r);
  border-left: 3px solid var(--hl-accent);
  display: inline-block;
}

/* ================================================================
   SECTION SERVICES DÉTAILS — Onglets gauche + contenu droite
   ================================================================ */
.hl-tabs-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hl-tab-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1rem;
  border-radius: var(--hl-r-lg);
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background-color var(--hl-t), border-color var(--hl-t);
  text-decoration: none;
  background: transparent;
  width: 100%;
  text-align: left;
}
.hl-tab-item:hover {
  background-color: var(--hl-accent-lt);
  border-color: var(--hl-border);
}
.hl-tab-item--active {
  background-color: var(--hl-accent-lt);
  border-color: var(--hl-accent);
}

.hl-tab-item__ico {
  width: 44px;
  height: 44px;
  border-radius: var(--hl-r);
  background-color: var(--hl-bg-accent);
  color: var(--hl-accent-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  transition: background-color var(--hl-t), color var(--hl-t);
}
.hl-tab-item--active .hl-tab-item__ico,
.hl-tab-item:hover .hl-tab-item__ico {
  background-color: var(--hl-accent);
  color: #fff;
}

.hl-tab-item__title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--hl-heading);
  margin-bottom: 0.15rem;
  line-height: 1.3;
}
.hl-tab-item__sub {
  font-size: 0.825rem;
  color: var(--hl-text-muted);
  line-height: 1.45;
  margin: 0;
}

/* Panneau contenu droite */
.hl-tab-panel {
  display: none;
  animation: hl-fade-in 0.28s ease;
}
.hl-tab-panel--active { display: block; }

@keyframes hl-fade-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hl-tab-panel__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--hl-r-lg);
  margin-bottom: 1.5rem;
  display: block;
}
.hl-tab-panel__img-ph {
  aspect-ratio: 16/9;
  border-radius: var(--hl-r-lg);
  margin-bottom: 1.5rem;
}

.hl-tab-panel__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--hl-heading);
  margin-bottom: 0.85rem;
}
.hl-tab-panel__desc {
  font-size: 0.9375rem;
  color: var(--hl-text-muted);
  line-height: 1.72;
  margin-bottom: 1.25rem;
}
.hl-tab-panel__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.hl-tab-panel__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.9rem;
  color: var(--hl-text-muted);
}
.hl-tab-panel__list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background-color: var(--hl-accent);
  flex-shrink: 0;
  margin-top: 0.45rem;
}

@media (max-width: 991.98px) {
  .hl-tabs-nav { flex-direction: row; flex-wrap: wrap; gap: 0.5rem; }
  .hl-tab-item { flex: 1 1 calc(50% - 0.5rem); padding: 0.85rem; }
  .hl-tab-item__sub { display: none; }
}
@media (max-width: 575.98px) {
  .hl-tab-item { flex: 1 1 100%; }
}

/* ================================================================
   LIVRES — Fix pagination + couvertures uniformes
   ================================================================ */

/* Pagination descendue d'1rem sous les couvertures */
.hl-swiper-livres.swiper { padding-bottom: 3.5rem; }
.hl-swiper-livres .swiper-pagination { bottom: 0.5rem; }

/* Couvertures — ratio 3/4 strict, recadrage centré haut */
.hl-card-livre__cover {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: var(--hl-bg-alt);
  position: relative;
}
.hl-card-livre__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.45s ease;
}
.hl-card-livre:hover .hl-card-livre__cover img { transform: scale(1.04); }


/* ================================================================
   MODALE LIVRE
   ================================================================ */
.hl-modal-livre .modal-content {
  border-radius: var(--hl-r-lg);
  border: 1.5px solid var(--hl-border);
  overflow: hidden;
}
.hl-modal-livre .modal-header {
  border-bottom: 1px solid var(--hl-border);
  padding: 1rem 1.25rem 0.85rem;
  background-color: var(--hl-bg-alt);
}
.hl-modal-livre .modal-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--hl-heading);
  line-height: 1.3;
}
.hl-modal-livre .modal-body { padding: 1.5rem; }
.hl-modal-livre .btn-close { flex-shrink: 0; }

.hl-modal-livre__cover {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--hl-r-lg);
  box-shadow: var(--hl-sh-lg);
  display: block;
}
.hl-modal-livre__cover-ph {
  aspect-ratio: 3 / 4;
  border-radius: var(--hl-r-lg);
}

.hl-modal-livre__year {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--hl-accent-dk);
  display: block;
  margin-bottom: 0.3rem;
}
.hl-modal-livre__authors {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--hl-heading);
  margin-bottom: 0.2rem;
}
.hl-modal-livre__isbn {
  font-size: 0.75rem;
  color: var(--hl-text-muted);
  margin-bottom: 1rem;
}
.hl-modal-livre__desc {
  font-size: 0.9rem;
  color: var(--hl-text-muted);
  line-height: 1.72;
  margin-bottom: 1.25rem;
  flex: 1;
}
.hl-modal-livre__buy-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--hl-heading);
  margin-bottom: 0.5rem;
  display: block;
}
.hl-modal-livre__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ================================================================
   LIVRES — Boutons de navigation gauche / droite
   ================================================================ */
.hl-swiper-wrap--navbtn {
  position: relative;
  padding-left:  2.5rem;
  padding-right: 2.5rem;
}

.hl-swiper-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-60%); /* remonte légèrement au-dessus de la pagination */
  z-index: 10;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--hl-border);
  background-color: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--hl-accent-dk);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--hl-t), border-color var(--hl-t), color var(--hl-t);
  box-shadow: var(--hl-sh);
}
.hl-swiper-nav:hover {
  background-color: var(--hl-accent);
  border-color: var(--hl-accent);
  color: #fff;
}
.hl-swiper-nav--prev { left:  0; }
.hl-swiper-nav--next { right: 0; }

@media (max-width: 479.98px) {
  /* Sur mobile, les boutons passent sous le carrousel */
  .hl-swiper-wrap--navbtn {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 3.5rem;
  }
  .hl-swiper-nav {
    top: auto;
    bottom: 0;
    transform: none;
  }
  .hl-swiper-nav--prev { left: calc(50% - 48px); }
  .hl-swiper-nav--next { right: calc(50% - 48px); }
}

/* ================================================================
   SPÉCIALITÉS — Feature cards : texte gauche, image droite
   ================================================================ */
.hl-svc-card {
  display: flex;
  align-items: stretch;
  border-radius: var(--hl-r-lg);
  overflow: hidden;
  border: 1.5px solid var(--hl-border);
  min-height: 420px;
  margin-bottom: 1.5rem;
  background-color: var(--hl-surface);
  box-shadow: var(--hl-sh);
  transition: box-shadow var(--hl-t);
}
.hl-svc-card:hover { box-shadow: var(--hl-sh-lg); }

/* Texte gauche */
.hl-svc-card__text {
  flex: 0 0 45%;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}

.hl-svc-card__title {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 700;
  color: var(--hl-heading);
  margin: 0;
  line-height: 1.25;
}

.hl-svc-card__text .hl-article__body {
  font-size: 0.9375rem;
  color: var(--hl-text-muted);
  line-height: 1.72;
}
.hl-svc-card__text .hl-article__body strong {
  color: var(--hl-heading);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

/* Image droite */
.hl-svc-card__img {
  flex: 0 0 55%;
  position: relative;
  overflow: hidden;
}
.hl-svc-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}
.hl-svc-card:hover .hl-svc-card__img img { transform: scale(1.03); }

/* Overlay léger */
.hl-svc-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0.15) 0%,
    transparent 60%
  );
}

/* Placeholder si pas d'image */
.hl-svc-card__img .hl-ph {
  height: 100%;
  border-radius: 0;
  border: none;
}

/* Responsive */
@media (max-width: 767.98px) {
  .hl-svc-card {
    flex-direction: column;
    min-height: auto;
  }
  .hl-svc-card__text { flex: none; padding: 1.75rem 1.25rem; }
  .hl-svc-card__img  { flex: none; height: 220px; }
}

/* Spécialités — card dans panneau onglet */
.hl-tab-panel .hl-svc-card {
  border: none;
  box-shadow: none;
  border-radius: var(--hl-r-lg);
  overflow: hidden;
  min-height: 360px;
}
.hl-tab-panel .hl-svc-card__text {
  flex: 0 0 50%;
  padding: 2rem 1.75rem;
}
.hl-tab-panel .hl-svc-card__img {
  flex: 0 0 50%;
}

/* Blog home — sidebar cards plus grandes */
.hl-card-blog-sm__img {
  width: 96px;
  height: 76px;
}
.hl-card-blog-sm__title {
  font-size: 0.9rem;
}
.hl-card-blog-sm {
  padding: 1rem 0;
  gap: 1rem;
}

/* Blog home — sidebar cards : images +50% */
.hl-card-blog-sm__img {
  width: 108px;
  height: 87px;
}

/* Blog home — sidebar cards : images +50% */
.hl-card-blog-sm__img {
  width: 150px;
  height: 120px;
}

/* Blog home — sidebar cards : images +50% */
.hl-card-blog-sm__img {
  width: 160px;
  height: 120px;
}

/* Page blog — tailles typographie cards */
.hl-card-blog__title a {
  font-size: 0.875rem;
}
.hl-card-blog__meta time {
  font-size: 0.72rem;
}
.hl-card-blog__meta .hl-badge {
  font-size: 0.62rem;
  padding: 0.18rem 0.5rem;
}

/* Page blog — tailles typographie cards */
.hl-card-blog__title a {
  font-size: 1.1rem;
}
.hl-card-blog__meta time {
  font-size: 0.9rem;
}
.hl-card-blog__meta .hl-badge {
  font-size: 0.8rem;
  padding: 0.18rem 0.5rem;
}

/* Logo — Chantal discret / Higy-Lang dominant (corrige le bloc initial) */
.hl-logo__text {
  font-weight: 300;
  letter-spacing: 0.02em;
}
.hl-logo__text strong {
  font-weight: 800;
  font-size: 1.08em;
}
.hl-header--hero .hl-logo__text        { color: rgba(255,255,255,0.65); }
.hl-header--hero .hl-logo__text strong { color: #fff; }
.hl-header:not(.hl-header--hero) .hl-logo__text        { color: var(--hl-text-muted); }
.hl-header:not(.hl-header--hero) .hl-logo__text strong { color: var(--hl-heading); }

/* Footer — Chantal discret / Higy-Lang dominant */
.hl-footer__brand-name {
  font-weight: 300;
  color: var(--hl-text-muted);
}
.hl-footer__brand-name strong {
  font-weight: 800;
  font-size: 1.08em;
  color: var(--hl-heading);
}

/* ================================================================
   HEADER — Solid mauve foncé permanent (2026-04-06)
   Simple, robuste, lisible sur toutes les pages et sections
   ================================================================ */
.hl-header {
  background-color: rgba(27, 10, 56, 0.96);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.hl-header .nav-link       { color: rgba(255,255,255,0.82); }
.hl-header .nav-link:hover { color: #fff; }
.hl-header .nav-link.active { color: #d4a8ef; }
.hl-header .hl-logo__text        { color: rgba(255,255,255,0.70); }
.hl-header .hl-logo__text strong { color: #fff; }
.hl-hamburger__bar { background-color: #fff; }

/* ================================================================
   HEADER — Mauve moyen, texte sombre (2026-04-06)
   ================================================================ */
.hl-header {
  background-color: rgba(157, 131, 203, 0.96);
  box-shadow: 0 2px 20px rgba(59,31,110,0.20);
}
.hl-header .nav-link        { color: #2c1054; }
.hl-header .nav-link:hover  { color: #fff; }
.hl-header .nav-link.active { color: #fff; }
.hl-header .hl-logo__text        { color: rgba(44, 16, 84, 0.70); }
.hl-header .hl-logo__text strong { color: #2c1054; }
.hl-header .hl-hamburger__bar    { background-color: #2c1054; }
.hl-header .hl-btn--nav {
  border-color: #2c1054;
  color: #2c1054;
}
.hl-header .hl-btn--nav:hover {
  background-color: #2c1054;
  color: #fff;
}

/* Header — fond mauve plus clair (2026-04-06) */
.hl-header {
  background-color: rgba(197, 167, 250, 0.96);
}

/* Header — fond mauve encore plus clair (2026-04-06) */
.hl-header {
  background-color: rgba(220, 200, 255, 0.96);
}

/* Sidebar auteur — icônes contact harmonisées palette mauve */
.hl-widget-author__social a {
  background-color: var(--hl-accent-lt);
  border-color: var(--hl-accent);
  color: var(--hl-accent-dk);
}
.hl-widget-author__social a:hover {
  background-color: var(--hl-accent);
  border-color: var(--hl-accent);
  color: #fff;
  box-shadow: 0 4px 12px rgba(123,79,168,0.35);
}

/* Header — fond encore plus clair (2026-04-07) */
.hl-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  background-color: rgba(230, 215, 255, 0.92);
}

/* Hero overlay — plus lumineux (2026-04-07) */
.hl-hero__overlay {
  background: linear-gradient(
    135deg,
    rgba(43, 17, 90, 0.55) 0%,
    rgba(72, 38, 128, 0.40) 45%,
    rgba(155, 109, 189, 0.15) 100%
  );
}

/* Hero overlay — encore plus lumineux (2026-04-07) */
.hl-hero__overlay {
  background: linear-gradient(
    135deg,
    rgba(43, 17, 90, 0.35) 0%,
    rgba(72, 38, 128, 0.22) 45%,
    rgba(155, 109, 189, 0.08) 100%
  );
}

/* ================================================================
   BLOG2 — Harmonisation vignettes (2026-04-07)
   ================================================================ */

/* 1. Image standardisée + marge basse */
.hl-card-blog__img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
  margin-bottom: 0.2rem;
}

/* 2. Badge catégorie + date — plus petits et contrastés */
.hl-card-blog__meta .hl-badge {
  font-size: 0.65rem;
  padding: 0.15em 0.55em;
  background-color: var(--hl-accent);
  color: #fff;
}
.hl-card-blog__meta time {
  font-size: 0.65rem;
  color: var(--hl-text-muted);
}

/* 3. Titre — weight plus soutenu */
.hl-card-blog__title a {
  font-weight: 700;
  color: var(--hl-heading);
}

/* 4. Lien Lire l'article — plus contrasté */
.hl-card-blog .hl-link-more {
  font-weight: 700;
  color: var(--hl-accent-dk);
}
.hl-card-blog .hl-link-more:hover {
  color: var(--hl-accent);
}

/* Blog2 — marge au dessus du titre */
.hl-card-blog__meta {
  margin-bottom: 0.2rem;
}

/* Blog — placeholder même hauteur que l'image (2026-04-07) */
.hl-card-blog__img .hl-ph--blog {
  aspect-ratio: 16/9;
  min-height: unset;
}

/* Blog — interligne titre */
.hl-card-blog__title {
  line-height: 1.3;
}

/* ================================================================
   BLOG CARDS — Option A : image bg + overlay (2026-04-07)
   ================================================================ */

/* Image en position relative pour permettre l'overlay */
.hl-card-blog__img {
  position: relative;
  display: block;
  overflow: hidden;
}

/* Badge + méta sur l'image en overlay bas */
.hl-card-blog__img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.75rem 1rem 0.5rem;
  background: linear-gradient(
    to top,
    rgba(43, 17, 90, 0.88) 0%,
    rgba(43, 17, 90, 0.55) 60%,
    transparent 100%
  );
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hl-card-blog__img-overlay .hl-badge {
  font-size: 0.62rem;
  background-color: var(--hl-accent);
  color: #fff;
}

.hl-card-blog__img-overlay time {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.80);
}

/* Titre dans le body — plus soutenu */
.hl-card-blog__title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.4rem;
}

/* Masquer les méta du body — elles sont maintenant sur l'image */
.hl-card-blog__meta {
  display: none;
}

/* Sidebar — btn Tous les articles (2026-04-07) */
.hl-widget .hl-link-more {
  display: inline-flex;
  margin-top: 0.75rem;
  font-weight: 700;
  color: var(--hl-accent-dk);
}

/* ================================================================
   BANNIÈRE COOKIES (2026-04-07)
   ================================================================ */
.hl-cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 2rem);
  max-width: 720px;
  background-color: var(--hl-surface);
  border: 1.5px solid var(--hl-border);
  border-radius: var(--hl-r-lg);
  box-shadow: var(--hl-sh-lg);
  padding: 1.25rem 1.5rem;
}

.hl-cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hl-cookie-banner__text {
  flex: 1;
  font-size: 0.875rem;
  color: var(--hl-text-muted);
  margin: 0;
  min-width: 200px;
}

.hl-cookie-banner__text a {
  color: var(--hl-accent-dk);
  text-decoration: underline;
}

.hl-cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

@media (max-width: 575.98px) {
  .hl-cookie-banner__inner  { flex-direction: column; align-items: stretch; }
  .hl-cookie-banner__actions { flex-direction: column; }
}

/* À propos — image alignée en haut (2026-04-09) */
#about .row {
  align-items: flex-start !important;
}
