/* =============================================================
   InfoRencontre — Premium preview (homepage + header + footer)
   Tokens scoped on body.premium-preview so .pr-header and .pr-footer inherit.
   Main content styles are still scoped under .premium-wrap.
   ============================================================= */

body.premium-preview {
  /* Palette — on garde rose/violet comme accents, on anoblit le reste */
  --pr-rose: #ff4da6;
  --pr-rose-deep: #d62878;
  --pr-violet: #a066d4;
  --pr-violet-deep: #7340a8;

  --pr-plum: #1a0b1f;          /* Noir aubergine : headings, dark sections */
  --pr-plum-soft: #3a1a44;
  --pr-ivory: #fdfaf7;         /* Fond principal warm */
  --pr-cream: #f8f0ea;         /* Cartes / surfaces */
  --pr-blush: #f5e6ec;
  --pr-gold: #c9a96e;          /* Or champagne : accents fins */
  --pr-gold-soft: #e5d3a5;
  --pr-gray: #7a6b74;
  --pr-line: rgba(26, 11, 31, 0.12);

  --pr-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --pr-sans: 'Poppins', system-ui, -apple-system, sans-serif;

  background: var(--pr-ivory);
}

.premium-wrap {
  font-family: var(--pr-sans);
  color: var(--pr-plum);
  background: var(--pr-ivory);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.premium-wrap *,
.premium-wrap *::before,
.premium-wrap *::after { box-sizing: border-box; }

.premium-wrap h1,
.premium-wrap h2,
.premium-wrap h3,
.premium-wrap h4 { margin: 0; }

.premium-wrap a { color: inherit; }

/* ---------- Eyebrow label ---------- */
.premium-wrap .pr-eyebrow {
  display: inline-block;
  font-family: var(--pr-sans);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--pr-gold);
  padding: 0 0 0.5rem;
  border-bottom: 1px solid var(--pr-gold-soft);
  margin: 0 0 1.6rem;
}
.premium-wrap .pr-eyebrow--dark {
  color: var(--pr-plum-soft);
  border-bottom-color: var(--pr-line);
}
.premium-wrap .pr-eyebrow--light {
  color: var(--pr-gold-soft);
  border-bottom-color: rgba(201, 169, 110, 0.35);
}
.premium-wrap .pr-eyebrow--hero {
  color: rgba(253, 250, 247, 0.85);
  border-bottom-color: rgba(253, 250, 247, 0.35);
}

/* ============================================================
   HERO
   ============================================================ */
.premium-wrap .pr-hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  padding: 6rem 2rem 8rem;
}
.premium-wrap .pr-hero .hero-bg-layer {
  position: absolute; inset: 0; z-index: 0;
}
.premium-wrap .pr-hero .hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease;
  transform: scale(1.05);
}
.premium-wrap .pr-hero .hero-bg.current { opacity: 1; }
.premium-wrap .pr-hero .hero-bg.next { opacity: 0; }

.premium-wrap .pr-hero__veil {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(26,11,31,0.35) 0%, rgba(26,11,31,0.82) 100%),
    linear-gradient(180deg, rgba(26,11,31,0.55) 0%, rgba(26,11,31,0.8) 100%);
}

.premium-wrap .pr-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  animation: pr-fade-up 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes pr-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.premium-wrap .pr-hero h1 {
  font-family: var(--pr-serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 1.5rem;
  color: #fff;
  font-style: normal;
}
.premium-wrap .pr-hero p {
  font-family: var(--pr-sans);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 300;
  max-width: 560px;
  margin: 0 auto 2.8rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

/* ---------- Buttons ---------- */
.premium-wrap .pr-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 2.2rem;
  font-family: var(--pr-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid currentColor;
  border-radius: 0;
  transition: all 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  background: transparent;
  position: relative;
}
.premium-wrap .pr-btn svg {
  width: 16px; height: 16px;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
  flex-shrink: 0;
}
.premium-wrap .pr-btn:hover svg { transform: translateX(6px); }

.premium-wrap .pr-btn--ghost {
  color: #fff;
}
.premium-wrap .pr-btn--ghost:hover {
  background: #fff;
  color: var(--pr-plum);
  border-color: #fff;
}
.premium-wrap .pr-btn--line {
  color: var(--pr-plum);
  padding: 1.05rem 2rem;
}
.premium-wrap .pr-btn--line:hover {
  background: var(--pr-plum);
  color: var(--pr-ivory);
}
.premium-wrap .pr-btn--light { color: var(--pr-ivory); }

/* Override: make .cta that JS targets behave like premium btn */
.premium-wrap .pr-hero a.cta {
  text-transform: uppercase;
}

/* Hero tabs: keep the ORIGINAL positioning + 7s pink loadingBar animation
   from style.css. Force Poppins typography ONLY on desktop so the mobile
   `.hero-tab { font-size: 0 }` rule from style.css still wins on mobile
   (mobile tabs are text-less little bars). */
@media (min-width: 1024px) {
  body.premium-preview .hero-selector .hero-tab,
  body.premium-preview .dynamic-hero .hero-tab {
    font-family: var(--pr-sans) !important;
    font-size: 0.74rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.05em !important;
    line-height: 1.3 !important;
    text-transform: none !important;
  }
}

/* ============================================================
   INTRO + TOP 5
   ============================================================ */
.premium-wrap .pr-intro {
  padding: 9rem 2rem;
  max-width: 1320px;
  margin: 0 auto;
}
.premium-wrap .pr-intro__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 6rem;
  align-items: start;
}
.premium-wrap .pr-intro__heading {
  font-family: var(--pr-serif);
  font-weight: 400;
  font-size: clamp(2.3rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 2rem;
  color: var(--pr-plum);
}
.premium-wrap .pr-intro__heading em {
  font-style: italic;
  color: var(--pr-rose);
  font-weight: 400;
}
.premium-wrap .pr-intro__lead {
  font-size: 1.1rem;
  color: var(--pr-plum);
  line-height: 1.75;
  margin: 0 0 1.5rem;
  font-weight: 400;
}
.premium-wrap .pr-intro__body {
  font-size: 0.97rem;
  color: var(--pr-gray);
  line-height: 1.85;
  margin: 0;
}
.premium-wrap .pr-intro__body strong {
  color: var(--pr-plum);
  font-weight: 500;
}

/* Top 5 card */
.premium-wrap .pr-top5 {
  padding: 2.8rem 2.5rem;
  background: var(--pr-cream);
  border: 1px solid var(--pr-line);
  position: relative;
}
.premium-wrap .pr-top5::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pr-rose), var(--pr-violet), var(--pr-gold));
}
.premium-wrap .pr-top5__header {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--pr-line);
}
.premium-wrap .pr-top5__title {
  font-family: var(--pr-serif);
  font-weight: 400;
  font-size: 2.1rem;
  line-height: 1;
  letter-spacing: -0.01em;
}
.premium-wrap .pr-top5__title em {
  font-style: italic;
  color: var(--pr-rose);
}
.premium-wrap .pr-top5__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.premium-wrap .pr-top5__list li {
  display: grid;
  grid-template-columns: 2.2rem 1fr auto;
  align-items: baseline;
  gap: 1.2rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--pr-line);
  transition: padding-left 0.4s;
}
.premium-wrap .pr-top5__list li:last-child { border-bottom: none; }
.premium-wrap .pr-top5__list li:hover { padding-left: 0.4rem; }
.premium-wrap .pr-top5__rank {
  font-family: var(--pr-serif);
  font-style: italic;
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--pr-gold);
}
.premium-wrap .pr-top5__name {
  font-family: var(--pr-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--pr-plum);
  letter-spacing: 0.005em;
}
.premium-wrap .pr-top5__score {
  font-family: var(--pr-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--pr-plum);
  letter-spacing: -0.01em;
}
.premium-wrap .pr-top5__score small {
  font-size: 0.72rem;
  color: var(--pr-gray);
  font-family: var(--pr-sans);
  font-weight: 400;
}

/* ============================================================
   SECTION HEADS
   ============================================================ */
.premium-wrap .pr-section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 5rem;
}
.premium-wrap .pr-section-head .pr-eyebrow { margin-bottom: 1.8rem; }
.premium-wrap .pr-section-head__title {
  font-family: var(--pr-serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 1.2rem;
  letter-spacing: -0.01em;
  color: var(--pr-plum);
}
.premium-wrap .pr-section-head__title em {
  font-style: italic;
  color: var(--pr-rose);
}
.premium-wrap .pr-section-head p {
  color: var(--pr-gray);
  font-size: 1rem;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}
.premium-wrap .pr-section-head--light .pr-section-head__title { color: var(--pr-ivory); }
.premium-wrap .pr-section-head--light .pr-section-head__title em { color: var(--pr-gold); }
.premium-wrap .pr-section-head--light p { color: rgba(253, 250, 247, 0.7); }

/* ============================================================
   EDITORIAL (blog)
   ============================================================ */
.premium-wrap .pr-editorial {
  padding: 9rem 2rem;
  max-width: 1320px;
  margin: 0 auto;
  background: var(--pr-ivory);
}
.premium-wrap .pr-editorial__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.4rem;
  grid-auto-rows: 260px;
}
.premium-wrap .pr-edit-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--pr-plum);
  text-decoration: none;
  min-height: 100%;
}
.premium-wrap .pr-edit-card--feat {
  grid-column: span 3;
  grid-row: span 2;
}
.premium-wrap .pr-edit-card--mini {
  grid-column: span 3;
}
.premium-wrap .pr-edit-card__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1), filter 1.4s ease;
  filter: grayscale(15%) brightness(0.88);
}
.premium-wrap .pr-edit-card:hover .pr-edit-card__bg {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(1);
}
.premium-wrap .pr-edit-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26, 11, 31, 0) 35%, rgba(26, 11, 31, 0.75) 75%, rgba(26, 11, 31, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: #fff;
}
.premium-wrap .pr-edit-card__cat {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pr-gold-soft);
  padding-bottom: 0.4rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.5);
  align-self: flex-start;
  font-weight: 500;
}
.premium-wrap .pr-edit-card__title {
  font-family: var(--pr-serif);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.2;
  color: #fff;
  margin: 0 0 1rem;
  max-width: 90%;
}
.premium-wrap .pr-edit-card--feat .pr-edit-card__title {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  max-width: 80%;
  font-weight: 400;
}
.premium-wrap .pr-edit-card__more {
  font-family: var(--pr-sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  align-self: flex-start;
  transition: all 0.4s;
}
.premium-wrap .pr-edit-card__more svg { width: 14px; height: 14px; transition: transform 0.4s; }
.premium-wrap .pr-edit-card:hover .pr-edit-card__more {
  color: var(--pr-gold);
  border-bottom-color: var(--pr-gold);
}
.premium-wrap .pr-edit-card:hover .pr-edit-card__more svg { transform: translateX(4px); }

.premium-wrap .pr-readmore {
  text-align: center;
  margin-top: 4rem;
}

/* ============================================================
   TESTS (dark premium section)
   ============================================================ */
.premium-wrap .pr-tests {
  background: var(--pr-plum);
  padding: 9rem 2rem;
  position: relative;
  overflow: hidden;
}
.premium-wrap .pr-tests::before,
.premium-wrap .pr-tests::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.22;
  pointer-events: none;
}
.premium-wrap .pr-tests::before {
  width: 520px; height: 520px;
  background: var(--pr-rose);
  top: -180px; left: -180px;
}
.premium-wrap .pr-tests::after {
  width: 620px; height: 620px;
  background: var(--pr-violet);
  bottom: -220px; right: -220px;
}
.premium-wrap .pr-tests__inner {
  max-width: 1320px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.premium-wrap .pr-tests__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.4rem;
}
.premium-wrap .pr-test-card {
  background: rgba(253, 250, 247, 0.035);
  border: 1px solid rgba(253, 250, 247, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.premium-wrap .pr-test-card:hover {
  border-color: var(--pr-gold);
  background: rgba(253, 250, 247, 0.06);
  transform: translateY(-6px);
}
.premium-wrap .pr-test-card__img-link {
  display: block;
  position: relative;
  overflow: hidden;
}
.premium-wrap .pr-test-card__img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  transition: transform 1.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.premium-wrap .pr-test-card:hover .pr-test-card__img { transform: scale(1.07); }
.premium-wrap .pr-test-card__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pr-plum);
  background: var(--pr-gold-soft);
  font-weight: 500;
}
.premium-wrap .pr-test-card__body {
  padding: 1.6rem 1.5rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  color: var(--pr-ivory);
}
.premium-wrap .pr-test-card__title {
  font-family: var(--pr-serif);
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.22;
  margin: 0 0 0.8rem;
  color: var(--pr-ivory);
}
.premium-wrap .pr-test-card__excerpt {
  color: rgba(253, 250, 247, 0.6);
  font-size: 0.85rem;
  line-height: 1.6;
  flex: 1;
  margin: 0 0 1.3rem;
}
.premium-wrap .pr-test-card__link {
  font-family: var(--pr-sans);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pr-gold);
  text-decoration: none;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--pr-gold);
  align-self: flex-start;
  transition: all 0.4s;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.premium-wrap .pr-test-card__link svg { width: 14px; height: 14px; transition: transform 0.4s; }
.premium-wrap .pr-test-card__link:hover {
  color: var(--pr-gold-soft);
  border-bottom-color: var(--pr-gold-soft);
}
.premium-wrap .pr-test-card__link:hover svg { transform: translateX(4px); }

/* ============================================================
   CONTACT CTA
   ============================================================ */
.premium-wrap .pr-contact {
  padding: 11rem 2rem;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
  color: var(--pr-ivory);
  position: relative;
}
.premium-wrap .pr-contact__inner {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.premium-wrap .pr-contact__title {
  font-family: var(--pr-serif);
  font-weight: 300;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 1.3rem;
  color: var(--pr-ivory);
  letter-spacing: -0.01em;
}
.premium-wrap .pr-contact__title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--pr-rose), var(--pr-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.premium-wrap .pr-contact p {
  color: rgba(253, 250, 247, 0.78);
  font-size: 1.02rem;
  margin: 0 0 2.8rem;
  line-height: 1.75;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .premium-wrap .pr-intro { padding: 6rem 2rem; }
  .premium-wrap .pr-intro__grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  .premium-wrap .pr-editorial,
  .premium-wrap .pr-tests { padding: 6rem 2rem; }
  .premium-wrap .pr-editorial__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 240px;
  }
  .premium-wrap .pr-edit-card--feat {
    grid-column: span 2;
    grid-row: span 1;
  }
  .premium-wrap .pr-edit-card--mini { grid-column: span 1; }
  .premium-wrap .pr-tests__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .premium-wrap .pr-contact { padding: 8rem 2rem; }
}

@media (max-width: 640px) {
  .premium-wrap .pr-intro,
  .premium-wrap .pr-editorial,
  .premium-wrap .pr-tests,
  .premium-wrap .pr-contact { padding: 4.5rem 1.3rem; }

  /* Hero mobile — compact padding + smaller title, tabs keep their original
     style (handled above). */
  .premium-wrap .pr-hero {
    min-height: 100vh;
    padding: 6rem 1.3rem 6rem;
  }
  .premium-wrap .pr-hero__inner {
    max-width: 100%;
  }
  .premium-wrap .pr-hero h1 {
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.05;
    margin-bottom: 1rem;
  }
  .premium-wrap .pr-hero p {
    font-size: 0.92rem;
    margin-bottom: 1.8rem;
    padding: 0 0.5rem;
  }
  .premium-wrap .pr-hero .pr-btn {
    padding: 0.85rem 1.6rem;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
  }

  .premium-wrap .pr-editorial__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }
  .premium-wrap .pr-edit-card--feat,
  .premium-wrap .pr-edit-card--mini {
    grid-column: span 1;
    grid-row: span 1;
  }
  .premium-wrap .pr-edit-card--feat { grid-row: span 1; }
  .premium-wrap .pr-edit-card--feat .pr-edit-card__title { font-size: 1.6rem; }
  .premium-wrap .pr-tests__grid { grid-template-columns: 1fr; }
  .premium-wrap .pr-top5 { padding: 2rem 1.6rem; }
  .premium-wrap .pr-top5__title { font-size: 1.7rem; }
  .premium-wrap .pr-section-head { margin-bottom: 3rem; }
  .premium-wrap .pr-contact { background-attachment: scroll; }
}

/* ============================================================
   PREMIUM HEADER (scoped on body.premium-preview)
   Slim bar dominated by a large logo. Transparent over hero,
   plum glass with blur + gold hairline on scroll.
   ============================================================ */
body.premium-preview .pr-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background 0.45s ease, backdrop-filter 0.45s ease, border-color 0.45s ease;
  border-bottom: 1px solid transparent;
}
body.premium-preview .pr-header.is-scrolled {
  background: rgba(26, 11, 31, 0.92);
  -webkit-backdrop-filter: saturate(150%) blur(22px);
  backdrop-filter: saturate(150%) blur(22px);
  border-bottom-color: rgba(201, 169, 110, 0.22);
  box-shadow: 0 8px 28px rgba(26, 11, 31, 0.25);
}
body.premium-preview .pr-header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0.35rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: padding 0.4s ease;
}
body.premium-preview .pr-header.is-scrolled .pr-header__inner {
  padding: 0.25rem 2rem;
}
body.premium-preview .pr-header__brand { display: inline-flex; align-items: center; line-height: 0; }
body.premium-preview .pr-header__brand .logo {
  height: auto !important;
  max-height: 84px;
  width: auto;
  transition: max-height 0.4s ease;
  filter: none;
}
body.premium-preview .pr-header.is-scrolled .pr-header__brand .logo { max-height: 60px; }

/* Nav links — override the rose default */
body.premium-preview .pr-header .nav-links {
  display: flex;
  gap: 2.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
body.premium-preview .pr-header .nav-links > li { position: relative; }
body.premium-preview .pr-header .nav-links a {
  font-family: var(--pr-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(253, 250, 247, 0.85);
  text-decoration: none;
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.35s ease;
}
body.premium-preview .pr-header .nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 1px;
  background: var(--pr-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
body.premium-preview .pr-header .nav-links a:hover,
body.premium-preview .pr-header .nav-links li.current-menu-item > a,
body.premium-preview .pr-header .nav-links .pr-has-submenu:hover > a {
  color: #fff;
}
body.premium-preview .pr-header .nav-links a:hover::after,
body.premium-preview .pr-header .nav-links li.current-menu-item > a::after {
  transform: scaleX(1);
}

/* Bridge invisible pour garder le hover entre l'item parent et le submenu */
body.premium-preview .pr-header .pr-has-submenu {
  position: relative;
}
body.premium-preview .pr-header .pr-has-submenu::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -1.5rem;
  right: -1.5rem;
  height: 1.2rem;
  display: block;
  background: transparent;
  pointer-events: auto;
}

/* Desktop submenu — tiroir plum glass qui prolonge le header.
   Classes .pr-submenu / .pr-has-submenu remplacent les originales via
   str_replace PHP — aucune règle .submenu de style.css ne s'applique ici. */
body.premium-preview .pr-header .pr-submenu {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(26, 11, 31, 0.94);
  -webkit-backdrop-filter: saturate(160%) blur(24px);
  backdrop-filter: saturate(160%) blur(24px);
  border: 1px solid rgba(201, 169, 110, 0.22);
  border-radius: 0;
  padding: 0.5rem 0;
  min-width: 280px;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.55),
    0 10px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(253, 250, 247, 0.04);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.4s ease;
  list-style: none;
  margin: 0;
  z-index: 1100;
}
body.premium-preview .pr-header .pr-submenu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.55), transparent);
}
body.premium-preview .pr-header .pr-has-submenu:hover .pr-submenu,
body.premium-preview .pr-header .pr-has-submenu:focus-within .pr-submenu,
body.premium-preview .pr-header .pr-submenu:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
body.premium-preview .pr-header .pr-submenu li {
  margin: 0;
  padding: 0;
  list-style: none;
  border: none;
  position: relative;
}
body.premium-preview .pr-header .pr-submenu li + li::before {
  content: '';
  position: absolute;
  top: 0; left: 1.6rem; right: 1.6rem;
  height: 1px;
  background: rgba(201, 169, 110, 0.08);
}
body.premium-preview .pr-header .pr-submenu a {
  display: block;
  padding: 0.95rem 1.8rem;
  font-family: var(--pr-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
  color: rgba(253, 250, 247, 0.72);
  background: transparent;
  border: none;
  border-radius: 0;
  text-decoration: none;
  transition: color 0.35s ease, padding-left 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.35s ease;
  position: relative;
}
body.premium-preview .pr-header .pr-submenu a::after { display: none; }
body.premium-preview .pr-header .pr-submenu a:hover {
  color: var(--pr-gold);
  background: linear-gradient(90deg, rgba(201, 169, 110, 0.08), transparent);
  padding-left: 2.2rem;
}

/* Actions */
body.premium-preview .pr-header .header-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
/* Search toggle (loupe) */
body.premium-preview .pr-header .search-container {
  position: static !important;
  display: flex !important;
  align-items: center !important;
}
body.premium-preview .pr-header .search-toggle {
  color: rgba(253, 250, 247, 0.88) !important;
  background: none !important;
  border: none !important;
  padding: 0.5rem !important;
  margin: 0 !important;
  cursor: pointer;
  position: relative;
  z-index: 5;
  transition: color 0.35s ease, transform 0.35s ease;
}
body.premium-preview .pr-header .search-toggle:hover {
  color: var(--pr-gold) !important;
  transform: scale(1.05);
}
body.premium-preview .pr-header .search-container.active .search-toggle {
  color: var(--pr-gold) !important;
}
body.premium-preview .pr-header .search-icon,
body.premium-preview .pr-header .search-toggle svg { width: 20px !important; height: 20px !important; }

/* ============================================================
   FULL-SCREEN SEARCH OVERLAY
   When .search-container gets the .active class (via scripts.js),
   the .search-form becomes a fixed fullscreen plum glass overlay
   with a huge centered input.
   ============================================================ */
body.premium-preview .pr-header .search-form {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 2rem !important;
  background: rgba(26, 11, 31, 0.97) !important;
  -webkit-backdrop-filter: saturate(160%) blur(30px) !important;
  backdrop-filter: saturate(160%) blur(30px) !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 2rem !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: none !important;
  transition:
    opacity 0.45s cubic-bezier(0.2, 0.8, 0.2, 1),
    visibility 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  z-index: 11000 !important;
}
/* Top + bottom gold hairlines for definition */
body.premium-preview .pr-header .search-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.6), transparent);
  pointer-events: none;
}
body.premium-preview .pr-header .search-form::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.35), transparent);
  pointer-events: none;
}
/* Active state */
body.premium-preview .pr-header .search-container.active .search-form {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
/* Eyebrow label "Rechercher" — pseudo-element on the form */
body.premium-preview .pr-header .search-form > *::before { display: none; }
body.premium-preview .pr-header .search-container.active .search-form::before {
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.6), transparent);
}

body.premium-preview .pr-header .search-field {
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid rgba(201, 169, 110, 0.35) !important;
  outline: none !important;
  font-family: var(--pr-serif) !important;
  font-weight: 300 !important;
  font-size: clamp(1.8rem, 5vw, 3.4rem) !important;
  line-height: 1.2 !important;
  letter-spacing: -0.01em !important;
  color: var(--pr-ivory) !important;
  padding: 1.2rem 1rem !important;
  width: 100% !important;
  max-width: 820px !important;
  text-align: center !important;
  transition: border-color 0.4s ease !important;
  caret-color: var(--pr-gold) !important;
}
body.premium-preview .pr-header .search-field:focus {
  border-bottom-color: var(--pr-gold) !important;
}
body.premium-preview .pr-header .search-field::placeholder {
  color: rgba(253, 250, 247, 0.28) !important;
  font-style: italic;
  letter-spacing: -0.005em;
}
body.premium-preview .pr-header .search-submit {
  background: transparent !important;
  border: 1px solid rgba(201, 169, 110, 0.5) !important;
  color: var(--pr-gold) !important;
  cursor: pointer;
  padding: 1rem 2.2rem !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.6rem !important;
  margin: 0 !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  border-radius: 0 !important;
  min-width: 180px !important;
}
body.premium-preview .pr-header .search-submit::after {
  content: 'Rechercher';
}
body.premium-preview .pr-header .search-submit svg {
  width: 14px !important;
  height: 14px !important;
}
body.premium-preview .pr-header .search-submit:hover {
  background: var(--pr-gold) !important;
  color: var(--pr-plum) !important;
  border-color: var(--pr-gold) !important;
}

/* Eyebrow "Rechercher" — small gold label above the input */
body.premium-preview .pr-header .search-form .pr-search-eyebrow {
  font-family: var(--pr-sans) !important;
  font-size: 0.62rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  color: var(--pr-gold) !important;
  padding-bottom: 0.5rem !important;
  border-bottom: 1px solid rgba(201, 169, 110, 0.35) !important;
  margin-bottom: 0 !important;
}
/* ESC hint at the bottom of the overlay */
body.premium-preview .pr-header .search-form .pr-search-hint {
  position: absolute !important;
  bottom: 2.5rem !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.58rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: rgba(253, 250, 247, 0.3) !important;
  white-space: nowrap !important;
}

/* Ensure page scroll is locked while overlay is open */
body.premium-preview.pr-search-open {
  overflow: hidden !important;
}

/* Mobile: adjust sizing for smaller screens */
@media (max-width: 768px) {
  body.premium-preview .pr-header .search-form {
    padding: 0 1.5rem !important;
    gap: 1.4rem !important;
  }
  body.premium-preview .pr-header .search-field {
    font-size: clamp(1.4rem, 7vw, 2.2rem) !important;
    padding: 0.9rem 0.5rem !important;
  }
  body.premium-preview .pr-header .search-submit {
    padding: 0.85rem 1.8rem !important;
    font-size: 0.62rem !important;
    min-width: 160px !important;
  }
  body.premium-preview .pr-header .search-form .pr-search-hint {
    bottom: 1.5rem !important;
    font-size: 0.55rem !important;
  }
}

body.premium-preview .pr-header .burger span {
  background: var(--pr-ivory);
  width: 24px;
  height: 1px;
  transition: all 0.35s ease;
}

/* ============================================================
   PREMIUM FOOTER
   ============================================================ */
body.premium-preview .pr-footer {
  background: var(--pr-plum);
  color: rgba(253, 250, 247, 0.75);
  font-family: var(--pr-sans);
  padding: 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
body.premium-preview .pr-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.35), transparent);
}
body.premium-preview .pr-footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 6rem 2rem 2rem;
  position: relative;
  z-index: 1;
}
body.premium-preview .pr-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(253, 250, 247, 0.08);
}
body.premium-preview .pr-footer__brand { max-width: 340px; }
body.premium-preview .pr-footer__wordmark {
  font-family: var(--pr-serif);
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1;
  margin: 0 0 1.2rem;
  background: linear-gradient(90deg, var(--pr-rose), var(--pr-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}
body.premium-preview .pr-footer__tagline {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(253, 250, 247, 0.6);
  margin: 0 0 1.8rem;
}
body.premium-preview .pr-footer__social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0;
}
body.premium-preview .pr-footer__social a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pr-ivory);
  background: transparent;
  border: 1px solid rgba(253, 250, 247, 0.18);
  border-radius: 0;
  transition: all 0.4s ease;
}
body.premium-preview .pr-footer__social a:hover {
  color: var(--pr-plum);
  background: var(--pr-gold);
  border-color: var(--pr-gold);
  transform: translateY(-2px);
}
body.premium-preview .pr-footer__social svg { width: 15px; height: 15px; }

body.premium-preview .pr-footer__col { min-width: 0; }
body.premium-preview .pr-footer__label {
  display: block;
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--pr-gold);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}
body.premium-preview .pr-footer__menu,
body.premium-preview .pr-footer ul.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.premium-preview .pr-footer__menu li,
body.premium-preview .pr-footer ul.menu li {
  margin-bottom: 0.85rem;
}
body.premium-preview .pr-footer__menu a,
body.premium-preview .pr-footer ul.menu a {
  color: rgba(253, 250, 247, 0.65);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.5;
  transition: color 0.3s ease, padding-left 0.4s ease;
  display: inline-block;
}
body.premium-preview .pr-footer__menu a:hover,
body.premium-preview .pr-footer ul.menu a:hover {
  color: var(--pr-gold);
  padding-left: 0.35rem;
}
body.premium-preview .pr-footer__menu span {
  color: rgba(253, 250, 247, 0.5);
  font-size: 0.88rem;
}

body.premium-preview .pr-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem 0 0;
}
body.premium-preview .pr-footer__copyright,
body.premium-preview .pr-footer__fine {
  margin: 0;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  color: rgba(253, 250, 247, 0.4);
  font-weight: 400;
}
body.premium-preview .pr-footer__fine { font-style: italic; font-family: var(--pr-serif); font-size: 0.88rem; letter-spacing: 0.02em; }

/* Back to top */
body.premium-preview .pr-back-to-top,
body.premium-preview #back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  border-radius: 0;
  border: 1px solid var(--pr-gold);
  background: rgba(26, 11, 31, 0.85);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--pr-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 500;
  font-size: 0;
}
body.premium-preview #back-to-top.show,
body.premium-preview .pr-back-to-top.show {
  opacity: 1;
  visibility: visible;
}
body.premium-preview .pr-back-to-top:hover,
body.premium-preview #back-to-top:hover {
  background: var(--pr-gold);
  color: var(--pr-plum);
  transform: translateY(-3px);
}
body.premium-preview .pr-back-to-top svg,
body.premium-preview #back-to-top svg { width: 16px; height: 16px; }

/* Responsive header + footer */
@media (max-width: 1023px) {
  body.premium-preview .pr-header .nav-links { display: none; }
  body.premium-preview .pr-header__inner { padding: 1.1rem 1.3rem; }
  body.premium-preview .pr-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  body.premium-preview .pr-footer__brand { grid-column: span 2; max-width: 100%; }
  body.premium-preview .pr-footer__inner { padding: 4.5rem 1.5rem 2rem; }
}
@media (max-width: 640px) {
  body.premium-preview .pr-footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
  body.premium-preview .pr-footer__brand { grid-column: span 1; }
  body.premium-preview .pr-footer__wordmark { font-size: 2rem; }
  body.premium-preview .pr-footer__bottom { flex-direction: column; text-align: center; align-items: center; }
  body.premium-preview .pr-header .search-field { width: 160px; }
  body.premium-preview .pr-back-to-top,
  body.premium-preview #back-to-top {
    bottom: 1.2rem; right: 1.2rem; width: 40px; height: 40px;
  }
}

/* ============================================================
   GLOBAL OVERRIDES pour les autres templates (single, category,
   home, tag, page-contact, page-legal, search, 404).
   Les pages gardent leur markup existant ; on restyle les classes
   via body.premium-preview .existing-class { ... }.
   ============================================================ */

/* Base typography appliquée à tout le body en mode premium */
body.premium-preview {
  font-family: var(--pr-sans);
  color: var(--pr-plum);
  background: var(--pr-ivory);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.premium-preview h1,
body.premium-preview h2,
body.premium-preview h3,
body.premium-preview h4 {
  font-family: var(--pr-serif);
  font-weight: 400;
  color: var(--pr-plum);
  letter-spacing: -0.01em;
  line-height: 1.15;
}

/* ---------- HERO SECTIONS (single, category, home, tag, search, 404, page-contact, page-legal) ---------- */
/* Reset global : neutralise les headings qui utilisent un gradient clippé via
   -webkit-text-fill-color: transparent (sinon ils restent invisibles sous mes
   règles de couleur). Il y a 6 endroits dans style.css qui utilisent ce trick. */
body.premium-preview h1,
body.premium-preview h2,
body.premium-preview h3,
body.premium-preview h4,
body.premium-preview .hero-blog h1,
body.premium-preview .hero-contact h1,
body.premium-preview .singlearticletitle {
  -webkit-text-fill-color: currentColor !important;
  background: none !important;
  background-clip: border-box !important;
  -webkit-background-clip: border-box !important;
}

body.premium-preview .hero-blog,
body.premium-preview .hero-contact {
  position: relative !important;
  height: auto !important;
  min-height: 60vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 10rem 2rem 5rem !important;
  overflow: hidden;
  background-color: var(--pr-plum) !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  color: #fff;
}
body.premium-preview .hero-blog::after,
body.premium-preview .hero-contact::after {
  display: none !important;
}
body.premium-preview .hero-blog .hero-content,
body.premium-preview .hero-contact .hero-content {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  animation: none !important;
  max-width: 820px !important;
}
body.premium-preview .hero-blog::before,
body.premium-preview .hero-contact::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    radial-gradient(ellipse 70% 60% at 50% 45%, rgba(26, 11, 31, 0.35) 0%, rgba(26, 11, 31, 0.82) 100%),
    linear-gradient(180deg, rgba(26, 11, 31, 0.55) 0%, rgba(26, 11, 31, 0.8) 100%);
  z-index: 1 !important;
}
body.premium-preview .hero-blog .hero-overlay,
body.premium-preview .hero-contact .hero-overlay {
  display: none !important;
}
body.premium-preview .hero-blog .hero-content,
body.premium-preview .hero-contact .hero-content {
  position: relative !important;
  z-index: 2 !important;
  max-width: 820px !important;
  margin: 0 auto !important;
}
body.premium-preview .hero-blog h1,
body.premium-preview .hero-contact h1,
body.premium-preview .hero-contact h1.singlearticletitle,
body.premium-preview .singlearticletitle {
  font-family: var(--pr-serif) !important;
  font-weight: 300 !important;
  font-size: clamp(2.4rem, 6vw, 5rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -0.01em !important;
  margin: 0 0 1.3rem !important;
  color: #fff !important;
  text-transform: none !important;
}
body.premium-preview .hero-blog p,
body.premium-preview .hero-contact p {
  font-family: var(--pr-sans) !important;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem) !important;
  font-weight: 300 !important;
  max-width: 560px !important;
  margin: 0 auto !important;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.7 !important;
}

/* ---------- BLOG SECTION (category, home, tag) ---------- */
body.premium-preview .blog-section {
  background: var(--pr-ivory) !important;
  padding: 7rem 2rem !important;
  position: relative;
}
body.premium-preview .blog-section > .blog-container,
body.premium-preview .blog-container {
  max-width: 1320px !important;
  width: 100% !important;
  margin: 0 auto !important;
  display: block !important;
  flex: none !important;
}
body.premium-preview .blog-main {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1.8rem !important;
  min-width: 0 !important;
  max-width: 100% !important;
  flex: none !important;
  align-self: start !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
body.premium-preview .single-main {
  grid-column: 1 !important;
  min-width: 0 !important;
  align-self: start !important;
}

/* ============================================================
   BLOG CARD — desktop = overlay-on-image + hover-reveal excerpt,
                mobile  = stacked (image top, content below)
   DOM: article.blog-card > a.blog-card-img > (img + div.blog-card-overlay)
   ============================================================ */

/* Hard reset for anchors inside the card (neutralize UA blue + underline) */
body.premium-preview .blog-card,
body.premium-preview .blog-card a,
body.premium-preview .blog-card a:link,
body.premium-preview .blog-card a:visited,
body.premium-preview .blog-card a:hover,
body.premium-preview .blog-card a:focus,
body.premium-preview .blog-card a:active {
  text-decoration: none !important;
  color: inherit !important;
}

/* ---------- DESKTOP ---------- */
body.premium-preview .blog-card {
  position: relative !important;
  overflow: hidden !important;
  background: var(--pr-plum) !important;
  aspect-ratio: 4 / 5 !important;
  margin: 0 !important;
  border: 1px solid var(--pr-line) !important;
  border-radius: 0 !important;
  color: var(--pr-ivory) !important;
  box-sizing: border-box !important;
  max-width: 100% !important;
  min-width: 0 !important;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}
body.premium-preview .blog-card:hover {
  transform: translateY(-3px) !important;
}
body.premium-preview .blog-card .blog-card-img {
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}
body.premium-preview .blog-card .blog-card-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  filter: grayscale(12%) brightness(0.88);
  transition: transform 1.4s cubic-bezier(0.2, 0.8, 0.2, 1), filter 1.4s ease;
}
body.premium-preview .blog-card:hover .blog-card-img img {
  transform: scale(1.07);
  filter: grayscale(0%) brightness(1);
}
body.premium-preview .blog-card .blog-card-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(180deg, rgba(26, 11, 31, 0) 25%, rgba(26, 11, 31, 0.8) 75%, rgba(26, 11, 31, 0.95) 100%) !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  padding: 2.2rem 2rem !important;
  color: #fff !important;
  z-index: 2;
  box-sizing: border-box !important;
}
body.premium-preview .blog-card .blog-card-overlay h2 {
  font-family: var(--pr-serif) !important;
  font-weight: 400 !important;
  font-size: 1.55rem !important;
  line-height: 1.2 !important;
  color: #fff !important;
  margin: 0 0 0.8rem !important;
  padding: 0 !important;
  max-width: 90% !important;
  text-transform: none !important;
  text-decoration: none !important;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
  background-clip: border-box !important;
  -webkit-background-clip: border-box !important;
  word-wrap: break-word !important;
}
body.premium-preview .blog-card .blog-card-excerpt {
  font-family: var(--pr-sans) !important;
  font-size: 0.82rem !important;
  line-height: 1.55 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  margin: 0 0 1.1rem !important;
  max-width: 95% !important;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.45s ease, max-height 0.55s ease, margin 0.45s ease;
  text-decoration: none !important;
}
body.premium-preview .blog-card:hover .blog-card-excerpt {
  opacity: 1;
  max-height: 120px;
}
body.premium-preview .blog-card .btn-read {
  display: inline-flex !important;
  align-self: flex-start !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.64rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  color: var(--pr-gold) !important;
  padding: 0 0 0.35rem !important;
  border: none !important;
  border-bottom: 1px solid var(--pr-gold) !important;
  background: transparent !important;
  border-radius: 0 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transform: none !important;
}
body.premium-preview .blog-card:hover .btn-read {
  color: var(--pr-gold-soft) !important;
  border-bottom-color: var(--pr-gold-soft) !important;
}

/* Featured first card: span all 3 cols, wider aspect, bigger title.
   Same overlay + hover-reveal structure as regular cards.
   NOTE: this rule is placed BEFORE the @media (max-width: 768px) mobile
   overrides so that source-order lets the mobile rules win when active. */
body.premium-preview .blog-main > .blog-card:first-child {
  grid-column: 1 / -1 !important;
  aspect-ratio: 21 / 9 !important;
}
body.premium-preview .blog-main > .blog-card:first-child .blog-card-overlay h2 {
  font-size: clamp(2rem, 3vw, 3rem) !important;
  max-width: 70% !important;
}
body.premium-preview .blog-main > .blog-card:first-child .blog-card-excerpt {
  max-width: 60% !important;
  font-size: 0.95rem !important;
}
body.premium-preview .blog-main > .blog-card:first-child .blog-card-overlay {
  padding: 3rem 2.6rem !important;
}
body.premium-preview .blog-main > .blog-card:first-child .blog-card-overlay::before {
  content: 'À la une';
  display: inline-block;
  font-family: var(--pr-sans);
  font-size: 0.6rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--pr-gold);
  padding-bottom: 0.45rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.35);
  align-self: flex-start;
}

/* ---------- SIDEBAR (shared: category, single, home, tag) ---------- */
body.premium-preview .blog-sidebar {
  background: transparent !important;
  padding: 0 !important;
  position: sticky !important;
  top: 120px !important;
  align-self: start !important;
  grid-column: 2 !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  height: auto !important;
  right: auto !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  color: var(--pr-plum) !important;
  flex: none !important;
  z-index: auto !important;
  overflow: visible !important;
}
body.premium-preview .blog-sidebar .sidebar-close { display: none !important; }
body.premium-preview .sidebar-block {
  margin-bottom: 3rem !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}
body.premium-preview .sidebar-block h3 {
  font-family: var(--pr-sans) !important;
  font-size: 0.66rem !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  color: var(--pr-gold) !important;
  padding: 0 0 1rem !important;
  margin: 0 0 1.4rem !important;
  border-bottom: 1px solid var(--pr-line) !important;
  background: none !important;
  -webkit-text-fill-color: var(--pr-gold) !important;
}
body.premium-preview .sidebar-block ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
body.premium-preview .sidebar-block ul li {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}
body.premium-preview .sidebar-block ul li a {
  display: inline-block !important;
  padding: 0.55rem 0 !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.88rem !important;
  font-weight: 400 !important;
  color: var(--pr-plum) !important;
  text-decoration: none !important;
  letter-spacing: 0.005em;
  transition: color 0.3s ease, padding-left 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  border: none !important;
}
body.premium-preview .sidebar-block ul li a:hover {
  color: var(--pr-rose) !important;
  padding-left: 0.35rem !important;
}
body.premium-preview .sidebar-block .tags-list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.5rem !important;
}
body.premium-preview .sidebar-block .tag-item {
  display: inline-block !important;
  padding: 0.45rem 0.9rem !important;
  background: transparent !important;
  border: 1px solid var(--pr-line) !important;
  border-radius: 0 !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--pr-plum-soft) !important;
  text-decoration: none !important;
  transition: all 0.35s ease !important;
}
body.premium-preview .sidebar-block .tag-item:hover {
  background: var(--pr-plum) !important;
  color: var(--pr-ivory) !important;
  border-color: var(--pr-plum) !important;
}
body.premium-preview .sidebar-toggle {
  display: none !important;
}

/* ---------- PAGINATION ---------- */
body.premium-preview .pagination,
body.premium-preview .search-pagination {
  display: block !important;
  max-width: 1320px !important;
  width: 100% !important;
  margin: 3rem auto 6rem !important;
  padding: 2.5rem 2rem 0 !important;
  text-align: center !important;
  border-top: 1px solid var(--pr-line) !important;
  box-sizing: border-box !important;
  grid-column: 1 / -1 !important;
  background: var(--pr-ivory) !important;
}
/* .search-pagination wraps a <ul> generated by WP paginate_links(type='list') */
body.premium-preview .search-pagination ul,
body.premium-preview .search-pagination .page-numbers {
  list-style: none !important;
}
body.premium-preview .search-pagination ul {
  display: inline-flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.45rem !important;
  padding: 0 !important;
  margin: 0 !important;
}
body.premium-preview .search-pagination ul > li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-flex !important;
}
body.premium-preview .pagination .page-numbers,
body.premium-preview .search-pagination .page-numbers,
body.premium-preview .search-pagination ul > li .page-numbers,
body.premium-preview .search-pagination ul > li a,
body.premium-preview .search-pagination ul > li span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 42px !important;
  height: 42px !important;
  padding: 0 0.9rem !important;
  margin: 0 !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.74rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: var(--pr-plum) !important;
  background: transparent !important;
  border: 1px solid var(--pr-line) !important;
  border-radius: 0 !important;
  text-decoration: none !important;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}
body.premium-preview .pagination .page-numbers:hover,
body.premium-preview .search-pagination .page-numbers:hover,
body.premium-preview .search-pagination ul > li a.page-numbers:hover {
  border-color: var(--pr-gold) !important;
  color: var(--pr-gold) !important;
  background: transparent !important;
}
body.premium-preview .pagination .page-numbers.current,
body.premium-preview .search-pagination .page-numbers.current,
body.premium-preview .search-pagination ul > li span.current {
  background: var(--pr-plum) !important;
  color: var(--pr-ivory) !important;
  border-color: var(--pr-plum) !important;
  font-weight: 600 !important;
}
body.premium-preview .pagination .page-numbers.dots,
body.premium-preview .search-pagination .page-numbers.dots {
  border: none !important;
  min-width: 1.5rem !important;
  color: var(--pr-gray) !important;
}
/* Show/hide the mobile/desktop arrow variants */
body.premium-preview .search-pagination .mobile-only { display: none !important; }
body.premium-preview .search-pagination .desktop-only { display: inline !important; }
@media (max-width: 640px) {
  body.premium-preview .search-pagination { margin: 2.5rem auto 4rem !important; padding: 2rem 1.2rem 0 !important; }
  body.premium-preview .search-pagination .mobile-only { display: inline !important; }
  body.premium-preview .search-pagination .desktop-only { display: none !important; }
  body.premium-preview .search-pagination .page-numbers,
  body.premium-preview .search-pagination ul > li a,
  body.premium-preview .search-pagination ul > li span { min-width: 36px !important; height: 36px !important; padding: 0 0.7rem !important; font-size: 0.7rem !important; }
}

/* ---------- SINGLE ARTICLE ---------- */
body.premium-preview .single-main {
  max-width: none !important;
}
body.premium-preview .single-article {
  background: var(--pr-ivory) !important;
  padding: 0 !important;
  box-shadow: none !important;
  border: none !important;
  border-radius: 0 !important;
}
body.premium-preview .single-article-img {
  margin: 0 0 3rem !important;
  overflow: hidden;
  border: 1px solid var(--pr-line);
}
body.premium-preview .single-article-img img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}
body.premium-preview .single-article-content {
  max-width: 720px !important;
  margin: 0 auto !important;
  font-family: var(--pr-sans) !important;
  font-size: 1.05rem !important;
  line-height: 1.85 !important;
  color: var(--pr-plum) !important;
}
body.premium-preview .single-article-content > * { margin-bottom: 1.4rem; }
body.premium-preview .single-article-content h2,
body.premium-preview .single-article-content h3,
body.premium-preview .single-article-content h4 {
  font-family: var(--pr-serif) !important;
  font-weight: 400 !important;
  color: var(--pr-plum) !important;
  letter-spacing: -0.01em !important;
  line-height: 1.2 !important;
  margin-top: 3rem !important;
  margin-bottom: 1.2rem !important;
}
body.premium-preview .single-article-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem) !important;
}
body.premium-preview .single-article-content h3 {
  font-size: clamp(1.4rem, 2.6vw, 1.9rem) !important;
}
body.premium-preview .single-article-content p {
  font-family: var(--pr-sans) !important;
  font-size: 1.05rem !important;
  line-height: 1.85 !important;
  color: var(--pr-plum) !important;
  margin: 0 0 1.5rem !important;
}
body.premium-preview .single-article-content p strong {
  color: var(--pr-plum) !important;
  font-weight: 600 !important;
}
body.premium-preview .single-article-content a {
  color: var(--pr-rose) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255, 77, 166, 0.35) !important;
  transition: border-color 0.3s ease, color 0.3s ease !important;
}
body.premium-preview .single-article-content a:hover {
  color: var(--pr-rose-deep) !important;
  border-bottom-color: var(--pr-rose-deep) !important;
}
body.premium-preview .single-article-content blockquote {
  border: none !important;
  border-left: 2px solid var(--pr-gold) !important;
  padding: 0.5rem 0 0.5rem 1.8rem !important;
  margin: 2rem 0 !important;
  font-family: var(--pr-serif) !important;
  font-style: italic !important;
  font-size: 1.35rem !important;
  line-height: 1.5 !important;
  color: var(--pr-plum-soft) !important;
}
body.premium-preview .single-article-content ul,
body.premium-preview .single-article-content ol {
  padding-left: 1.5rem !important;
  margin: 1.4rem 0 !important;
}
body.premium-preview .single-article-content li {
  margin-bottom: 0.6rem !important;
  line-height: 1.75 !important;
}

/* Meta info */
body.premium-preview .single-article-meta {
  max-width: 720px !important;
  margin: 4rem auto 0 !important;
  padding: 2rem 0 !important;
  border-top: 1px solid var(--pr-line) !important;
  border-bottom: 1px solid var(--pr-line) !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 2.5rem !important;
  background: transparent !important;
}
body.premium-preview .single-article-meta span {
  font-family: var(--pr-sans) !important;
  font-size: 0.82rem !important;
  color: var(--pr-plum) !important;
  background: transparent !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
body.premium-preview .single-article-meta span[data-label]::before {
  content: attr(data-label);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pr-gold);
  font-weight: 500;
}
body.premium-preview .single-article-meta a {
  color: var(--pr-plum) !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}
body.premium-preview .single-article-meta a:hover { color: var(--pr-rose) !important; }

/* Prev/next nav */
body.premium-preview .single-article-nav {
  max-width: 720px !important;
  margin: 3rem auto !important;
  display: flex !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  background: transparent !important;
  padding: 0 !important;
}
body.premium-preview .single-article-nav .nav-prev a,
body.premium-preview .single-article-nav .nav-next a {
  display: inline-block !important;
  padding: 1rem 1.8rem !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  color: var(--pr-plum) !important;
  border: 1px solid var(--pr-plum) !important;
  text-decoration: none !important;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  background: transparent !important;
  border-radius: 0 !important;
}
body.premium-preview .single-article-nav .nav-prev a:hover,
body.premium-preview .single-article-nav .nav-next a:hover {
  background: var(--pr-plum) !important;
  color: var(--pr-ivory) !important;
}
body.premium-preview .single-article-comments {
  max-width: 720px !important;
  margin: 4rem auto 0 !important;
}

/* ============================================================
   COMMENTS — full premium rewrite
   Markup: #comments.comments-area > h2.comments-title +
           ol.comment-list > li.comment > article.comment-body >
           .comment-meta > .comment-author.vcard + .comment-metadata ;
           .comment-content ; .reply > .comment-reply-link
   Form: .comment-form-wrapper > h3.respond-title + form#commentform >
         .form-group (custom fields) + textarea + button.btn-comment
   ============================================================ */

/* Outer wrapper — flat editorial card */
body.premium-preview .comments-area {
  max-width: 720px !important;
  margin: 0 auto !important;
  padding: 3.5rem 0 0 !important;
  background: transparent !important;
  border: none !important;
  border-top: 1px solid var(--pr-line) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Title "X commentaires" */
body.premium-preview .comments-area .comments-title {
  font-family: var(--pr-serif) !important;
  font-weight: 400 !important;
  font-style: italic !important;
  font-size: clamp(1.6rem, 3vw, 2.2rem) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.005em !important;
  color: var(--pr-plum) !important;
  -webkit-text-fill-color: var(--pr-plum) !important;
  background: none !important;
  margin: 0 0 0.4rem !important;
  padding: 0 !important;
  border: none !important;
}
body.premium-preview .comments-area .comments-title::before {
  content: 'Discussion';
  display: block;
  font-family: var(--pr-sans);
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pr-gold);
  padding-bottom: 0.4rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--pr-gold-soft);
  width: fit-content;
}

/* No-comments state */
body.premium-preview .comments-area .no-comments {
  background: var(--pr-cream) !important;
  border: 1px solid var(--pr-line) !important;
  border-radius: 0 !important;
  padding: 2rem 1.8rem !important;
  text-align: center !important;
  margin: 2rem 0 !important;
  position: relative;
}
body.premium-preview .comments-area .no-comments::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pr-rose), var(--pr-violet), var(--pr-gold));
}
body.premium-preview .comments-area .no-comments p {
  font-family: var(--pr-serif) !important;
  font-style: italic !important;
  font-size: 1.1rem !important;
  color: var(--pr-plum-soft) !important;
  margin: 0 !important;
  line-height: 1.5 !important;
}

/* Comment list */
body.premium-preview .comments-area .comment-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 2.5rem 0 0 !important;
}
body.premium-preview .comments-area .comment-list li.comment,
body.premium-preview .comments-area .comment-list > li {
  list-style: none !important;
  margin: 0 0 2rem !important;
  padding: 1.8rem 0 !important;
  border-bottom: 1px solid var(--pr-line) !important;
  border-top: none !important;
  background: transparent !important;
}
body.premium-preview .comments-area .comment-list > li:last-child {
  border-bottom: none !important;
}
body.premium-preview .comments-area .comment-list .comment-body {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* Comment meta (author + date) */
body.premium-preview .comments-area .comment-meta {
  display: flex !important;
  align-items: baseline !important;
  flex-wrap: wrap !important;
  gap: 0.7rem 1.2rem !important;
  margin: 0 0 0.9rem !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}
body.premium-preview .comments-area .comment-author {
  font-family: var(--pr-serif) !important;
  font-weight: 400 !important;
  font-size: 1.1rem !important;
  color: var(--pr-plum) !important;
  -webkit-text-fill-color: var(--pr-plum) !important;
  background: none !important;
  margin: 0 !important;
  padding: 0 !important;
  letter-spacing: -0.005em;
}
body.premium-preview .comments-area .comment-author .fn {
  font-style: italic;
  color: var(--pr-plum);
  text-decoration: none !important;
}
body.premium-preview .comments-area .comment-author a {
  color: inherit !important;
  text-decoration: none !important;
}
body.premium-preview .comments-area .comment-author .says { display: none !important; }

body.premium-preview .comments-area .comment-metadata,
body.premium-preview .comments-area .commentmetadata {
  font-family: var(--pr-sans) !important;
  font-size: 0.62rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--pr-gold) !important;
  margin: 0 !important;
  padding: 0 !important;
  display: inline-block !important;
  border: none !important;
  background: none !important;
}
body.premium-preview .comments-area .comment-metadata a,
body.premium-preview .comments-area .commentmetadata a {
  color: var(--pr-gold) !important;
  text-decoration: none !important;
}

/* Comment body content */
body.premium-preview .comments-area .comment-content {
  font-family: var(--pr-sans) !important;
  font-size: 0.95rem !important;
  line-height: 1.75 !important;
  color: var(--pr-plum) !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.premium-preview .comments-area .comment-content p {
  margin: 0 0 1rem !important;
}
body.premium-preview .comments-area .comment-content p:last-child { margin-bottom: 0 !important; }
body.premium-preview .comments-area .comment-content a {
  color: var(--pr-rose) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255, 77, 166, 0.35) !important;
}
body.premium-preview .comments-area .comment-content a:hover {
  border-bottom-color: var(--pr-rose-deep) !important;
  color: var(--pr-rose-deep) !important;
}

/* Reply button */
body.premium-preview .comments-area .reply {
  margin-top: 1rem !important;
}
body.premium-preview .comments-area .reply .comment-reply-link,
body.premium-preview .comments-area .reply a {
  display: inline-flex !important;
  align-items: center !important;
  padding: 0.55rem 1.1rem !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.6rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--pr-plum) !important;
  background: transparent !important;
  border: 1px solid var(--pr-line) !important;
  border-radius: 0 !important;
  text-decoration: none !important;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}
body.premium-preview .comments-area .reply .comment-reply-link:hover,
body.premium-preview .comments-area .reply a:hover {
  background: var(--pr-plum) !important;
  color: var(--pr-ivory) !important;
  border-color: var(--pr-plum) !important;
}

/* Children (nested replies) */
body.premium-preview .comments-area .comment-list .children {
  list-style: none !important;
  padding: 0 0 0 1.4rem !important;
  margin: 1.8rem 0 0 0.3rem !important;
  border-left: 1px solid var(--pr-gold-soft) !important;
}
body.premium-preview .comments-area .comment-list .children li {
  padding: 1.3rem 0 !important;
  border-bottom: 1px solid var(--pr-line) !important;
  margin: 0 !important;
}
body.premium-preview .comments-area .comment-list .children li:last-child {
  border-bottom: none !important;
  padding-bottom: 0 !important;
}
body.premium-preview .comments-area .comment-list .children .comment-author {
  font-size: 1rem !important;
}

/* Comment navigation (older/newer) */
body.premium-preview .comments-area .comment-navigation {
  display: flex !important;
  justify-content: space-between !important;
  gap: 1rem !important;
  margin: 2rem 0 !important;
  padding: 1.2rem 0 !important;
  border-top: 1px solid var(--pr-line) !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
}
body.premium-preview .comments-area .comment-navigation a {
  color: var(--pr-plum) !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  transition: color 0.3s ease !important;
}
body.premium-preview .comments-area .comment-navigation a:hover {
  color: var(--pr-rose) !important;
}

/* ============================================================
   COMMENT FORM
   ============================================================ */
body.premium-preview .comment-form-wrapper {
  margin: 3.5rem 0 0 !important;
  padding: 3rem 0 0 !important;
  border-top: 1px solid var(--pr-line) !important;
}
body.premium-preview .comment-form-wrapper .respond-title {
  font-family: var(--pr-serif) !important;
  font-weight: 400 !important;
  font-style: italic !important;
  font-size: clamp(1.5rem, 2.8vw, 2rem) !important;
  line-height: 1.15 !important;
  color: var(--pr-plum) !important;
  -webkit-text-fill-color: var(--pr-plum) !important;
  background: none !important;
  margin: 0 0 0.4rem !important;
  padding: 0 !important;
  border: none !important;
}
body.premium-preview .comment-form-wrapper .respond-title::before {
  content: 'Votre avis';
  display: block;
  font-family: var(--pr-sans);
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pr-gold);
  padding-bottom: 0.4rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--pr-gold-soft);
  width: fit-content;
}
body.premium-preview .comment-form {
  margin-top: 2rem !important;
}
body.premium-preview .comment-form .form-group {
  margin-bottom: 1.1rem !important;
}
body.premium-preview .comment-form input[type="text"],
body.premium-preview .comment-form input[type="email"],
body.premium-preview .comment-form input[type="url"],
body.premium-preview .comment-form textarea {
  width: 100% !important;
  padding: 0.95rem 1.1rem !important;
  margin: 0 !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.92rem !important;
  color: var(--pr-plum) !important;
  background: var(--pr-cream) !important;
  border: 1px solid var(--pr-line) !important;
  border-radius: 0 !important;
  outline: none !important;
  box-shadow: none !important;
  transition: border-color 0.3s ease, background 0.3s ease !important;
  box-sizing: border-box !important;
}
body.premium-preview .comment-form input:focus,
body.premium-preview .comment-form textarea:focus {
  border-color: var(--pr-gold) !important;
  background: var(--pr-ivory) !important;
  box-shadow: none !important;
}
body.premium-preview .comment-form input::placeholder,
body.premium-preview .comment-form textarea::placeholder {
  color: var(--pr-gray) !important;
  font-style: italic;
}
body.premium-preview .comment-form textarea {
  min-height: 160px !important;
  resize: vertical !important;
  line-height: 1.65 !important;
}

/* Cookies consent checkbox */
body.premium-preview .comment-form-cookies-consent,
body.premium-preview .comment-form .comment-form-cookies-consent {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.7rem !important;
  margin: 1rem 0 1.3rem !important;
  padding: 0 !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.78rem !important;
  color: var(--pr-gray) !important;
  background: transparent !important;
  border: none !important;
}
body.premium-preview .comment-form-cookies-consent input[type="checkbox"] {
  accent-color: var(--pr-gold) !important;
  transform: none !important;
  width: 16px !important;
  height: 16px !important;
  flex-shrink: 0;
  margin-top: 0.15rem !important;
}
body.premium-preview .comment-form-cookies-consent label {
  color: var(--pr-gray) !important;
  line-height: 1.5 !important;
  cursor: pointer;
}

/* Logged-in notice */
body.premium-preview .comment-form .logged-in-as,
body.premium-preview .comment-form .must-log-in,
body.premium-preview .comment-form .comment-notes {
  font-family: var(--pr-sans) !important;
  font-size: 0.82rem !important;
  color: var(--pr-gray) !important;
  margin: 0 0 1.2rem !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
}
body.premium-preview .comment-form .logged-in-as a,
body.premium-preview .comment-form .must-log-in a {
  color: var(--pr-rose) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255, 77, 166, 0.35) !important;
  font-weight: 500 !important;
}
body.premium-preview .comment-form .logged-in-as a:hover,
body.premium-preview .comment-form .must-log-in a:hover {
  color: var(--pr-rose-deep) !important;
  border-bottom-color: var(--pr-rose-deep) !important;
}

/* Honeypot hidden */
body.premium-preview .comment-form-honeypot,
body.premium-preview .comment-form input[name="honeypot"] {
  display: none !important;
}

/* Akismet privacy notice removed (design choice) */
body.premium-preview .akismet_comment_form_privacy_notice,
body.premium-preview .comment-form .akismet_comment_form_privacy_notice {
  display: none !important;
}

/* Submit button */
body.premium-preview .comment-form .form-submit,
body.premium-preview .comment-form .submit-wrapper {
  margin-top: 1.4rem !important;
  padding: 0 !important;
}
body.premium-preview .comment-form input[type="submit"],
body.premium-preview .comment-form .btn-comment,
body.premium-preview .comment-form button[type="submit"] {
  display: inline-flex !important;
  align-items: center !important;
  padding: 1.05rem 2.4rem !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.7rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  color: var(--pr-ivory) !important;
  background: var(--pr-plum) !important;
  border: 1px solid var(--pr-plum) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  cursor: pointer !important;
  width: auto !important;
  margin: 0 !important;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  transform: none !important;
}
body.premium-preview .comment-form input[type="submit"]:hover,
body.premium-preview .comment-form .btn-comment:hover,
body.premium-preview .comment-form button[type="submit"]:hover {
  background: var(--pr-gold) !important;
  color: var(--pr-plum) !important;
  border-color: var(--pr-gold) !important;
  transform: none !important;
}

/* Trailing paragraphs at end of form (logged-in footer links etc.) */
body.premium-preview .comment-form > p {
  font-family: var(--pr-sans) !important;
  font-size: 0.82rem !important;
  color: var(--pr-gray) !important;
}

/* Responsive */
@media (max-width: 640px) {
  body.premium-preview .comments-area { padding-top: 2.5rem !important; }
  body.premium-preview .comments-area .comment-list .children {
    padding-left: 1rem !important;
    margin-left: 0.2rem !important;
  }
  body.premium-preview .comments-area .comment-navigation { flex-direction: column; }
  body.premium-preview .comment-form input[type="submit"],
  body.premium-preview .comment-form .btn-comment,
  body.premium-preview .comment-form button[type="submit"] {
    width: 100% !important;
    justify-content: center !important;
  }
  body.premium-preview .comment-form-wrapper { padding-top: 2.5rem !important; }
}

/* ---------- CONTACT PARALLAX (shared across templates — matches homepage .pr-contact) ---------- */
body.premium-preview .contact-parallax {
  position: relative !important;
  padding: 11rem 2rem !important;
  background-image: linear-gradient(180deg, rgba(26, 11, 31, 0.82), rgba(26, 11, 31, 0.88)), url('Images/bg-contact.jpg') !important;
  background-size: cover !important;
  background-position: center !important;
  background-attachment: fixed !important;
  background-repeat: no-repeat !important;
  color: var(--pr-ivory) !important;
  text-align: center !important;
  overflow: hidden !important;
}
body.premium-preview .contact-parallax::before,
body.premium-preview .contact-parallax::after {
  display: none !important;
}
body.premium-preview .contact-parallax .contact-parallax-content {
  position: relative !important;
  z-index: 2 !important;
  max-width: 640px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  background: transparent !important;
}
body.premium-preview .contact-parallax h2 {
  font-family: var(--pr-serif) !important;
  font-weight: 300 !important;
  font-size: clamp(2.4rem, 5vw, 4rem) !important;
  line-height: 1.05 !important;
  color: var(--pr-ivory) !important;
  margin: 0 0 1.2rem !important;
  text-transform: none !important;
}
body.premium-preview .contact-parallax p {
  font-family: var(--pr-sans) !important;
  font-size: 1rem !important;
  line-height: 1.75 !important;
  color: rgba(253, 250, 247, 0.75) !important;
  margin: 0 0 2.5rem !important;
}
body.premium-preview .contact-parallax .contact-parallax-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.85rem !important;
  padding: 1.05rem 2.2rem !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border: 1px solid var(--pr-ivory) !important;
  color: var(--pr-ivory) !important;
  background: transparent !important;
  border-radius: 0 !important;
  transition: all 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}
body.premium-preview .contact-parallax .contact-parallax-btn:hover {
  background: var(--pr-ivory) !important;
  color: var(--pr-plum) !important;
}

/* ---------- PAGE CONTACT ---------- */
body.premium-preview .contact-section {
  padding: 8rem 2rem !important;
  background: var(--pr-ivory) !important;
}
body.premium-preview .contact-container {
  max-width: 1200px !important;
  width: 100% !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) !important;
  gap: 5rem !important;
  align-items: start !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  flex-wrap: nowrap !important;
}
body.premium-preview .contact-container:hover { box-shadow: none !important; }
body.premium-preview .contact-form-block {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  min-width: 0 !important;
  flex: none !important;
}
body.premium-preview .form-group { margin-bottom: 1.1rem !important; text-align: left !important; }
body.premium-preview .form-group label {
  display: block !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.64rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  color: var(--pr-plum-soft) !important;
  margin-bottom: 0.5rem !important;
}
body.premium-preview .contact-form input,
body.premium-preview .contact-form textarea {
  width: 100% !important;
  padding: 0.95rem 1.1rem !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.92rem !important;
  color: var(--pr-plum) !important;
  background: var(--pr-cream) !important;
  border: 1px solid var(--pr-line) !important;
  border-radius: 0 !important;
  outline: none !important;
  transition: border-color 0.3s ease !important;
}
body.premium-preview .contact-form input:focus,
body.premium-preview .contact-form textarea:focus {
  border-color: var(--pr-gold) !important;
}
body.premium-preview .contact-form textarea { min-height: 160px !important; resize: vertical !important; }
body.premium-preview .contact-form button {
  display: inline-flex !important;
  align-items: center !important;
  padding: 1.05rem 2.4rem !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--pr-ivory) !important;
  background: var(--pr-plum) !important;
  border: 1px solid var(--pr-plum) !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}
body.premium-preview .contact-form button:hover {
  background: var(--pr-gold) !important;
  color: var(--pr-plum) !important;
  border-color: var(--pr-gold) !important;
  transform: none !important;
}
body.premium-preview .rgpd-consent {
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.7rem !important;
  background: transparent !important;
  border: none !important;
  padding: 0.8rem 0 !important;
  border-radius: 0 !important;
  font-size: 0.82rem !important;
  color: var(--pr-gray) !important;
  margin: 0.8rem 0 1.2rem !important;
}
body.premium-preview .rgpd-consent label { color: var(--pr-gray) !important; font-size: 0.78rem !important; }
body.premium-preview .rgpd-consent a { color: var(--pr-rose) !important; }
body.premium-preview .contact-social-block {
  padding: 2.5rem !important;
  background: var(--pr-cream) !important;
  border: 1px solid var(--pr-line) !important;
  position: relative;
}
body.premium-preview .contact-social-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pr-rose), var(--pr-violet), var(--pr-gold));
}
body.premium-preview .contact-social-block h3 {
  font-family: var(--pr-sans) !important;
  font-size: 0.66rem !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  color: var(--pr-gold) !important;
  padding-bottom: 1rem !important;
  margin: 0 0 1.5rem !important;
  border-bottom: 1px solid var(--pr-line) !important;
  background: none !important;
  -webkit-text-fill-color: var(--pr-gold) !important;
}
body.premium-preview .contact-social-block .social-links {
  display: flex !important;
  gap: 0.6rem !important;
}
body.premium-preview .contact-social-block .social-icon {
  width: 44px !important;
  height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  color: var(--pr-plum) !important;
  border: 1px solid var(--pr-plum) !important;
  border-radius: 0 !important;
  transition: all 0.4s ease !important;
}
body.premium-preview .contact-social-block .social-icon:hover {
  background: var(--pr-plum) !important;
  color: var(--pr-ivory) !important;
  transform: translateY(-2px);
}
body.premium-preview .contact-social-block .social-icon svg {
  width: 17px !important;
  height: 17px !important;
}
/* Contact Form 7 styling */
body.premium-preview .wpcf7 input[type="text"],
body.premium-preview .wpcf7 input[type="email"],
body.premium-preview .wpcf7 input[type="tel"],
body.premium-preview .wpcf7 textarea {
  width: 100% !important;
  padding: 1rem 1.2rem !important;
  margin: 0.3rem 0 1.2rem !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.95rem !important;
  color: var(--pr-plum) !important;
  background: var(--pr-cream) !important;
  border: 1px solid var(--pr-line) !important;
  border-radius: 0 !important;
  outline: none !important;
  transition: border-color 0.3s ease !important;
}
body.premium-preview .wpcf7 input[type="text"]:focus,
body.premium-preview .wpcf7 input[type="email"]:focus,
body.premium-preview .wpcf7 input[type="tel"]:focus,
body.premium-preview .wpcf7 textarea:focus {
  border-color: var(--pr-gold) !important;
}
body.premium-preview .wpcf7 textarea {
  min-height: 160px !important;
  resize: vertical !important;
}
body.premium-preview .wpcf7 label {
  font-family: var(--pr-sans) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  color: var(--pr-plum-soft) !important;
  display: block !important;
  margin-bottom: 0.2rem !important;
}
body.premium-preview .wpcf7 input[type="submit"] {
  display: inline-flex !important;
  align-items: center !important;
  padding: 1.05rem 2.4rem !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--pr-ivory) !important;
  background: var(--pr-plum) !important;
  border: 1px solid var(--pr-plum) !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  margin-top: 0.5rem !important;
}
body.premium-preview .wpcf7 input[type="submit"]:hover {
  background: var(--pr-gold) !important;
  color: var(--pr-plum) !important;
  border-color: var(--pr-gold) !important;
}
body.premium-preview .politique-confidentialite {
  font-size: 0.82rem !important;
  color: var(--pr-gray) !important;
  margin-top: 1.5rem !important;
}
body.premium-preview .politique-confidentialite a {
  color: var(--pr-rose) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255, 77, 166, 0.35);
}

/* ---------- SEARCH RESULTS ---------- */
/* Hard reset anchors inside search cards to kill UA blue + underline */
body.premium-preview .search-card,
body.premium-preview .search-card a,
body.premium-preview .search-card a:link,
body.premium-preview .search-card a:visited,
body.premium-preview .search-card a:hover,
body.premium-preview .search-card a:focus,
body.premium-preview .search-card a:active {
  text-decoration: none !important;
  color: inherit !important;
}

body.premium-preview .search-header {
  max-width: 1320px !important;
  margin: 0 auto !important;
  padding: 5rem 2rem 2rem !important;
  text-align: center !important;
  background: var(--pr-ivory) !important;
}
body.premium-preview .search-subtitle {
  font-family: var(--pr-sans) !important;
  font-size: 0.66rem !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  color: var(--pr-gold) !important;
  margin: 0 !important;
  display: inline-block !important;
  padding-bottom: 0.4rem !important;
  border-bottom: 1px solid var(--pr-gold-soft) !important;
}
body.premium-preview .search-subtitle span {
  display: block !important;
  color: var(--pr-plum) !important;
  font-family: var(--pr-serif) !important;
  font-style: italic !important;
  font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: -0.005em !important;
  margin-top: 1rem !important;
  line-height: 1.15 !important;
  padding-top: 0 !important;
  border: none !important;
}
body.premium-preview main.search-container {
  max-width: 1320px !important;
  margin: 0 auto !important;
  padding: 3rem 2rem 5rem !important;
  background: var(--pr-ivory) !important;
  box-sizing: border-box !important;
}
body.premium-preview .search-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 1.8rem !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* Card */
body.premium-preview .search-card {
  display: flex !important;
  flex-direction: column !important;
  background: var(--pr-cream) !important;
  border: 1px solid var(--pr-line) !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  position: relative !important;
  box-shadow: none !important;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.45s ease !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  height: auto !important;
  color: var(--pr-plum) !important;
}
body.premium-preview .search-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pr-rose), var(--pr-violet), var(--pr-gold));
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 3;
}
body.premium-preview .search-card:hover {
  transform: translateY(-4px) !important;
  border-color: var(--pr-gold) !important;
}
body.premium-preview .search-card:hover::before { opacity: 1; }

/* Thumbnail */
body.premium-preview .search-thumb {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  overflow: hidden !important;
  aspect-ratio: 4 / 3 !important;
  background: var(--pr-plum);
  margin: 0 !important;
  padding: 0 !important;
}
body.premium-preview .search-thumb a {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
}
body.premium-preview .search-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  filter: grayscale(10%) brightness(0.92) !important;
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), filter 1.2s ease !important;
}
body.premium-preview .search-card:hover .search-thumb img {
  transform: scale(1.05) !important;
  filter: grayscale(0%) brightness(1) !important;
}

/* Body */
body.premium-preview .search-body {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
  padding: 1.7rem 1.6rem 1rem !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}
body.premium-preview .search-card-title {
  font-family: var(--pr-serif) !important;
  font-weight: 400 !important;
  font-size: 1.35rem !important;
  line-height: 1.25 !important;
  letter-spacing: -0.005em !important;
  margin: 0 0 0.8rem !important;
  padding: 0 !important;
  color: var(--pr-plum) !important;
  -webkit-text-fill-color: var(--pr-plum) !important;
  background: none !important;
  background-clip: border-box !important;
  -webkit-background-clip: border-box !important;
  text-decoration: none !important;
  word-wrap: break-word !important;
}
body.premium-preview .search-card-title a {
  color: var(--pr-plum) !important;
  text-decoration: none !important;
  background: none !important;
  -webkit-text-fill-color: var(--pr-plum) !important;
  transition: color 0.3s ease !important;
}
body.premium-preview .search-card:hover .search-card-title a {
  color: var(--pr-rose) !important;
  -webkit-text-fill-color: var(--pr-rose) !important;
}
body.premium-preview .search-excerpt {
  font-family: var(--pr-sans) !important;
  font-size: 0.86rem !important;
  line-height: 1.6 !important;
  color: var(--pr-gray) !important;
  margin: 0 !important;
  padding: 0 !important;
  flex: 1 1 auto !important;
  word-wrap: break-word !important;
}

/* Footer */
body.premium-preview .search-footer {
  padding: 0 1.6rem 1.6rem !important;
  margin: 0 !important;
  border: none !important;
  background: transparent !important;
  text-align: left !important;
}
body.premium-preview .search-readmore {
  display: inline-flex !important;
  align-items: center !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.64rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  color: var(--pr-gold) !important;
  background: transparent !important;
  padding: 0 0 0.3rem !important;
  border: none !important;
  border-bottom: 1px solid var(--pr-gold) !important;
  border-radius: 0 !important;
  text-decoration: none !important;
  transition: all 0.35s ease !important;
}
body.premium-preview .search-readmore:hover {
  color: var(--pr-plum) !important;
  border-bottom-color: var(--pr-plum) !important;
}

/* Responsive */
@media (max-width: 1024px) {
  body.premium-preview .search-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  body.premium-preview .search-header { padding: 4rem 1.5rem 1.5rem !important; }
  body.premium-preview main.search-container { padding: 2rem 1.5rem 4rem !important; }
}
@media (max-width: 640px) {
  body.premium-preview .search-grid {
    grid-template-columns: 1fr !important;
    gap: 1.4rem !important;
  }
  body.premium-preview .search-header { padding: 3.5rem 1.2rem 1.2rem !important; }
  body.premium-preview main.search-container { padding: 1.5rem 1.2rem 3rem !important; }
  body.premium-preview .search-subtitle span { font-size: clamp(1.4rem, 6vw, 2rem) !important; }
}
/* Empty state: "no results" premium card */
body.premium-preview .search-noresult {
  max-width: 680px !important;
  margin: 5rem auto !important;
  padding: 4.5rem 3rem !important;
  text-align: center !important;
  background: var(--pr-cream) !important;
  border: 1px solid var(--pr-line) !important;
  position: relative !important;
  font-family: var(--pr-sans) !important;
  font-size: 1rem !important;
  color: var(--pr-plum) !important;
  display: block !important;
  box-sizing: border-box !important;
}
body.premium-preview .search-noresult::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pr-rose), var(--pr-violet), var(--pr-gold));
  pointer-events: none;
}
body.premium-preview .search-noresult__eyebrow {
  display: inline-block !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.62rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
  color: var(--pr-gold) !important;
  padding-bottom: 0.45rem !important;
  margin: 0 0 1.8rem !important;
  border-bottom: 1px solid var(--pr-gold-soft) !important;
}
body.premium-preview .search-noresult__title {
  font-family: var(--pr-serif) !important;
  font-weight: 400 !important;
  font-size: clamp(1.7rem, 3.5vw, 2.6rem) !important;
  line-height: 1.15 !important;
  letter-spacing: -0.005em !important;
  color: var(--pr-plum) !important;
  margin: 0 0 1.3rem !important;
  -webkit-text-fill-color: var(--pr-plum) !important;
  background: none !important;
}
body.premium-preview .search-noresult__title em {
  font-style: italic !important;
  color: var(--pr-rose) !important;
  -webkit-text-fill-color: var(--pr-rose) !important;
}
body.premium-preview .search-noresult__text {
  font-family: var(--pr-sans) !important;
  font-size: 0.98rem !important;
  line-height: 1.7 !important;
  color: var(--pr-gray) !important;
  margin: 0 0 2.2rem !important;
  max-width: 440px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
body.premium-preview .search-noresult__actions {
  display: flex !important;
  gap: 0.8rem !important;
  justify-content: center !important;
  flex-wrap: wrap !important;
}
body.premium-preview .search-noresult__btn {
  display: inline-flex !important;
  align-items: center !important;
  padding: 1rem 2rem !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  border: 1px solid var(--pr-plum) !important;
  color: var(--pr-plum) !important;
  background: transparent !important;
  border-radius: 0 !important;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}
body.premium-preview .search-noresult__btn:hover {
  background: var(--pr-plum) !important;
  color: var(--pr-ivory) !important;
}
body.premium-preview .search-noresult__btn--primary {
  background: var(--pr-plum) !important;
  color: var(--pr-ivory) !important;
}
body.premium-preview .search-noresult__btn--primary:hover {
  background: var(--pr-gold) !important;
  border-color: var(--pr-gold) !important;
  color: var(--pr-plum) !important;
}
@media (max-width: 640px) {
  body.premium-preview .search-noresult {
    margin: 3rem 1rem !important;
    padding: 3rem 1.5rem !important;
  }
  body.premium-preview .search-noresult__title {
    font-size: clamp(1.4rem, 6vw, 1.9rem) !important;
  }
  body.premium-preview .search-noresult__actions {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  body.premium-preview .search-noresult__btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* ---------- 404 ---------- */
body.premium-preview .error-404-wrapper {
  max-width: 820px !important;
  margin: 0 auto !important;
  padding: 7rem 2rem 9rem !important;
  text-align: center !important;
  background: var(--pr-ivory) !important;
}
body.premium-preview .error-404-wrapper .error-code {
  font-family: var(--pr-serif) !important;
  font-weight: 300 !important;
  font-size: clamp(7rem, 18vw, 14rem) !important;
  line-height: 0.9 !important;
  margin: 0 0 1rem !important;
  color: var(--pr-plum);
  background: linear-gradient(135deg, var(--pr-rose), var(--pr-violet), var(--pr-gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.premium-preview .error-404-wrapper .error-message {
  font-family: var(--pr-serif) !important;
  font-weight: 400 !important;
  font-style: italic !important;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem) !important;
  color: var(--pr-plum) !important;
  margin: 0 0 1.5rem !important;
}
body.premium-preview .error-404-wrapper .error-description {
  font-family: var(--pr-sans) !important;
  font-size: 1rem !important;
  line-height: 1.75 !important;
  color: var(--pr-gray) !important;
  max-width: 520px !important;
  margin: 0 auto 3rem !important;
}
body.premium-preview .error-404-wrapper .btn-primary {
  display: inline-flex !important;
  align-items: center !important;
  padding: 1.05rem 2.4rem !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  color: var(--pr-plum) !important;
  background: transparent !important;
  border: 1px solid var(--pr-plum) !important;
  border-radius: 0 !important;
  text-decoration: none !important;
  transition: all 0.45s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}
body.premium-preview .error-404-wrapper .btn-primary:hover {
  background: var(--pr-plum) !important;
  color: var(--pr-ivory) !important;
}

/* ---------- LEGAL PAGES ---------- */
body.premium-preview .legal-wrapper {
  max-width: 860px !important;
  margin: 0 auto !important;
  padding: 6rem 2rem 8rem !important;
  background: var(--pr-ivory) !important;
}
body.premium-preview .legal-content {
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  border: none !important;
}
body.premium-preview .legal-title {
  font-family: var(--pr-serif) !important;
  font-weight: 400 !important;
  font-size: clamp(2rem, 4vw, 3rem) !important;
  color: var(--pr-plum) !important;
  margin: 0 0 3rem !important;
  padding-bottom: 1.5rem !important;
  border-bottom: 1px solid var(--pr-line) !important;
  letter-spacing: -0.01em !important;
}
body.premium-preview .legal-text h2 {
  font-family: var(--pr-serif) !important;
  font-weight: 400 !important;
  font-size: 1.6rem !important;
  color: var(--pr-plum) !important;
  margin: 2.5rem 0 1rem !important;
  letter-spacing: -0.005em !important;
}
body.premium-preview .legal-text p {
  font-family: var(--pr-sans) !important;
  font-size: 1rem !important;
  line-height: 1.85 !important;
  color: var(--pr-plum) !important;
  margin: 0 0 1.2rem !important;
}
body.premium-preview .legal-text a {
  color: var(--pr-rose) !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255, 77, 166, 0.35) !important;
}
body.premium-preview .legal-text a:hover {
  color: var(--pr-rose-deep) !important;
  border-bottom-color: var(--pr-rose-deep) !important;
}

/* ---------- Clear fixed header : push premium .premium-wrap hero up but
     NOT the non-homepage hero sections which already have padding-top. */

/* ---------- RESPONSIVE for override sections ---------- */
/* Tablet */
@media (max-width: 1024px) {
  body.premium-preview .blog-section { padding: 5rem 1.5rem !important; }
  body.premium-preview .blog-main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  }
  body.premium-preview .blog-sidebar { display: none !important; }
  body.premium-preview .contact-container {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 3rem !important;
  }
  body.premium-preview .contact-section { padding: 5rem 1.3rem !important; }
  body.premium-preview .contact-social-block { padding: 2rem 1.5rem !important; }
  body.premium-preview .hero-blog,
  body.premium-preview .hero-contact { padding: 8rem 1.5rem 4rem !important; min-height: 50vh !important; }
  body.premium-preview .contact-parallax { padding: 7rem 1.5rem !important; }
}
/* Mobile: switch cards to block flow (image top, content below) — the
   absolute overlay approach doesn't work with portrait viewports. */
@media (max-width: 768px) {
  body.premium-preview .blog-section { padding: 4.5rem 1.1rem !important; }
  body.premium-preview .blog-main {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  /* Card becomes a simple block, not an aspect-ratio absolute box */
  body.premium-preview .blog-card {
    display: block !important;
    position: relative !important;
    aspect-ratio: auto !important;
    min-height: 0 !important;
    height: auto !important;
    overflow: hidden !important;
  }
  body.premium-preview .blog-main > .blog-card:first-child {
    grid-column: 1 !important;
    aspect-ratio: auto !important;
  }
  /* Image container = block of fixed height */
  body.premium-preview .blog-card .blog-card-img {
    position: relative !important;
    inset: auto !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    overflow: visible !important;
  }
  body.premium-preview .blog-card .blog-card-img img {
    position: static !important;
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    display: block !important;
    filter: none !important;
  }
  body.premium-preview .blog-main > .blog-card:first-child .blog-card-img img { height: 240px !important; }
  /* Overlay becomes a normal block under the image (no gradient, plum solid) */
  body.premium-preview .blog-card .blog-card-overlay {
    position: static !important;
    inset: auto !important;
    display: block !important;
    padding: 1.5rem 1.4rem !important;
    background: var(--pr-plum) !important;
    color: var(--pr-ivory) !important;
  }
  body.premium-preview .blog-card .blog-card-overlay h2 {
    font-size: 1.2rem !important;
    color: var(--pr-ivory) !important;
    -webkit-text-fill-color: var(--pr-ivory) !important;
    margin: 0 0 0.7rem !important;
  }
  body.premium-preview .blog-main > .blog-card:first-child .blog-card-overlay {
    padding: 1.6rem 1.4rem !important;
  }
  body.premium-preview .blog-main > .blog-card:first-child .blog-card-overlay h2 {
    font-size: 1.45rem !important;
    max-width: 100% !important;
  }
  body.premium-preview .blog-main > .blog-card:first-child .blog-card-overlay::before {
    margin-bottom: 0.9rem;
  }
  /* Excerpt always visible on mobile (no hover) */
  body.premium-preview .blog-card .blog-card-excerpt {
    opacity: 1 !important;
    max-height: none !important;
    font-size: 0.82rem !important;
    line-height: 1.55 !important;
    margin: 0 0 1rem !important;
    color: rgba(253, 250, 247, 0.7) !important;
    max-width: 100% !important;
    display: block !important;
  }
  body.premium-preview .blog-main > .blog-card:first-child .blog-card-excerpt {
    max-width: 100% !important;
    font-size: 0.85rem !important;
  }
  body.premium-preview .blog-card .btn-read {
    font-size: 0.6rem !important;
  }
  body.premium-preview .single-article-content { padding: 0 0.2rem !important; }
  body.premium-preview .single-article-nav { flex-direction: column !important; }
  body.premium-preview .single-article-nav .nav-prev a,
  body.premium-preview .single-article-nav .nav-next a { display: block !important; text-align: center !important; }
  body.premium-preview .hero-blog,
  body.premium-preview .hero-contact { padding: 6.5rem 1.2rem 3rem !important; min-height: 40vh !important; }
  body.premium-preview .hero-blog h1,
  body.premium-preview .hero-contact h1 { font-size: clamp(1.8rem, 7vw, 2.6rem) !important; }
  body.premium-preview .legal-wrapper { padding: 5rem 1.2rem 6rem !important; }
  body.premium-preview .error-404-wrapper { padding: 5rem 1.2rem 6rem !important; }
  body.premium-preview .pagination .page-numbers {
    min-width: 36px !important; height: 36px !important; font-size: 0.72rem !important;
  }
  body.premium-preview .sidebar-block { margin-bottom: 2rem !important; }
}

/* ============================================================
   SMART NAVIGATION FEATURES (powered by premium.js)
   ============================================================ */

/* Reading progress bar — thin gold bar at top of viewport */
body.premium-preview .pr-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: rgba(201, 169, 110, 0.1);
  z-index: 1200;
  pointer-events: none;
}
body.premium-preview .pr-progress__fill {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--pr-rose), var(--pr-gold), var(--pr-violet));
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.08s linear;
}

/* Scroll-reveal retiré — trop de risque de laisser du contenu invisible
   si l'IntersectionObserver ne se déclenchait pas correctement. */

/* Auto-generated TOC (sticky sidebar inserted into .single-main) */
body.premium-preview .single-main.pr-has-toc {
  display: grid !important;
  grid-template-columns: 240px 1fr !important;
  gap: 4rem !important;
  align-items: start !important;
}
body.premium-preview .pr-toc {
  position: sticky;
  top: 120px;
  align-self: start;
}
body.premium-preview .pr-toc__inner {
  padding-right: 1rem;
  border-left: 1px solid var(--pr-line);
  padding-left: 1.5rem;
}
body.premium-preview .pr-toc__label {
  display: block;
  font-family: var(--pr-sans);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--pr-gold);
  margin-bottom: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--pr-line);
}
body.premium-preview .pr-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
body.premium-preview .pr-toc__item {
  margin: 0;
  padding: 0;
}
body.premium-preview .pr-toc__item a {
  display: block;
  padding: 0.55rem 0;
  font-family: var(--pr-sans);
  font-size: 0.78rem;
  line-height: 1.5;
  font-weight: 400;
  color: var(--pr-gray);
  text-decoration: none;
  border-left: 1px solid transparent;
  padding-left: 0.9rem;
  margin-left: -1.5rem;
  transition: color 0.35s ease, border-color 0.35s ease, padding-left 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
body.premium-preview .pr-toc__item--h3 a {
  padding-left: 1.8rem;
  font-size: 0.74rem;
}
body.premium-preview .pr-toc__item a:hover {
  color: var(--pr-plum);
}
body.premium-preview .pr-toc__item a.is-active {
  color: var(--pr-plum);
  border-left-color: var(--pr-gold);
  font-weight: 500;
}

/* (Removed duplicate featured rule — handled in the base .blog-card section
    above so it doesn't override the @media (max-width: 768px) mobile rules.) */

/* ============================================================
   SINGLE ARTICLE UPGRADES
   ============================================================ */

/* Better featured image treatment */
body.premium-preview .single-article-img img {
  transition: transform 1.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
body.premium-preview .single-article-img:hover img {
  transform: scale(1.02);
}

/* Drop cap on first paragraph */
body.premium-preview .single-article-content > p:first-of-type::first-letter {
  font-family: var(--pr-serif);
  font-size: 4.5em;
  font-weight: 400;
  float: left;
  line-height: 0.85;
  margin: 0.1em 0.12em 0 0;
  color: var(--pr-plum);
  font-style: italic;
}

/* Highlight selection */
body.premium-preview ::selection {
  background: rgba(201, 169, 110, 0.35);
  color: var(--pr-plum);
}

/* Responsive: collapse TOC on smaller screens */
@media (max-width: 1024px) {
  body.premium-preview .single-main.pr-has-toc {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }
  body.premium-preview .pr-toc {
    position: static;
    margin-bottom: 2rem;
  }
  body.premium-preview .pr-toc__inner {
    border-left: none;
    border-top: 1px solid var(--pr-line);
    border-bottom: 1px solid var(--pr-line);
    padding: 1.5rem 0 1rem;
  }
}

/* ============================================================
   PREMIUM MOBILE MENU — overrides the original white drawer from
   style.css. Dark plum glass with gold accents, serif title.
   ============================================================ */
body.premium-preview .mobile-menu {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 100vh !important;
  background: rgba(26, 11, 31, 0.98) !important;
  -webkit-backdrop-filter: saturate(150%) blur(30px) !important;
  backdrop-filter: saturate(150%) blur(30px) !important;
  color: var(--pr-ivory) !important;
  z-index: 20000 !important;
  transform: translateY(-100%) !important;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  overflow-y: auto !important;
  overflow-x: hidden !important;
  font-family: var(--pr-sans) !important;
  border: none !important;
}
body.premium-preview .mobile-menu.active {
  transform: translateY(0) !important;
}
body.premium-preview .mobile-menu::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.6), transparent);
  pointer-events: none;
}
body.premium-preview .mobile-menu::after {
  content: '';
  position: absolute;
  pointer-events: none;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(120px);
  background: var(--pr-rose);
  opacity: 0.12;
  top: -150px;
  right: -150px;
}
body.premium-preview .mobile-menu-content {
  max-width: 420px !important;
  margin: 0 auto !important;
  padding: 6rem 2rem 4rem !important;
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  position: relative !important;
  z-index: 2;
}
body.premium-preview .mobile-menu-content::before,
body.premium-preview .mobile-menu-content::after { display: none !important; content: none !important; }

/* Close button — refined cross */
body.premium-preview .close-mobile-menu {
  position: fixed !important;
  top: 1.3rem !important;
  right: 1.3rem !important;
  width: 44px !important;
  height: 44px !important;
  font-size: 1.3rem !important;
  background: transparent !important;
  border: 1px solid rgba(201, 169, 110, 0.4) !important;
  color: var(--pr-gold) !important;
  cursor: pointer;
  font-weight: 300 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10 !important;
  transition: all 0.35s ease !important;
  border-radius: 0 !important;
}
body.premium-preview .close-mobile-menu:hover {
  background: var(--pr-gold) !important;
  color: var(--pr-plum) !important;
}

/* Menu list */
body.premium-preview .mobile-menu-links {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}
body.premium-preview .mobile-menu-links > li {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  position: relative;
}
body.premium-preview .mobile-menu-links > li + li {
  border-top: 1px solid rgba(253, 250, 247, 0.08) !important;
}
body.premium-preview .mobile-menu-links > li > a,
body.premium-preview .mobile-submenu-toggle {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  padding: 1.25rem 0 !important;
  background: transparent !important;
  border: none !important;
  color: var(--pr-ivory) !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  cursor: pointer;
  text-align: left !important;
  transition: color 0.35s ease, padding-left 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}
body.premium-preview .mobile-menu-links > li > a:hover,
body.premium-preview .mobile-submenu-toggle:hover,
body.premium-preview .mobile-menu-links > li > a:focus,
body.premium-preview .mobile-submenu-toggle:focus {
  color: var(--pr-gold) !important;
  padding-left: 0.4rem !important;
  outline: none !important;
}

/* Chevron rotation when submenu is open */
body.premium-preview .mobile-submenu-toggle .chevron {
  width: 16px !important;
  height: 16px !important;
  color: var(--pr-gold-soft) !important;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  flex-shrink: 0;
}
body.premium-preview .mobile-has-submenu.active .mobile-submenu-toggle .chevron {
  transform: rotate(180deg) !important;
}
body.premium-preview .mobile-has-submenu.active > .mobile-submenu-toggle {
  color: var(--pr-gold) !important;
}

/* Submenu accordion */
body.premium-preview .mobile-submenu {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  overflow: hidden !important;
  max-height: 0 !important;
  transition: max-height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1), padding 0.4s ease, margin 0.4s ease !important;
}
body.premium-preview .mobile-has-submenu.active > .mobile-submenu {
  max-height: 800px !important;
  padding: 0.4rem 0 0.8rem 0 !important;
  margin: 0 0 1.2rem 0 !important;
  border: none !important;
}
body.premium-preview .mobile-submenu li {
  margin: 0 !important;
  padding: 0 !important;
}
body.premium-preview .mobile-submenu li a {
  display: block !important;
  padding: 0.8rem 0 0.8rem 1rem !important;
  background: transparent !important;
  border: none !important;
  color: rgba(253, 250, 247, 0.7) !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.7rem !important;
  font-weight: 400 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition: color 0.35s ease, padding-left 0.4s ease !important;
}
body.premium-preview .mobile-submenu li a:hover,
body.premium-preview .mobile-submenu li a:focus {
  color: var(--pr-gold) !important;
  padding-left: 1.3rem !important;
}

/* Scrollbar */
body.premium-preview .mobile-menu::-webkit-scrollbar { width: 4px; }
body.premium-preview .mobile-menu::-webkit-scrollbar-thumb {
  background: rgba(201, 169, 110, 0.35);
}
body.premium-preview .mobile-menu::-webkit-scrollbar-track {
  background: transparent;
}

/* ============================================================
   SMART NAVIGATION — replaces the sidebar on blog listing pages.
   Injected by premium.js as the first child of .blog-section.
   ============================================================ */
body.premium-preview .pr-smart-nav {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto 4rem;
  padding: 2.5rem 0 2.5rem;
  border-top: 1px solid var(--pr-line);
  border-bottom: 1px solid var(--pr-line);
  background: var(--pr-ivory);
  position: relative;
}
body.premium-preview .pr-smart-nav__inner {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

/* Header: eyebrow + current title */
body.premium-preview .pr-smart-nav__head {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  flex-wrap: wrap;
  padding-bottom: 0.4rem;
}
body.premium-preview .pr-smart-nav__eyebrow {
  display: inline-block;
  font-family: var(--pr-sans);
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--pr-gold);
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--pr-gold-soft);
  flex-shrink: 0;
}
body.premium-preview .pr-smart-nav__title {
  font-family: var(--pr-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  line-height: 1.1;
  color: var(--pr-plum);
  margin: 0;
  letter-spacing: -0.005em;
}

/* Chip rows */
body.premium-preview .pr-smart-nav__row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}
body.premium-preview .pr-smart-nav__rowlabel {
  font-family: var(--pr-sans);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--pr-plum-soft);
  padding-top: 0.55rem;
  line-height: 1.2;
}
body.premium-preview .pr-smart-nav__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  min-width: 0;
}

/* Individual chip */
body.premium-preview .pr-smart-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1rem;
  font-family: var(--pr-sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pr-plum);
  background: transparent;
  border: 1px solid var(--pr-line);
  border-radius: 0;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  white-space: nowrap;
  cursor: pointer;
}
body.premium-preview .pr-smart-chip:hover {
  border-color: var(--pr-plum);
  background: var(--pr-plum);
  color: var(--pr-ivory);
}
body.premium-preview .pr-smart-chip.is-active {
  border-color: var(--pr-gold);
  background: var(--pr-gold);
  color: var(--pr-plum);
  font-weight: 600;
}
body.premium-preview .pr-smart-chip--comparateur {
  border-color: rgba(255, 77, 166, 0.25);
  color: var(--pr-rose-deep);
}
body.premium-preview .pr-smart-chip--comparateur:hover {
  background: var(--pr-rose);
  border-color: var(--pr-rose);
  color: #fff;
}
body.premium-preview .pr-smart-chip--tag {
  font-size: 0.62rem;
  padding: 0.45rem 0.85rem;
  letter-spacing: 0.1em;
  text-transform: none;
  color: var(--pr-plum-soft);
}
body.premium-preview .pr-smart-chip--tag:hover {
  background: var(--pr-plum-soft);
  color: var(--pr-ivory);
  border-color: var(--pr-plum-soft);
}

/* Responsive */
@media (max-width: 900px) {
  body.premium-preview .pr-smart-nav {
    margin-bottom: 2.5rem;
    padding: 2rem 0 2rem;
  }
  body.premium-preview .pr-smart-nav__row {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  body.premium-preview .pr-smart-nav__rowlabel { padding-top: 0; }
  /* Allow horizontal scroll on narrow screens instead of wrapping */
  body.premium-preview .pr-smart-nav__chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    margin: 0 -1.2rem;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    scrollbar-width: thin;
    scrollbar-color: var(--pr-line) transparent;
  }
  body.premium-preview .pr-smart-nav__chips::-webkit-scrollbar { height: 4px; }
  body.premium-preview .pr-smart-nav__chips::-webkit-scrollbar-thumb {
    background: var(--pr-line);
    border-radius: 0;
  }
}

/* When blog-section has smart-nav + no sidebar, allow wider 3-col layout */
body.premium-preview .blog-container.pr-has-smart-nav {
  display: block !important;
}

/* ============================================================
   COMPLIANZ COOKIE BANNER — premium plum glass
   Overrides Complianz's :root CSS variables + hardcoded styles.
   ============================================================ */
body.premium-preview {
  --cmplz_banner_width: 560px !important;
  --cmplz_banner_background_color: rgba(26, 11, 31, 0.96) !important;
  --cmplz_banner_border_color: rgba(201, 169, 110, 0.28) !important;
  --cmplz_banner_border_width: 1px 1px 1px 1px !important;
  --cmplz_banner_border_radius: 0 0 0 0 !important;
  --cmplz_banner_margin: 0.55rem !important;
  --cmplz_title_font_size: 1rem !important;
  --cmplz_text_font_size: 0.82rem !important;
  --cmplz_link_font_size: 0.72rem !important;
  --cmplz_text_line_height: 1.65 !important;
  --cmplz_text_color: #fdfaf7 !important;
  --cmplz_hyperlink_color: #c9a96e !important;
  --cmplz_category_body_font_size: 0.78rem !important;
  --cmplz_button_accept_background_color: #c9a96e !important;
  --cmplz_button_accept_border_color: #c9a96e !important;
  --cmplz_button_accept_text_color: #1a0b1f !important;
  --cmplz_button_deny_background_color: transparent !important;
  --cmplz_button_deny_border_color: rgba(253, 250, 247, 0.3) !important;
  --cmplz_button_deny_text_color: #fdfaf7 !important;
  --cmplz_button_settings_background_color: transparent !important;
  --cmplz_button_settings_border_color: rgba(253, 250, 247, 0.3) !important;
  --cmplz_button_settings_text_color: #fdfaf7 !important;
  --cmplz_button_border_radius: 0 0 0 0 !important;
  --cmplz_button_font_size: 0.7rem !important;
  --cmplz_category_header_always_active_color: #c9a96e !important;
  --cmplz_category_header_title_font_size: 0.78rem !important;
  --cmplz_category_header_active_font_size: 0.62rem !important;
  --cmplz_slider_active_color: #c9a96e !important;
  --cmplz_slider_inactive_color: rgba(253, 250, 247, 0.25) !important;
  --cmplz_slider_bullet_color: #fdfaf7 !important;
}

/* Banner box — glass, thin gold border, no rounded corners */
body.premium-preview .cmplz-cookiebanner {
  background: rgba(26, 11, 31, 0.96) !important;
  -webkit-backdrop-filter: saturate(150%) blur(24px);
  backdrop-filter: saturate(150%) blur(24px);
  border: 1px solid rgba(201, 169, 110, 0.28) !important;
  border-radius: 0 !important;
  padding: 1.6rem 1.5rem !important;
  font-family: var(--pr-sans) !important;
  color: var(--pr-ivory) !important;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.55),
    0 10px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(253, 250, 247, 0.04) !important;
  max-width: 560px !important;
}
body.premium-preview .cmplz-cookiebanner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 110, 0.6), transparent);
  pointer-events: none;
}

/* Hover state box-shadow override */
body.premium-preview .cmplz-cookiebanner.cmplz-show,
body.premium-preview .cmplz-cookiebanner.cmplz-show:hover,
body.premium-preview .cmplz-cookiebanner:hover {
  box-shadow:
    0 36px 80px rgba(0, 0, 0, 0.6),
    0 14px 28px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(253, 250, 247, 0.05) !important;
  transition-duration: 0.45s !important;
}

/* Title + message */
body.premium-preview .cmplz-cookiebanner .cmplz-title {
  font-family: var(--pr-serif) !important;
  font-style: italic;
  font-weight: 400 !important;
  font-size: 1.25rem !important;
  color: var(--pr-ivory) !important;
  letter-spacing: -0.005em;
  justify-self: start !important;
  grid-column-start: 1 !important;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  margin-bottom: 0.3rem;
  width: 100%;
}
body.premium-preview .cmplz-cookiebanner .cmplz-header {
  grid-template-columns: 1fr auto !important;
}
body.premium-preview .cmplz-cookiebanner .cmplz-close {
  color: var(--pr-gold) !important;
  grid-column-start: 2 !important;
  opacity: 0.8;
  transition: opacity 0.3s ease, color 0.3s ease !important;
}
body.premium-preview .cmplz-cookiebanner .cmplz-close:hover {
  color: var(--pr-ivory) !important;
  opacity: 1;
}
body.premium-preview .cmplz-cookiebanner .cmplz-message {
  font-family: var(--pr-sans) !important;
  font-size: 0.82rem !important;
  line-height: 1.65 !important;
  color: rgba(253, 250, 247, 0.78) !important;
  margin-bottom: 0.3rem !important;
}
body.premium-preview .cmplz-cookiebanner .cmplz-message a,
body.premium-preview .cmplz-cookiebanner .cmplz-link {
  color: var(--pr-gold) !important;
  text-decoration: underline !important;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px !important;
  transition: color 0.3s ease !important;
}
body.premium-preview .cmplz-cookiebanner .cmplz-message a:hover,
body.premium-preview .cmplz-cookiebanner .cmplz-link:hover {
  color: var(--pr-gold-soft) !important;
}

/* Category blocks (when "view preferences" is expanded) */
body.premium-preview .cmplz-cookiebanner .cmplz-categories .cmplz-category {
  background: rgba(253, 250, 247, 0.04) !important;
  border: 1px solid rgba(253, 250, 247, 0.08) !important;
  border-radius: 0 !important;
  margin-bottom: 0.55rem !important;
}
body.premium-preview .cmplz-cookiebanner .cmplz-category-title {
  color: var(--pr-ivory) !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
body.premium-preview .cmplz-cookiebanner .cmplz-description {
  color: rgba(253, 250, 247, 0.65) !important;
  font-size: 0.75rem !important;
  line-height: 1.55 !important;
}

/* Buttons — premium uppercase pill-less rectangles */
body.premium-preview .cmplz-cookiebanner .cmplz-buttons .cmplz-btn {
  height: auto !important;
  padding: 0.95rem 1.2rem !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.64rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
  border-radius: 0 !important;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
  text-decoration: none !important;
}
body.premium-preview .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-accept {
  background: var(--pr-gold) !important;
  border: 1px solid var(--pr-gold) !important;
  color: var(--pr-plum) !important;
  font-weight: 600 !important;
}
body.premium-preview .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-accept:hover {
  background: #d9bf82 !important;
  border-color: #d9bf82 !important;
}
body.premium-preview .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-deny,
body.premium-preview .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-view-preferences,
body.premium-preview .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-save-preferences,
body.premium-preview .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-manage-options {
  background: transparent !important;
  border: 1px solid rgba(253, 250, 247, 0.3) !important;
  color: rgba(253, 250, 247, 0.85) !important;
}
body.premium-preview .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-deny:hover,
body.premium-preview .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-view-preferences:hover,
body.premium-preview .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-save-preferences:hover,
body.premium-preview .cmplz-cookiebanner .cmplz-buttons .cmplz-btn.cmplz-manage-options:hover {
  background: rgba(253, 250, 247, 0.08) !important;
  border-color: rgba(253, 250, 247, 0.6) !important;
  color: var(--pr-ivory) !important;
}

/* Force-hide native checkbox inputs (the black check UA style was leaking) */
body.premium-preview .cmplz-cookiebanner input[type="checkbox"],
body.premium-preview .cmplz-cookiebanner .cmplz-category .cmplz-banner-checkbox input.cmplz-consent-checkbox {
  opacity: 0 !important;
  position: absolute !important;
  pointer-events: none !important;
  width: 40px !important;
  height: 20px !important;
  margin: 0 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
/* But keep the label clickable */
body.premium-preview .cmplz-cookiebanner .cmplz-category .cmplz-banner-checkbox {
  pointer-events: auto !important;
  position: relative !important;
  width: 40px !important;
  height: 20px !important;
}
body.premium-preview .cmplz-cookiebanner .cmplz-category .cmplz-banner-checkbox .cmplz-label {
  pointer-events: auto !important;
  cursor: pointer !important;
}

/* Native <summary> disclosure marker kill (some browsers still render a black ▶) */
body.premium-preview .cmplz-cookiebanner .cmplz-category summary,
body.premium-preview .cmplz-cookiebanner .cmplz-category > summary {
  list-style: none !important;
  list-style-type: none !important;
  cursor: pointer;
}
body.premium-preview .cmplz-cookiebanner .cmplz-category summary::marker,
body.premium-preview .cmplz-cookiebanner .cmplz-category summary::-webkit-details-marker {
  display: none !important;
  content: '' !important;
}

/* Custom chevron (cmplz-open) — make sure it uses gold, not black */
body.premium-preview .cmplz-cookiebanner .cmplz-category .cmplz-icon.cmplz-open {
  filter: brightness(0) saturate(100%) invert(78%) sepia(42%) saturate(475%) hue-rotate(5deg) brightness(90%) contrast(85%) !important;
  opacity: 0.85 !important;
}

/* Sliders for category toggles */
body.premium-preview .cmplz-cookiebanner .cmplz-category .cmplz-banner-checkbox .cmplz-label::before {
  background-color: rgba(253, 250, 247, 0.2) !important;
  border: 1px solid rgba(253, 250, 247, 0.15) !important;
}
body.premium-preview .cmplz-cookiebanner .cmplz-category .cmplz-banner-checkbox .cmplz-label::after {
  background: var(--pr-ivory) !important;
}
body.premium-preview .cmplz-cookiebanner .cmplz-category .cmplz-banner-checkbox input.cmplz-consent-checkbox:checked + .cmplz-label::before {
  background-color: var(--pr-gold) !important;
  border-color: var(--pr-gold) !important;
}
body.premium-preview .cmplz-cookiebanner .cmplz-category .cmplz-banner-checkbox input.cmplz-consent-checkbox:checked + .cmplz-label::after {
  background: var(--pr-plum) !important;
}
body.premium-preview .cmplz-cookiebanner .cmplz-always-active {
  color: var(--pr-gold) !important;
  text-transform: uppercase;
  font-size: 0.58rem !important;
  letter-spacing: 0.18em;
  font-weight: 500 !important;
}

/* Scrollbar inside the banner */
body.premium-preview .cmplz-cookiebanner .cmplz-body::-webkit-scrollbar-thumb {
  background-color: rgba(201, 169, 110, 0.35) !important;
}

/* Mobile banner (full-width bottom bar) */
@media (max-width: 768px) {
  body.premium-preview .cmplz-cookiebanner {
    padding: 1.3rem 1.2rem !important;
    width: 100% !important;
  }
  body.premium-preview .cmplz-cookiebanner .cmplz-title {
    font-size: 1.1rem !important;
  }
  body.premium-preview .cmplz-cookiebanner .cmplz-buttons .cmplz-btn {
    height: auto !important;
    padding: 0.9rem 1rem !important;
  }
}

/* "Manage consent" floating pill (re-open banner after dismiss) */
body.premium-preview #cmplz-manage-consent .cmplz-manage-consent {
  background: rgba(26, 11, 31, 0.94) !important;
  color: var(--pr-gold) !important;
  border: 1px solid rgba(201, 169, 110, 0.35) !important;
  border-radius: 0 !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4) !important;
  padding: 0.85rem 1.2rem !important;
}

/* ============================================================
   BREADCRUMB — visual fil d'ariane (schema is handled by Yoast)
   ============================================================ */
body.premium-preview .pr-breadcrumb {
  max-width: 1320px !important;
  margin: 0 auto !important;
  padding: 1.6rem 2rem 0 !important;
  background: var(--pr-ivory) !important;
  box-sizing: border-box;
}
body.premium-preview .pr-breadcrumb__list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 0.4rem 0 !important;
}
body.premium-preview .pr-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.62rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--pr-plum-soft) !important;
}
body.premium-preview .pr-breadcrumb__item a {
  color: var(--pr-plum-soft) !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}
body.premium-preview .pr-breadcrumb__item a:hover {
  color: var(--pr-rose) !important;
}
body.premium-preview .pr-breadcrumb__item.is-current span,
body.premium-preview .pr-breadcrumb__item.is-current {
  color: var(--pr-gold) !important;
  font-weight: 600 !important;
}
body.premium-preview .pr-breadcrumb__sep {
  display: inline-block;
  margin: 0 0.6rem;
  color: var(--pr-gold-soft);
  font-weight: 300;
  user-select: none;
}
/* Constrain breadcrumb title if too long (article titles) */
body.premium-preview .pr-breadcrumb__item.is-current span[aria-current="page"] {
  max-width: 420px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  vertical-align: bottom;
}
@media (max-width: 640px) {
  body.premium-preview .pr-breadcrumb { padding: 1.2rem 1.2rem 0 !important; }
  body.premium-preview .pr-breadcrumb__item { font-size: 0.58rem !important; letter-spacing: 0.14em !important; }
  body.premium-preview .pr-breadcrumb__sep { margin: 0 0.45rem; }
  body.premium-preview .pr-breadcrumb__item.is-current span[aria-current="page"] {
    max-width: 180px;
  }
}

/* ============================================================
   ACCESSIBILITY — skip link, focus-visible, keyboard states
   ============================================================ */

/* Skip link — hidden off-screen, becomes visible on keyboard focus */
body.premium-preview .pr-skip-link {
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 100000;
  padding: 0.9rem 1.6rem;
  background: var(--pr-plum);
  color: var(--pr-gold) !important;
  font-family: var(--pr-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: 1px solid var(--pr-gold);
  transform: translateY(-150%);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
body.premium-preview .pr-skip-link:focus,
body.premium-preview .pr-skip-link:focus-visible {
  transform: translateY(0.8rem) translateX(0.8rem);
  outline: none;
}

/* Focus-visible global — gold 2px ring with offset, for keyboard nav only */
body.premium-preview a:focus-visible,
body.premium-preview button:focus-visible,
body.premium-preview input:focus-visible,
body.premium-preview textarea:focus-visible,
body.premium-preview select:focus-visible,
body.premium-preview [tabindex]:focus-visible {
  outline: 2px solid var(--pr-gold) !important;
  outline-offset: 3px !important;
  border-radius: 0 !important;
}
/* Remove default focus styles for mouse users */
body.premium-preview a:focus:not(:focus-visible),
body.premium-preview button:focus:not(:focus-visible) {
  outline: none !important;
}

/* ============================================================
   SOCIAL SHARE BAR — on single articles below .single-article-content
   ============================================================ */
body.premium-preview .pr-share {
  max-width: 720px !important;
  margin: 3rem auto 0 !important;
  padding: 1.5rem 0 !important;
  border-top: 1px solid var(--pr-line);
  border-bottom: 1px solid var(--pr-line);
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 1.2rem !important;
}
body.premium-preview .pr-share__label {
  display: inline-block;
  font-family: var(--pr-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pr-gold);
  padding: 0.25rem 0;
  margin-right: 0.2rem;
}
body.premium-preview .pr-share__links {
  list-style: none !important;
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.5rem !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.premium-preview .pr-share__links li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
body.premium-preview .pr-share__link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.55rem !important;
  padding: 0.6rem 1rem !important;
  font-family: var(--pr-sans) !important;
  font-size: 0.6rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  color: var(--pr-plum) !important;
  background: transparent !important;
  border: 1px solid var(--pr-line) !important;
  border-radius: 0 !important;
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
}
body.premium-preview .pr-share__link:hover {
  background: var(--pr-plum) !important;
  color: var(--pr-ivory) !important;
  border-color: var(--pr-plum) !important;
}
body.premium-preview .pr-share__link svg {
  width: 15px !important;
  height: 15px !important;
  flex-shrink: 0;
}
body.premium-preview .pr-share__copy.is-copied {
  background: var(--pr-gold) !important;
  color: var(--pr-plum) !important;
  border-color: var(--pr-gold) !important;
}

/* ============================================================
   RELATED POSTS — on single articles below prev/next nav
   ============================================================ */
body.premium-preview .pr-related {
  max-width: 1200px !important;
  margin: 5rem auto 0 !important;
  padding: 3.5rem 2rem 0 !important;
  border-top: 1px solid var(--pr-line);
}
body.premium-preview .pr-related__head {
  text-align: center;
  margin-bottom: 3rem;
}
body.premium-preview .pr-related__eyebrow {
  display: inline-block;
  font-family: var(--pr-sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pr-gold);
  padding-bottom: 0.45rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--pr-gold-soft);
}
body.premium-preview .pr-related__title {
  font-family: var(--pr-serif) !important;
  font-weight: 400 !important;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem) !important;
  line-height: 1.1 !important;
  color: var(--pr-plum) !important;
  margin: 0 !important;
  -webkit-text-fill-color: var(--pr-plum) !important;
  background: none !important;
}
body.premium-preview .pr-related__title em {
  font-style: italic;
  color: var(--pr-rose);
}
body.premium-preview .pr-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}
body.premium-preview .pr-related__card {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--pr-plum);
  text-decoration: none !important;
  color: var(--pr-ivory) !important;
  border: 1px solid var(--pr-line);
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.45s ease;
}
body.premium-preview .pr-related__card:hover {
  transform: translateY(-4px);
  border-color: var(--pr-gold);
}
body.premium-preview .pr-related__img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  filter: grayscale(10%) brightness(0.9);
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), filter 1.2s ease;
}
body.premium-preview .pr-related__card:hover .pr-related__img {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(1);
}
body.premium-preview .pr-related__body {
  padding: 1.4rem 1.3rem 1.6rem;
  background: var(--pr-plum);
}
body.premium-preview .pr-related__cat {
  display: inline-block;
  font-family: var(--pr-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pr-gold-soft);
  padding-bottom: 0.3rem;
  margin-bottom: 0.7rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.35);
}
body.premium-preview .pr-related__card-title {
  font-family: var(--pr-serif) !important;
  font-weight: 400 !important;
  font-size: 1.15rem !important;
  line-height: 1.25 !important;
  color: var(--pr-ivory) !important;
  -webkit-text-fill-color: var(--pr-ivory) !important;
  margin: 0 0 0.8rem !important;
  background: none !important;
}
body.premium-preview .pr-related__more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--pr-sans);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pr-gold);
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--pr-gold);
  transition: all 0.3s ease;
}
body.premium-preview .pr-related__card:hover .pr-related__more {
  color: var(--pr-gold-soft);
  border-bottom-color: var(--pr-gold-soft);
}
body.premium-preview .pr-related__more svg {
  transition: transform 0.35s ease;
}
body.premium-preview .pr-related__card:hover .pr-related__more svg {
  transform: translateX(3px);
}

/* Responsive for share + related */
@media (max-width: 900px) {
  body.premium-preview .pr-related__grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  body.premium-preview .pr-related__grid > *:nth-child(3) { display: none !important; }
}
@media (max-width: 640px) {
  body.premium-preview .pr-share { flex-direction: column; align-items: flex-start !important; gap: 0.8rem !important; padding: 1.2rem 0 !important; }
  body.premium-preview .pr-share__links { width: 100% !important; }
  body.premium-preview .pr-share__link { flex: 1 1 auto; justify-content: center; }
  body.premium-preview .pr-share__text { display: none !important; }
  body.premium-preview .pr-related { padding: 2.8rem 1.2rem 0 !important; margin-top: 4rem !important; }
  body.premium-preview .pr-related__grid { grid-template-columns: 1fr !important; gap: 1.2rem !important; }
  body.premium-preview .pr-related__grid > *:nth-child(3) { display: block !important; }
  body.premium-preview .pr-related__img { height: 160px; }
}

/* Reduce motion support */
@media (prefers-reduced-motion: reduce) {
  .premium-wrap *,
  .premium-wrap *::before,
  .premium-wrap *::after,
  body.premium-preview .pr-header *,
  body.premium-preview .pr-footer *,
  body.premium-preview .blog-card *,
  body.premium-preview .search-card *,
  body.premium-preview .pr-smart-chip,
  body.premium-preview .pr-share__link,
  body.premium-preview .pr-related__card,
  body.premium-preview .cmplz-cookiebanner * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
