/* ============================================================
   HC Studio — Design System
   Toutes les classes préfixées .hc- | Scoping : .hc-studio
   ============================================================ */

/* ─── Scrollbar gutter stable — évite le layout shift ───────── */
html { scrollbar-gutter: stable; }

/* ─── Variables ─────────────────────────────────────────────── */
:root {
  --hc-bg:   #FBF7F2;
  --hc-ww:   #FFFDF9;
  --hc-fg:   #1A1714;
  --hc-fg2:  #6B655C;
  --hc-fg3:  #A9A29A;
  --hc-te:   #C4704B;
  --hc-te2:  #D4885E;
  --hc-sd:   #EBE4DB;
  --hc-sd2:  #F5F0EA;
  --hc-sage: #8FA68A;
  --hc-bl:   #F2DDD2;
  --hc-lv:   #DDD5E8;
  --hc-warm: #FFF6EF;
}

/* ─── Reset (scoped) ─────────────────────────────────────────── */
/* Reset uniquement les sections du plugin, pas toute la page */
.hc-hero *, .hc-mood *, .hc-crl *, .hc-explore *,
.hc-stats *, .hc-ups *, .hc-jn *, .hc-nav *, .hc-bottom-nav *,
.hc-rit *, .hc-footer *, .hc-cat-header *,
.hc-player *, .hc-exo-content * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hc-studio {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--hc-bg);
  color: var(--hc-fg);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

/* min-height 100vh uniquement sur les templates pleine page (body) */
body.hc-studio { min-height: 100vh; }

/* ─── Animations globales ────────────────────────────────────── */
@keyframes hc-fu {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes hc-hero-in {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hc-pls {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

/* ─── Ritual d'ouverture ─────────────────────────────────────── */
.hc-rit {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--hc-bg), var(--hc-bl) 50%, var(--hc-sd2));
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: hc-ro 3.4s ease-in-out forwards;
}

@keyframes hc-ro {
  0%, 68% { opacity: 1; }
  100%     { opacity: 0; pointer-events: none; }
}

.hc-rit-t1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4.5vw, 2.2rem);
  font-style: italic;
  color: var(--hc-fg);
  opacity: 0;
  animation: hc-rt1 3.4s ease-in-out forwards;
}

@keyframes hc-rt1 {
  0%   { opacity: 0; transform: translateY(10px); }
  12%  { opacity: 1; transform: translateY(0); }
  42%  { opacity: 1; }
  52%  { opacity: 0; }
  100% { opacity: 0; }
}

.hc-rit-t2 {
  font-size: clamp(.82rem, 2vw, .95rem);
  font-weight: 300;
  color: var(--hc-fg2);
  opacity: 0;
  position: absolute;
  animation: hc-rt2 3.4s ease-in-out forwards;
}

@keyframes hc-rt2 {
  0%, 48% { opacity: 0; transform: translateY(8px); }
  60%     { opacity: 1; transform: translateY(0); }
  85%     { opacity: 1; }
  100%    { opacity: 0; }
}

/* ─── Navigation ─────────────────────────────────────────────── */
.hc-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 28px;
  height: 58px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(235, 228, 219, .6);
}

/* Logo */
.hc-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.hc-nav-logo img { height: 34px; width: auto; display: block; }

/* Menu desktop centré */
.hc-nav-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.hc-nav-menu li a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 13px;
  border-radius: 20px;
  text-decoration: none;
  color: var(--hc-fg2);
  font-size: .78rem;
  font-weight: 450;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.hc-nav-menu li a:hover {
  background: var(--hc-sd2);
  color: var(--hc-fg);
}
.hc-nav-menu li a.hc-nav-active {
  background: var(--hc-sd);
  color: var(--hc-fg);
  font-weight: 500;
}
.hc-nm-emoji { font-size: .85rem; line-height: 1; }

/* Droite */
.hc-nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

/* Avatar */
.hc-na {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hc-te2), var(--hc-bl));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
}

/* Bottom nav — caché par défaut, visible sur mobile */
.hc-bottom-nav { display: none; }

/* Classes rétro-compat (hc-n-back utilisé dans anciens templates) */
.hc-nl { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 600; color: var(--hc-fg); }
.hc-nl span { color: var(--hc-te); }
.hc-nr { display: flex; align-items: center; gap: 8px; }
.hc-ns {
  font-size: .65rem; font-weight: 700; color: #E65100;
  background: linear-gradient(135deg, #FFF3E0, #FFE0B2);
  padding: 4px 10px; border-radius: 20px;
  border: 1px solid rgba(230, 81, 0, .08);
}
.hc-n-back { display: flex; align-items: center; gap: 6px; text-decoration: none; color: var(--hc-fg2); font-size: .8rem; font-weight: 400; transition: color .3s; }
.hc-n-back:hover { color: var(--hc-te); }
.hc-n-back svg { width: 16px; height: 16px; }

/* ─── Section headers ────────────────────────────────────────── */
.hc-shd {
  padding: 0;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hc-stl {
  font-size: .6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--hc-te);
  margin-bottom: 2px;
}

.hc-sh2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -.02em;
}

.hc-shd a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  color: var(--hc-te);
  font-weight: 500;
  text-decoration: none;
  padding: 6px 14px;
  background: rgba(196, 112, 75, .08);
  border-radius: 50px;
  transition: all .3s;
}

.hc-shd a:hover {
  background: rgba(196, 112, 75, .15);
  gap: 8px;
}

/* Center variant for section headers */
.hc-shd-center {
  justify-content: center;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* CTA link styles for prominent action links */
.hc-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(196, 112, 75, .08);
  transition: all .3s;
}

.hc-cta-link:hover {
  background: rgba(196, 112, 75, .15);
  transform: translateX(2px);
}

/* ─── Carousel ───────────────────────────────────────────────── */
.hc-crl {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 6px;
  scrollbar-width: none;
}

.hc-crl::-webkit-scrollbar { display: none; }
.hc-crl > * { scroll-snap-align: start; flex-shrink: 0; }
.hc-crl-end { width: 16px; flex-shrink: 0; }

/* Carousel card desktop width constraint */
.hc-crl .hc-cd {
  width: 320px;
}

/* ─── Fonds alternés ─────────────────────────────────────────── */
.hc-bg-warm  { background: var(--hc-ww); }
.hc-bg-cream { background: var(--hc-bg); }

/* ============================================================
   HERO
   ============================================================ */
.hc-hero {
  padding: 32px 28px 28px;
  background: linear-gradient(160deg, var(--hc-ww) 0%, var(--hc-bl) 30%, var(--hc-sd) 60%, rgba(181, 204, 176, .25) 100%);
  position: relative;
  overflow: hidden;
}

.hc-hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -8%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 112, 75, .06), transparent 70%);
  pointer-events: none;
}

.hc-hero-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 22px;
  animation: hc-fu .6s ease-out;
}

.hc-studio .hc-hero-g h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.12;
  margin-bottom: 4px;
}

.hc-studio .hc-hero-g h1 em {
  font-style: italic;
  color: var(--hc-te);
}

.hc-studio .hc-hero-g > p {
  color: var(--hc-fg2);
  font-size: .85rem;
  font-weight: 300;
}

.hc-hero-q {
  max-width: 220px;
  text-align: right;
  padding: 10px 14px;
  background: rgba(255, 255, 255, .5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .6);
  animation: hc-fu .7s ease-out .1s both;
}

.hc-studio .hc-hero-q p {
  font-family: 'Playfair Display', serif;
  font-size: .78rem;
  font-style: italic;
  color: var(--hc-fg);
  line-height: 1.5;
  margin-bottom: 2px;
}

.hc-studio .hc-hero-q small {
  font-size: .6rem;
  color: var(--hc-fg3);
}

/* Hero cards 40/30/30 */
.hc-hero-cards {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr;
  gap: 12px;
}

/* Carte Live */
.hc-hlive {
  background: linear-gradient(135deg, var(--hc-fg) 0%, #3D3832 50%, var(--hc-fg) 100%);
  border-radius: 18px;
  padding: 28px 26px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all .4s cubic-bezier(.2, .8, .2, 1);
  animation: hc-hero-in .6s ease-out both;
  animation-delay: calc(var(--stagger, 0) * 0.1s);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  color: white;
  border: 1px solid rgba(255, 255, 255, .2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 8px 32px rgba(0, 0, 0, .1);
}

.hc-hlive:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 28px 72px rgba(0, 0, 0, .16);
}

.hc-hlive::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 112, 75, .2), transparent 70%);
}

.hc-hlive-top { position: relative; z-index: 2; }

.hc-hlive-dt {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
}

.hc-hlive-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF6B5A;
  box-shadow: 0 0 8px rgba(255, 107, 90, .6);
  animation: hc-pls 2s infinite;
}

.hc-hlive-dt span {
  font-size: .58rem;
  font-weight: 600;
  color: var(--hc-te2);
  text-transform: uppercase;
  letter-spacing: .12em;
}

.hc-studio .hc-hlive h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.25;
}

.hc-hlive-date {
  font-size: .88rem;
  color: rgba(255, 255, 255, .7);
  font-weight: 300;
  margin-bottom: 2px;
}

.hc-hlive-cntd {
  font-size: .72rem;
  font-weight: 500;
  color: var(--hc-te2);
  margin-bottom: 0;
}

.hc-hlive-bot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.hc-hlive-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--hc-te);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: .78rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
}

.hc-hlive-btn:hover {
  background: var(--hc-te2);
  transform: translateY(-1px);
}

.hc-hlive-ppl {
  display: none;
  align-items: center;
  gap: 4px;
  font-size: .62rem;
  color: rgba(255, 255, 255, .4);
}

.hc-hlive-ppl-dots { display: flex; }

.hc-hlive-ppl-dots span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--hc-fg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .5rem;
  margin-left: -5px;
}

.hc-hlive-ppl-dots span:nth-child(1) { background: linear-gradient(135deg, var(--hc-bl), var(--hc-te2)); z-index: 3; }
.hc-hlive-ppl-dots span:nth-child(2) { background: linear-gradient(135deg, var(--hc-lv), #C0B0D0);      z-index: 2; }
.hc-hlive-ppl-dots span:nth-child(3) { background: linear-gradient(135deg, #D0E0D0, var(--hc-sage));    z-index: 1; }

/* Carte Nouveauté */
.hc-hnew {
  background: rgba(255, 255, 255, .8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  transition: all .4s cubic-bezier(.2, .8, .2, 1);
  animation: hc-hero-in .6s ease-out both;
  animation-delay: calc(var(--stagger, 0) * 0.1s);
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .08), inset 0 1px 0 rgba(255, 255, 255, .4);
}

.hc-hnew:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 28px 72px rgba(0, 0, 0, .1);
  background: rgba(255, 255, 255, .92);
}

.hc-hnew-img {
  flex: 1;
  min-height: 120px;
  background: linear-gradient(135deg, var(--hc-bl), var(--hc-lv));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 -2px 8px rgba(0, 0, 0, .1);
}

/* Images + overlays pour chaque card nouvelle */
.hc-hero-cards > .hc-hnew:nth-child(2) .hc-hnew-img {
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hc-hero-cards > .hc-hnew:nth-child(2) .hc-hnew-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 167, 232, .35), rgba(143, 127, 216, .45));
  pointer-events: none;
}

.hc-hero-cards > .hc-hnew:nth-child(3) .hc-hnew-img {
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hc-hero-cards > .hc-hnew:nth-child(3) .hc-hnew-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 213, 186, .35), rgba(123, 196, 163, .45));
  pointer-events: none;
}

.hc-hnew-play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .12), inset 0 1px 0 rgba(255, 255, 255, .5);
  transition: all .3s cubic-bezier(.2, .8, .2, 1);
  position: relative;
  z-index: 2;
}

.hc-hnew:hover .hc-hnew-play {
  transform: scale(1.12);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .16), inset 0 1px 0 rgba(255, 255, 255, .5);
}
.hc-hnew-play svg { margin-left: 2px; color: var(--hc-te); }

.hc-hnew-lbl {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--hc-te);
  color: #fff;
  padding: 3px 9px;
  border-radius: 20px;
  font-size: .52rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  z-index: 2;
}

.hc-hnew-dur {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(4px);
  padding: 2px 9px;
  border-radius: 20px;
  font-size: .65rem;
  color: var(--hc-fg2);
  z-index: 2;
}

.hc-hnew-nfo { padding: 16px 18px; }

.hc-hnew-cat {
  display: inline-block;
  background: rgba(143, 166, 138, .15);
  color: #5A7A55;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: .55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 6px;
}

.hc-studio .hc-hnew-nfo h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 3px;
  line-height: 1.25;
  letter-spacing: -.01em;
}

.hc-studio .hc-hnew-nfo p {
  color: var(--hc-fg2);
  font-size: .75rem;
  font-weight: 300;
  line-height: 1.45;
}

.hc-hnew-foot { padding: 0 18px 14px; margin-top: auto; }

.hc-hnew-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--hc-te);
  font-weight: 500;
  font-size: .78rem;
  text-decoration: none;
  transition: gap .3s;
}

.hc-hnew-btn:hover { gap: 9px; }

/* ============================================================
   MOOD
   ============================================================ */
.hc-mood {
  padding: 0;
  background: var(--hc-ww);
}

.hc-mood-pad { padding: 48px 0; }

.hc-mood-title {
  text-align: center;
  padding: 0 28px;
  margin-bottom: 18px;
}

.hc-studio .hc-mood-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 500;
  letter-spacing: -.02em;
  margin-bottom: 2px;
}

.hc-studio .hc-mood-title p {
  color: var(--hc-fg2);
  font-size: .8rem;
  font-weight: 300;
}

.hc-mood-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 24px 0 0 28px;
  margin-bottom: 24px;
}

.hc-mv {
  flex-shrink: 0;
  width: 140px;
  cursor: pointer;
  transition: all .3s;
  text-align: center;
}

.hc-mv:hover { transform: translateY(-4px); }

.hc-mv.active .hc-mv-img {
  border-color: var(--hc-te);
  box-shadow: 0 0 0 5px rgba(196, 112, 75, .25);
  transform: translateY(-4px);
}

.hc-mv-img {
  width: 140px;
  height: 140px;
  border-radius: 18px;
  border: 2.5px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  margin-bottom: 10px;
}

.hc-mv-lbl {
  font-size: .85rem;
  font-weight: 500;
  color: var(--hc-fg2);
  transition: color .3s;
  line-height: 1.2;
  max-width: 140px;
}
}

.hc-mv.active .hc-mv-lbl {
  color: var(--hc-te);
  font-weight: 700;
}

/* Mood images + gradients fallback */
.hc-mv-img {
  background-size: cover;
  background-position: center;
  background-image: var(--mood-bg);
}

.hc-mv1 .hc-mv-img { background-color: #EAD5CA; }
.hc-mv2 .hc-mv-img { background-color: #D5D8E8; }
.hc-mv3 .hc-mv-img { background-color: #D8D0E0; }
.hc-mv4 .hc-mv-img { background-color: #E8CCCC; }
.hc-mv5 .hc-mv-img { background-color: #F0E8C8; }
.hc-mv6 .hc-mv-img { background-color: #D0DCD4; }
.hc-mv7 .hc-mv-img { background-color: #F0D8D0; }

/* Mood results */
.hc-mood-res {
  display: none;
  animation: hc-mfa .4s cubic-bezier(.2, .8, .2, 1);
  padding: 0 28px;
}

.hc-mood-res.hc-vis { display: block; }

@keyframes hc-mfa {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hc-mood-msg {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hc-mood-msg-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hc-bl), var(--hc-te2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.hc-studio .hc-mood-msg p {
  color: var(--hc-fg2);
  font-size: .8rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
}

.hc-studio .hc-mood-msg strong {
  font-weight: 500;
  font-style: normal;
  color: var(--hc-fg);
}

.hc-mood-rg {
  display: flex;
  justify-content: center;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 12px 28px 12px 28px;
  margin-top: 16px;
}

.hc-mood-rg::-webkit-scrollbar { display: none; }

/* Mood result cards */
.hc-mrc {
  flex-shrink: 0;
  width: 260px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .08);
  cursor: pointer;
  transition: all .35s cubic-bezier(.2, .8, .2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .06);
}

.hc-mrc:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 56px rgba(0, 0, 0, .14);
  border-color: rgba(0, 0, 0, .12);
}

.hc-mrc-img {
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
  background-image: url('https://www.studio.happycreativity.fr/wp-content/uploads/2026/01/Ce-dont-jai-besoin-Tristesse-.jpg');
  background-blend-mode: multiply;
}

.hc-mrc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .25));
  pointer-events: none;
}

.hc-mrc-tin {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hc-mrc-em {
  font-size: 1.9rem;
  display: block;
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .15);
}

.hc-mrc-tx {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .78rem;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .2);
  font-weight: 500;
  line-height: 1.3;
}

.hc-mrc-bdg {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: .56rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 12px;
  z-index: 2;
}

.hc-mrc-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: .56rem;
  font-weight: 700;
  color: #fff;
  background: var(--hc-te);
  padding: 4px 10px;
  border-radius: 12px;
  text-transform: uppercase;
  z-index: 2;
}

.hc-mrc-i  { padding: 12px 14px; }
.hc-studio .hc-mrc-i h3 { font-size: .88rem; font-weight: 600; margin-bottom: 3px; letter-spacing: -.01em; }
.hc-mrc-i span { font-size: .62rem; color: var(--hc-fg3); line-height: 1.35; }

/* ============================================================
   CARD PAYSAGE — carousels
   ============================================================ */
.hc-cd {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--hc-sd);
  cursor: pointer;
  transition: all .4s cubic-bezier(.2, .8, .2, 1);
}

.hc-cd:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(0, 0, 0, .06);
}

.hc-cd-img {
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.hc-cd-tin  { text-align: center; }
.hc-cd-em   { font-size: 1.4rem; display: block; margin-bottom: 2px; }

.hc-cd-tx {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: .65rem;
  color: var(--hc-fg2);
}

.hc-cd-rk {
  position: absolute;
  top: 7px;
  left: 7px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--hc-fg);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .58rem;
  font-weight: 700;
}

.hc-cd-play {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
  transition: transform .3s;
  position: relative;
  z-index: 3;
}

.hc-cd:hover .hc-cd-play { transform: scale(1.08); }
.hc-cd-play svg { margin-left: 2px; color: var(--hc-te); }

.hc-cd-date {
  position: absolute;
  top: 7px;
  left: 7px;
  font-size: .55rem;
  font-weight: 500;
  color: #fff;
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(4px);
  padding: 2px 7px;
  border-radius: 8px;
}

.hc-cd-dur {
  position: absolute;
  bottom: 7px;
  right: 7px;
  font-size: .55rem;
  color: #fff;
  background: rgba(0, 0, 0, .35);
  backdrop-filter: blur(4px);
  padding: 2px 7px;
  border-radius: 8px;
}

.hc-cd-bdg {
  position: absolute;
  top: 7px;
  right: 7px;
  font-size: .5rem;
  font-weight: 600;
  color: #fff;
  background: rgba(0, 0, 0, .3);
  backdrop-filter: blur(4px);
  padding: 2px 7px;
  border-radius: 8px;
}

.hc-cd-i { padding: 10px 12px; }
.hc-studio .hc-cd-i h3 { font-size: .78rem; font-weight: 500; margin-bottom: 2px; }

.hc-cd-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hc-cd-meta span  { font-size: .58rem; color: var(--hc-fg3); }
.hc-cd-meta .hc-ht { color: #D4636F; font-weight: 600; }

/* Card background presets */
.hc-cb   { background: linear-gradient(145deg, var(--hc-bl),  #F5E4D8); }
.hc-clv  { background: linear-gradient(145deg, var(--hc-lv),  #E4DCF0); }
.hc-cgo  { background: linear-gradient(145deg, #F5ECD8, #EDE0C8); }
.hc-cbu  { background: linear-gradient(145deg, #D8E8E8, #C8D8D8); }
.hc-cpk  { background: linear-gradient(145deg, #FCE8EE, #F4D0DC); }
.hc-cbl2 { background: linear-gradient(145deg, var(--hc-bl),  var(--hc-lv)); }
.hc-csa2 { background: linear-gradient(145deg, #B5CCB0, #A0C0A0); }

/* Popular carousel card variant with image overlay */
.hc-cd-pop .hc-cd-img {
  background-blend-mode: multiply;
  background-size: cover;
  background-position: center;
}

.hc-cd-pop .hc-cd-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, .15), rgba(0, 0, 0, .25));
  pointer-events: none;
}

/* Ensure content stays above overlay */
.hc-cd-pop .hc-cd-rk {
  position: relative;
  z-index: 2;
}

.hc-cd-pop .hc-cd-dur {
  z-index: 2;
}

/* ============================================================
   RESSOURCES — Deux colonnes (PDFs + Playlists)
   ============================================================ */
.hc-studio .hc-rsrc {
  padding: 40px 40px !important;
  background: var(--hc-ww) !important;
}

.hc-studio .hc-rsrc-in {
  max-width: 1100px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 30px !important;
}

.hc-studio .hc-rb h2 {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.15rem !important;
  font-weight: 600 !important;
  margin-bottom: 12px !important;
  color: var(--hc-fg) !important;
}

.hc-studio .hc-ri {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 10px 12px !important;
  background: var(--hc-cr) !important;
  border-radius: 10px !important;
  border: 1px solid var(--hc-sd) !important;
  cursor: pointer !important;
  text-decoration: none !important;
  color: inherit !important;
  transition: all .3s !important;
  margin-bottom: 6px !important;
}

.hc-studio .hc-ri:hover {
  background: #fff !important;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .04) !important;
  transform: translateX(3px) !important;
}

.hc-studio .hc-ri-ic {
  width: 34px !important;
  height: 34px !important;
  border-radius: 8px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: .85rem !important;
  flex-shrink: 0 !important;
}

.hc-studio .hc-ri-pdf {
  background: linear-gradient(135deg, var(--hc-tl), var(--hc-te)) !important;
}

.hc-studio .hc-ri-sp {
  background: linear-gradient(135deg, #1DB954, #169C46) !important;
}

.hc-studio .hc-ri-d {
  flex: 1 !important;
}

.hc-studio .hc-ri-d h4 {
  font-size: .76rem !important;
  font-weight: 600 !important;
  color: var(--hc-fg) !important;
  margin-bottom: 1px !important;
}

.hc-studio .hc-ri-d span {
  font-size: .63rem !important;
  color: var(--hc-fg3) !important;
  font-weight: 300 !important;
}

.hc-studio .hc-smore-l {
  margin-top: 12px !important;
}

.hc-studio .hc-smore-l a {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  color: var(--hc-te) !important;
  font-weight: 500 !important;
  font-size: .76rem !important;
  text-decoration: none !important;
  padding: 6px 14px !important;
  background: rgba(196, 112, 75, .08) !important;
  border-radius: 50px !important;
  transition: all .3s !important;
}

.hc-studio .hc-smore-l a:hover {
  gap: 10px !important;
  background: rgba(196, 112, 75, .15) !important;
}

/* Max-width conteneur — Tous les shortcodes */
.hc-studio .hc-inner {
  max-width: 1100px !important;
  margin: 0 auto !important;
}

/* Mobile : 1 colonne */
@media (max-width: 768px) {
  .hc-studio .hc-rsrc {
    padding: 28px 20px !important;
  }

  .hc-studio .hc-rsrc-in {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
}

/* ============================================================
   EXPLORE — Grille catégories
   ============================================================ */
.hc-explore {
  padding: 48px 28px 48px;
}

.hc-explore-inner {
  max-width: 1100px !important;
  margin: 0 auto !important;
}

.hc-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hc-cat {
  border-radius: 14px;
  padding: 20px 16px;
  cursor: pointer;
  transition: all .35s;
  display: flex;
  flex-direction: column;
  min-height: 110px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: var(--hc-fg);
}

.hc-cat:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .06);
}

.hc-cat::after {
  content: '\2192';
  position: absolute;
  bottom: 14px;
  right: 16px;
  font-size: .8rem;
  color: rgba(0, 0, 0, .1);
  transition: all .3s;
}

.hc-cat:hover::after {
  color: rgba(0, 0, 0, .22);
  transform: translateX(2px);
}

.hc-cat-em  { font-size: 1.2rem; margin-bottom: 7px; }
.hc-studio .hc-cat h3  { font-size: .85rem; font-weight: 500; margin-bottom: 2px; }
.hc-cat-cnt { font-size: .62rem; color: var(--hc-fg2); }

/* Category gradients */
.hc-ct1 { background: linear-gradient(145deg, #FBE8DC, #F5DDD0); }
.hc-ct2 { background: linear-gradient(145deg, #F5E6C8, #EFDCB8); }
.hc-ct3 { background: linear-gradient(145deg, #FCE4EC, #F6D4E0); }
.hc-ct4 { background: linear-gradient(145deg, #D5E8E8, #CCE0E0); }
.hc-ct5 { background: linear-gradient(145deg, #DDD5E8, #D4CCE0); }
.hc-ct6 { background: linear-gradient(145deg, #E0ECE0, #D8E4D8); }

/* ============================================================
   STATS
   ============================================================ */
.hc-stats {
  padding: 40px 28px;
  border-top: 1px solid var(--hc-sd);
  border-bottom: 1px solid var(--hc-sd);
  background: var(--hc-bg);
}

.hc-stats-in {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto;
}

.hc-st     { text-align: center; }
.hc-st-n   { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 500; color: var(--hc-te); margin-bottom: 1px; }
.hc-st-l   { font-size: .6rem; color: var(--hc-fg3); }

/* ============================================================
   UPSELL
   ============================================================ */
.hc-ups {
  padding: 44px 28px 44px;
  max-width: 960px;
  margin: 0 auto;
}

.hc-ups-c {
  border-radius: 18px;
  padding: 34px;
  background: linear-gradient(135deg, var(--hc-bl), var(--hc-lv), rgba(181, 204, 176, .3));
  border: 1px solid rgba(255, 255, 255, .5);
  position: relative;
  overflow: hidden;
}

.hc-ups-c::after {
  content: '';
  position: absolute;
  top: -30%;
  left: -8%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .3), transparent 70%);
  pointer-events: none;
}

.hc-studio .hc-ups-c h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 4px;
  position: relative;
  z-index: 2;
}

.hc-studio .hc-ups-c p {
  color: var(--hc-fg2);
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 14px;
  max-width: 420px;
  position: relative;
  z-index: 2;
}

.hc-ups-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--hc-fg);
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .3s;
  position: relative;
  z-index: 2;
}

.hc-ups-btn:hover { background: var(--hc-te); }

/* ============================================================
   JEANNE
   ============================================================ */
.hc-jn {
  padding: 44px 28px 52px;
  max-width: 960px;
  margin: 0 auto;
}

.hc-jn-in {
  display: flex;
  align-items: center;
  gap: 18px;
}

.hc-jn-ph {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--hc-bl), var(--hc-te2));
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(196, 112, 75, .15);
  position: relative;
}

.hc-jn-ph::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px dashed var(--hc-sd);
}

.hc-jn-au {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .65rem;
  font-weight: 500;
  color: var(--hc-te);
  cursor: pointer;
  margin-bottom: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(196, 112, 75, .06);
  transition: all .3s;
}

.hc-jn-au:hover { background: rgba(196, 112, 75, .12); }

.hc-jn-q {
  font-size: .82rem;
  color: var(--hc-fg2);
  font-weight: 300;
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 3px;
}

.hc-jn-sig {
  font-family: 'Playfair Display', serif;
  font-size: .9rem;
  font-weight: 500;
  color: var(--hc-te);
}

/* ============================================================
   FOOTER
   ============================================================ */
.hc-footer {
  padding: 18px 28px;
  background: var(--hc-fg);
  text-align: center;
}

.hc-footer p   { font-size: .6rem; color: #A9A29A; }
.hc-footer span { color: var(--hc-te2); }
.hc-footer a   { color: #A9A29A; text-decoration: none; margin-left: 8px; }

/* ============================================================
   PAGE CATÉGORIE — template
   ============================================================ */
.hc-cat-header {
  padding: 48px 28px 40px;
  position: relative;
  overflow: hidden;
}

.hc-cat-header::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .15), transparent 70%);
  pointer-events: none;
}

.hc-cat-inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hc-cat-emoji {
  font-size: 2.8rem;
  margin-bottom: 12px;
  display: block;
}

.hc-studio .hc-cat-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -.03em;
  margin-bottom: 6px;
  line-height: 1.15;
}

.hc-cat-desc {
  font-size: .9rem;
  color: var(--hc-fg2);
  font-weight: 300;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 14px;
}

.hc-cat-count {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 500;
  color: var(--hc-fg);
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, .5);
}

/* Filtres */
.hc-filters {
  padding: 0 28px;
  max-width: 960px;
  margin: 0 auto 24px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hc-fil {
  padding: 7px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--hc-sd);
  background: transparent;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 400;
  color: var(--hc-fg2);
  transition: all .3s;
}

.hc-fil:hover { border-color: var(--hc-fg3); background: var(--hc-sd2); }

.hc-fil.hc-ac {
  border-color: var(--hc-te);
  background: rgba(196, 112, 75, .06);
  color: var(--hc-te);
  font-weight: 500;
}

.hc-emf-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 24px 28px 8px;
  max-width: 960px;
  margin: 0 auto;
}

.hc-emf {
  padding: 7px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--hc-sd);
  background: transparent;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 400;
  color: var(--hc-fg2);
  transition: all .3s;
}

.hc-emf:hover { border-color: var(--hc-fg3); background: var(--hc-sd2); }

.hc-emf.hc-ac {
  border-color: var(--hc-te);
  background: rgba(196, 112, 75, .06);
  color: var(--hc-te);
  font-weight: 500;
}

/* Grille exercices */
.hc-exo-grid {
  width: 100%;
  padding: 0 0 60px;
  max-width: 960px;
  margin: 24px auto 0;
}

.hc-exo-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Card exercice */
.hc-ec {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--hc-sd);
  cursor: pointer;
  transition: all .4s cubic-bezier(.2, .8, .2, 1);
  position: relative;
}

.hc-ec:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, .07);
}

.hc-ec-img {
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-size: cover;
  background-position: center;
}

.hc-ec-play {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 14px rgba(0, 0, 0, .1);
  transition: transform .3s;
}

.hc-ec:hover .hc-ec-play { transform: scale(1.1); }
.hc-ec-play svg { margin-left: 2px; color: var(--hc-te); }

.hc-ec-dur {
  position: absolute;
  bottom: 8px;
  right: 8px;
  font-size: .58rem;
  color: #fff;
  background: rgba(0, 0, 0, .4);
  backdrop-filter: blur(4px);
  padding: 2px 8px;
  border-radius: 8px;
}

.hc-ec-new {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: .52rem;
  font-weight: 700;
  color: #fff;
  background: var(--hc-te);
  padding: 3px 8px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.hc-ec-done {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--hc-sage);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-ec-done svg { width: 12px; height: 12px; color: #fff; }

.hc-ec-i { padding: 12px 14px; }
.hc-studio .hc-ec-i h3 { font-size: .85rem; font-weight: 500; margin-bottom: 3px; letter-spacing: -.01em; }

.hc-ec-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hc-ec-meta span   { font-size: .6rem; color: var(--hc-fg3); }
.hc-ec-meta .hc-ht { color: #D4636F; font-weight: 600; }

.hc-ec-prog {
  height: 3px;
  background: var(--hc-sd);
  border-radius: 3px;
  margin-top: 6px;
  overflow: hidden;
}

.hc-ec-prog-f {
  height: 100%;
  border-radius: 3px;
  background: var(--hc-te);
}

/* Backgrounds catégorie card */
.hc-cb2 { background: linear-gradient(145deg, #C8DCE0, #B4CCD4); }
.hc-cb3 { background: linear-gradient(145deg, #D0E4E8, #BCD8E0); }
.hc-cb4 { background: linear-gradient(145deg, #B8D0D8, #A4C4D0); }

/* ============================================================
   PAGE EXERCICE SINGLE — template
   ============================================================ */
.hc-player {
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
}

.hc-player::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, .1), transparent 60%);
  pointer-events: none;
}

.hc-player-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.hc-video-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 12px 48px rgba(0, 0, 0, .15);
}

.hc-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(213, 232, 232, .15), rgba(176, 204, 212, .1));
  pointer-events: none;
}

.hc-video-play {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, .15);
  transition: transform .3s;
  position: relative;
  z-index: 2;
}

.hc-video-wrap:hover .hc-video-play { transform: scale(1.08); }
.hc-video-play svg { margin-left: 3px; color: var(--hc-te); }

.hc-video-dur {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-size: .68rem;
  color: #fff;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(4px);
  padding: 3px 10px;
  border-radius: 10px;
  z-index: 2;
}

/* Ressource single */
.hc-res-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 28px 56px;
  align-items: center;
}
.hc-res-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 48px;
}
.hc-res-thumb {
  width: 100%;
  max-width: 380px;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,.12);
  display: block;
}
.hc-res-placeholder {
  width: 280px;
  height: 360px;
  background: linear-gradient(145deg, var(--hc-sd2), var(--hc-bl));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  box-shadow: 0 24px 64px rgba(0,0,0,.08);
}
.hc-res-info { padding-left: 24px; }
.hc-res-badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--hc-te);
  background: var(--hc-bl);
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hc-res-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--hc-fg);
  line-height: 1.25;
  margin-bottom: 16px;
}
.hc-res-desc {
  font-size: .9rem;
  color: var(--hc-fg2);
  line-height: 1.7;
  margin-bottom: 32px;
}
.hc-res-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  background: var(--hc-te);
  color: #fff !important;
  font-size: .9rem;
  font-weight: 600;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 24px rgba(196,112,75,.3);
}
.hc-res-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(196,112,75,.4);
}
.hc-res-hint {
  font-size: .75rem;
  color: var(--hc-fg3);
  margin-top: 12px;
}
@media (max-width: 768px) {
  .hc-res-wrap {
    grid-template-columns: 1fr;
    padding: 32px 18px 40px;
    gap: 32px;
  }
  .hc-res-visual { padding-right: 0; }
  .hc-res-placeholder { width: 100%; height: 240px; font-size: 4rem; }
  .hc-res-info { padding-left: 0; }
  .hc-res-title { font-size: 1.3rem; }
}

/* Contenu exercice */
.hc-exo-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 40px 28px 56px;
}

.hc-exo-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hc-exo-tag {
  padding: 5px 13px;
  border-radius: 20px;
  font-size: .68rem;
  font-weight: 500;
  border: 1.5px solid var(--hc-sd);
}

.hc-exo-tag-cat { background: rgba(216, 232, 232, .3); color: #4A7A7A; border-color: rgba(216, 232, 232, .6); }
.hc-exo-tag-dur { background: var(--hc-sd2); color: var(--hc-fg2); }
.hc-exo-tag-new { background: rgba(196, 112, 75, .08); color: var(--hc-te); border-color: rgba(196, 112, 75, .15); }

.hc-exo-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -.03em;
  margin-bottom: 14px;
  line-height: 1.2;
  text-transform: lowercase;
}
.hc-exo-title::first-letter { text-transform: uppercase; }

.hc-exo-by {
  font-size: .8rem;
  color: var(--hc-fg3);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hc-exo-by-av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.hc-exo-desc {
  font-size: .9rem;
  color: var(--hc-fg2);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 28px;
}

.hc-studio .hc-exo-desc p { margin-bottom: 12px; }

.hc-exo-mat {
  background: var(--hc-sd2);
  border-radius: 14px;
  padding: 18px 20px;
  margin-bottom: 28px;
}

.hc-exo-mat-title {
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--hc-fg3);
  margin-bottom: 10px;
}

.hc-exo-mat-list {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hc-exo-mat-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .8rem;
  color: var(--hc-fg2);
}

.hc-exo-mat-item span { font-size: 1rem; }

.hc-exo-steps { margin-bottom: 32px; }

.hc-studio .hc-exo-steps h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 14px;
}

.hc-exo-step {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.hc-exo-step-n {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--hc-te);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .68rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.hc-exo-step-tx    { flex: 1; }
.hc-studio .hc-exo-step-tx h4 { font-size: .85rem; font-weight: 500; margin-bottom: 2px; }

.hc-studio .hc-exo-step-tx p {
  font-size: .8rem;
  color: var(--hc-fg2);
  font-weight: 300;
  line-height: 1.55;
}

.hc-exo-div {
  height: 1px;
  background: var(--hc-sd);
  margin: 32px 0;
}

.hc-exo-next { margin-bottom: 20px; }

.hc-studio .hc-exo-next h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 14px;
}

.hc-exo-next-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Small card */
.hc-sc {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--hc-sd);
  cursor: pointer;
  transition: all .35s;
  display: flex;
  flex-direction: row;
  text-decoration: none;
}

.hc-sc:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .06);
}

.hc-sc-img {
  width: 100px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  background-size: cover;
}

.hc-sc-play {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-sc-play svg { margin-left: 1px; color: var(--hc-te); width: 10px; height: 10px; }

.hc-sc-i {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hc-studio .hc-sc-i h4  { font-size: .78rem; font-weight: 500; margin-bottom: 2px; color: var(--hc-fg); }
.hc-sc-i span { font-size: .6rem; color: var(--hc-fg3); }

/* Navigation bas de page exercice */
.hc-exo-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--hc-sd);
}

.hc-exo-nav a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--hc-fg2);
  font-size: .8rem;
  font-weight: 400;
  transition: color .3s;
}

.hc-exo-nav a:hover { color: var(--hc-te); }
.hc-exo-nav-r { text-align: right; }

/* ============================================================
   RESPONSIVE — Mobile
   ============================================================ */
@media (max-width: 768px) {
  /* Nav mobile */
  .hc-nav { padding: 0 18px; height: 52px; }
  .hc-nav-right { justify-content: flex-end; }
  .hc-nav-menu { display: none; }

  /* Bottom nav */
  .hc-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(251, 247, 242, .96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(235, 228, 219, .6);
    padding: 6px 0 calc(6px + env(safe-area-inset-bottom));
  }
  .hc-bn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    text-decoration: none;
    color: var(--hc-fg3);
    padding: 5px 4px;
    min-width: 0;
    transition: color .2s;
  }
  .hc-bn-item.hc-bn-active { color: var(--hc-te); }
  .hc-bn-icon { font-size: 1.25rem; line-height: 1; }
  .hc-bn-label { font-size: .58rem; font-weight: 500; letter-spacing: .01em; text-align: center; }

  /* Padding global pour éviter que la bottom nav cache le contenu */
  body.hc-studio { padding-bottom: 68px; }

  /* Hero */
  .hc-hero { padding: 24px 18px 22px; }
  .hc-hero-top { flex-direction: column; gap: 10px; }
  .hc-hero-q   { max-width: 100%; text-align: left; padding: 8px 12px; }
  .hc-studio .hc-hero-g h1 { font-size: 1.5rem; }
  .hc-hero-cards { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hc-hlive { min-height: 180px; padding: 22px 20px; }
  .hc-studio .hc-hlive h3 { font-size: 1.1rem; }
  .hc-hnew { flex-direction: column; border-radius: 14px; }
  .hc-hnew-img { min-height: 100px; border-radius: 14px 14px 0 0; }
  .hc-hnew-play { width: 40px; height: 40px; }
  .hc-hnew-play svg { width: 18px; height: 18px; }
  .hc-hnew-nfo { padding: 14px 14px; }
  .hc-studio .hc-hnew-nfo h3 { font-size: .95rem; }
  .hc-hnew-foot { padding: 0 14px 12px; }

  /* Mood */
  .hc-mood { padding-top: 36px; }
  .hc-mood-grid {
    padding: 16px 0 0;
    gap: 10px;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hc-mood-grid::-webkit-scrollbar { display: none; }
  .hc-mood-grid .hc-mv:first-child { margin-left: 18px; }
  .hc-mood-grid .hc-mv:last-child { margin-right: 18px; }
  .hc-mv  { width: 120px; }
  .hc-mv-img { width: 120px; height: 120px; border-radius: 16px; }
  .hc-mv-lbl { font-size: .78rem; }
  .hc-mood-res { padding: 0 18px; }
  .hc-mood-rg { gap: 10px; padding-bottom: 8px; justify-content: flex-start; padding-left: 18px; }
  .hc-mood-rg .hc-mrc { width: 220px; }
  .hc-mrc-i { padding: 12px 14px; }
  .hc-studio .hc-mrc-i h3 { font-size: .82rem; }

  /* Sections */
  .hc-shd { padding: 0; }
  .hc-studio .hc-sh2 { font-size: 1.4rem !important; }
  .hc-studio .hc-inner { padding-right: 2px !important; }
  .hc-crl { padding: 0 18px 6px; gap: 10px; }
  .hc-crl .hc-cd { width: 210px; }

  /* Explore */
  .hc-explore { padding: 40px 18px 0; }
  .hc-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hc-cat { padding: 16px 13px; min-height: 95px; }

  /* Stats */
  .hc-stats { padding: 28px 18px; }
  .hc-stats-in { gap: 14px; }

  /* Upsell */
  .hc-ups { padding: 36px 18px 0; }
  .hc-ups-c { padding: 24px 20px; text-align: center; }
  .hc-ups-btn { width: 100%; justify-content: center; }

  /* Jeanne */
  .hc-jn { padding: 36px 18px 44px; }
  .hc-jn-in { flex-direction: column; text-align: center; }

  /* Footer */
  .hc-footer { padding: 14px 18px; }

  /* Template catégorie */
  .hc-cat-header { padding: 32px 18px 28px; }
  .hc-cat-emoji  { font-size: 2.2rem; margin-bottom: 8px; }
  .hc-studio .hc-cat-header h1 { font-size: 1.6rem; }
  .hc-filters  { padding: 0 18px; margin-bottom: 18px; }
  .hc-exo-grid { padding: 0 18px 48px; }
  .hc-exo-list { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Template exercice */
  .hc-player { padding: 24px 18px 20px; }
  .hc-video-wrap { border-radius: 12px; }
  .hc-video-play { width: 56px; height: 56px; }
  .hc-video-play svg { width: 22px; height: 22px; }
  .hc-exo-content { padding: 28px 18px 44px; }
  .hc-exo-title { font-size: 2.3rem !important; line-height: 1.2 !important; text-transform: lowercase !important; margin-bottom: 10px !important; }
  .hc-exo-title::first-letter { text-transform: uppercase !important; }
  .hc-exo-next-grid { grid-template-columns: 1fr; }
  .hc-exo-mat-list { gap: 10px; }
}

@media (max-width: 420px) {
  /* Hero */
  .hc-hero-cards { grid-template-columns: 1fr; gap: 8px; }
  .hc-hlive { min-height: 160px; padding: 20px 18px; }
  .hc-hnew { flex-direction: column; }
  .hc-hnew-img { min-height: 90px; width: 100%; }

  /* Exercices */
  .hc-exo-list { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .hc-mv { width: 100px; }
  .hc-mv-img { width: 100px; height: 100px; }
  .hc-mv-lbl { font-size: .72rem; }
  .hc-mood-rg .hc-mrc { width: 180px; }
  .hc-mrc-i { padding: 10px 12px; }
  .hc-studio .hc-mrc-i h3 { font-size: .76rem; }
}

@media (max-width: 380px) {
  .hc-studio .hc-hero-g h1 { font-size: 1.3rem; }
  .hc-mv { width: 90px; }
  .hc-mv-img { width: 90px; height: 90px; }
  .hc-mv-lbl { font-size: .68rem; }
  .hc-mood-rg .hc-mrc { width: 160px; }
  .hc-studio .hc-mrc-i h3 { font-size: .72rem; }
  .hc-cat-grid { grid-template-columns: 1fr; }
  .hc-crl .hc-cd { width: 185px; }
}

/* ============================================================
   Anti-Elementor — spécificité forcée sur les tags natifs
   Charge en priorité 99, après Elementor.
   Pour les cas où Elementor a quand même la main via un
   sélecteur plus spécifique, on contre avec .hc-studio prefix.
   ============================================================ */
.hc-studio h1, .hc-studio h2, .hc-studio h3,
.hc-studio h4, .hc-studio h5, .hc-studio h6 {
  margin: 0;
  padding: 0;
  text-transform: none;
  word-spacing: normal;
}

/* Playfair — titres spécifiques */
.hc-studio .hc-hero-g h1,
.hc-studio .hc-hero-q p,
.hc-studio .hc-hlive h3,
.hc-studio .hc-hnew-nfo h3,
.hc-studio .hc-mood-title h2,
.hc-studio .hc-sh2,
.hc-studio .hc-ups-c h3,
.hc-studio .hc-cat-header h1,
.hc-studio .hc-exo-title,
.hc-studio .hc-exo-steps h3,
.hc-studio .hc-exo-next h3,
.hc-studio .hc-jn-sig {
  font-family: 'Playfair Display', serif;
}

/* DM Sans — corps */
.hc-studio .hc-hero-g > p,
.hc-studio .hc-cd-i h3,
.hc-studio .hc-ec-i h3,
.hc-studio .hc-mrc-i h3,
.hc-studio .hc-cat h3,
.hc-studio .hc-sc-i h4,
.hc-studio .hc-exo-step-tx h4,
.hc-studio .hc-ups-c p,
.hc-studio .hc-exo-desc p,
.hc-studio .hc-mood-msg p {
  font-family: 'DM Sans', system-ui, sans-serif;
}

/* Liens */
.hc-studio a { text-decoration: none; }
.hc-studio .hc-shd a,
.hc-studio .hc-hlive-btn,
.hc-studio .hc-hnew-btn { color: inherit; }
.hc-studio .hc-ups-btn,
.hc-studio .hc-ups-btn:visited,
.hc-studio .hc-ups-btn:hover { color: #fff !important; }

/* ─── Fix Elementor widget container ────────────────────────────
   Neutralise le padding/margin/text-align qu'Elementor injecte
   autour des shortcodes, source des décalages et doubles marges.
   ──────────────────────────────────────────────────────────────── */
.elementor-widget-shortcode .elementor-widget-container {
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
}

/* text-align de base sur tout le plugin */
.hc-studio,
.hc-studio * { text-align: left; }

/* exceptions légitimes qui re-centrent eux-mêmes */
.hc-studio .hc-mood-title,
.hc-studio .hc-mood-title h2,
.hc-studio .hc-mood-title p,
.hc-studio .hc-stats-in,
.hc-studio .hc-st      { text-align: center; }

/* hc-mood-msg : avatar aligné en haut, pas centré verticalement */
.hc-studio .hc-mood-msg     { align-items: flex-start !important; }
.hc-studio .hc-mood-msg-av  { flex-shrink: 0; margin-top: 2px; }

/* ─── Fix spécificité .hc-sh2 sur h2 ────────────────────────────
   .hc-sh2 = (0,1,0) < .elementor-kit-xxx h2 = (0,1,1)
   On ajoute .hc-studio pour passer à (0,2,0) et gagner.
   ──────────────────────────────────────────────────────────────── */
.hc-studio .hc-sh2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: -.02em;
  margin: 0;
  padding: 0;
}

/* ─── Programme — Layout 2 colonnes ─────────────────────────────────────────── */

/* Wrapper global — grid 2 colonnes */
.hc-prog-wrap {
  display: grid;
  grid-template-columns: 1fr 300px;
  grid-template-rows: auto auto 1fr;
  grid-template-areas:
    "head    ."
    "video   sidebar"
    "now     sidebar";
  column-gap: 28px;
  padding-top: 24px;
  padding-bottom: 48px;
  flex: 1;
  align-items: start;
}

.hc-prog-sidebar-head { grid-area: head; }
.hc-prog-video        { grid-area: video; }
.hc-prog-now          { grid-area: now; }
.hc-prog-sidebar      { grid-area: sidebar; }

.hc-prog-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
}

.hc-prog-video .hc-video-wrap {
  position: absolute;
  inset: 0;
  padding: 0;
  aspect-ratio: unset;
  border-radius: 0;
  box-shadow: none;
  cursor: default;
}

.hc-prog-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
}

.hc-prog-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Infos épisode actif sous le player */
.hc-prog-now {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 16px;
  padding: 0 4px;
}

.hc-prog-now-count {
  flex-shrink: 0;
  font-size: .75rem;
  font-weight: 600;
  color: var(--hc-te);
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hc-prog-now-body { flex: 1; min-width: 0; }

.hc-prog-now-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--hc-fg);
  line-height: 1.35;
}

.hc-prog-now-desc {
  font-size: .88rem;
  color: var(--hc-fg2);
  line-height: 1.6;
  margin-top: 6px;
}

/* Colonne droite — sidebar */
.hc-prog-sidebar {
  width: 300px;
  flex-shrink: 0;
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  scrollbar-width: thin;
}

.hc-prog-sidebar-head {
  padding: 20px 0 16px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--hc-border);
}

.hc-prog-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin: 8px 0 4px;
  color: var(--hc-fg);
  line-height: 1.25;
}

.hc-prog-sous-titre {
  font-size: .85rem;
  color: var(--hc-fg2);
  margin: 0;
  line-height: 1.5;
}

/* Liste épisodes */
.hc-prog-list { padding: 12px 0; }

.hc-prog-list-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--hc-fg3, #aaa);
  margin: 0 0 10px 4px;
}

.hc-prog-ep {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 10px 10px 4px;
  border-radius: 10px;
  cursor: pointer;
  transition: background .12s;
  border-left: 2px solid transparent;
  margin-bottom: 2px;
}

.hc-prog-ep:hover { background: var(--hc-sd2); }

.hc-prog-ep.is-active {
  background: var(--hc-sd2);
  border-left-color: var(--hc-te);
}

.hc-prog-ep-n {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--hc-bg2);
  border: 1.5px solid var(--hc-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  font-weight: 600;
  color: var(--hc-fg2);
}

.hc-prog-ep.is-active .hc-prog-ep-n {
  background: var(--hc-te);
  border-color: var(--hc-te);
  color: #fff;
}

.hc-prog-ep-title {
  flex: 1;
  font-size: .9rem;
  font-weight: 500;
  color: var(--hc-fg);
  line-height: 1.35;
}

.hc-prog-ep.is-active .hc-prog-ep-title { color: var(--hc-te); }

.hc-prog-ep-play {
  flex-shrink: 0;
  color: var(--hc-fg3, #ccc);
  opacity: 0;
  transition: opacity .12s;
}

.hc-prog-ep:hover .hc-prog-ep-play,
.hc-prog-ep.is-active .hc-prog-ep-play { opacity: 1; color: var(--hc-te); }

/* À propos */
.hc-prog-about {
  padding-top: 16px;
  margin-top: 4px;
  border-top: 1px solid var(--hc-border);
}

.hc-prog-about p {
  font-size: .85rem;
  color: var(--hc-fg2);
  line-height: 1.65;
  margin: 8px 0 0;
}

/* Mobile — colonne unique */
@media (max-width: 767px) {
  .hc-prog-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "head"
      "video"
      "now"
      "sidebar";
    column-gap: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .hc-prog-sidebar {
    width: 100%;
    position: static;
    max-height: none;
    overflow: visible;
    padding: 0 18px 32px;
  }

  .hc-prog-sidebar-head { padding: 14px 18px 12px; }

  .hc-prog-video { border-radius: 0; }

  .hc-prog-now { padding: 14px 18px 0; }
}
