.elementor-322 .elementor-element.elementor-element-ed8ed81{--display:flex;--margin-top:-83px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-d4933e2 *//* ============================================================
   BLOG.CSS — CZEN Spa
   Cohérent avec le reste du site (tokens or/sage, Georgia serif)
   ============================================================ */

.czBlog {
  --gold:    #c9a45a;
  --sage:    #bac095;
  --ink:     rgba(0,0,0,.88);
  --muted:   rgba(0,0,0,.55);
  --border:  rgba(0,0,0,.09);
  --panel:   rgba(255,255,255,.80);
  --bg:      #f7f5f0;
  --r:       16px;
  --ease:    cubic-bezier(.4,0,.2,1);

  background: var(--bg);
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  min-height: 100vh;
}

/* ── Wrapper centré ─────────────────────────────────── */
.czBlog__wrap {
  max-width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

/* ============================================================
   HERO
   ============================================================ */
.czBlog__hero {
  padding: 72px 0 56px;
  background:
    radial-gradient(ellipse 800px 440px at 10% 20%, rgba(186,192,149,.22), transparent 58%),
    radial-gradient(ellipse 700px 400px at 90% 25%, rgba(124,96,21,.18), transparent 58%),
    linear-gradient(180deg, #0a0907, #141210);
  position: relative;
  overflow: hidden;
}

/* Ligne dorée en haut */
.czBlog__hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 40%, var(--gold) 60%, transparent);
  opacity: .45;
}

.czBlog__eye {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 14px;
}

.czBlog__heroTitle {
  font-family: Georgia, "Libre Baskerville", serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.02em;
  color: rgba(255,255,255,.93);
  margin: 0 0 14px;
}

.czBlog__heroSub {
  font-size: 15px;
  color: rgba(255,255,255,.52);
  line-height: 1.68;
  max-width: 58ch;
  margin: 0 0 32px;
}

/* Barre de recherche */
.czBlog__searchBar {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 520px;
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 0 18px;
  backdrop-filter: blur(12px);
  color: rgba(255,255,255,.45);
  transition: border-color .20s, background .20s;
}

.czBlog__searchBar:focus-within {
  border-color: rgba(201,164,90,.50);
  background: rgba(255,255,255,.13);
  color: rgba(255,255,255,.70);
}

.czBlog__searchBar input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 13px 0;
  font-size: 14px;
  color: rgba(255,255,255,.88);
}

.czBlog__searchBar input::placeholder { color: rgba(255,255,255,.40); }

.czBlog__searchClear {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,.45);
  font-size: 13px;
  padding: 4px;
  line-height: 1;
  transition: color .15s;
}
.czBlog__searchClear:hover { color: rgba(255,255,255,.80); }

/* ============================================================
   BODY — sidebar + main
   ============================================================ */
.czBlog__body {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  padding: 36px 0 72px;
  align-items: start;
}

@media (max-width: 900px) {
  .czBlog__body { grid-template-columns: 1fr; }
}

/* ── Sidebar ─────────────────────────────────────────── */
.czBlog__sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 90px;
}

@media (max-width: 900px) {
  .czBlog__sidebar { position: static; }
}

.czBlog__sideCard {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,.06);
}

.czBlog__sideTitle {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}

/* Catégories */
.czBlog__cats {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.czBlog__cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid transparent;
  background: transparent;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  transition: background .16s, color .16s, border-color .16s;
}

.czBlog__cat:hover {
  background: rgba(186,192,149,.14);
  color: var(--ink);
}

.czBlog__cat.is-active {
  background: rgba(186,192,149,.18);
  border-color: rgba(186,192,149,.35);
  color: var(--ink);
  font-weight: 600;
}

.czBlog__catCount {
  font-size: 11px;
  color: var(--muted);
  background: rgba(0,0,0,.06);
  padding: 2px 7px;
  border-radius: 999px;
}

/* Stats */
.czBlog__sideStats {
  display: flex;
  gap: 0;
  padding: 0;
  overflow: hidden;
}

.czBlog__stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16px 10px;
  border-right: 1px solid var(--border);
}

.czBlog__stat:last-child { border-right: none; }

.czBlog__statN {
  font-family: Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.czBlog__statL {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* CTA sidebar */
.czBlog__sideCTA {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background:
    radial-gradient(ellipse 300px 180px at 10% 20%, rgba(186,192,149,.18), transparent 60%),
    var(--panel);
}

.czBlog__sideCTATitle {
  font-family: Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.40;
  color: var(--ink);
  margin: 0 0 4px;
}

.czBlog__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .03em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .16s;
  text-align: center;
}

.czBlog__cta--primary {
  background: linear-gradient(135deg, #7a8a53, #b8924a);
  color: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,.16);
}
.czBlog__cta--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,.22); }

.czBlog__cta--ghost {
  background: rgba(0,0,0,.04);
  border-color: var(--border);
  color: var(--muted);
}
.czBlog__cta--ghost:hover { background: rgba(0,0,0,.08); color: var(--ink); }

/* ── Main ────────────────────────────────────────────── */
.czBlog__main { min-height: 400px; }

/* Loader */
.czBlog__loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 60px 20px;
  color: var(--muted);
  font-size: 14px;
}

.czBlog__spinner {
  width: 36px; height: 36px;
  border: 2.5px solid rgba(0,0,0,.10);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: czSpin .8s linear infinite;
}

@keyframes czSpin { to { transform: rotate(360deg); } }

/* Vide */
.czBlog__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 60px 20px;
  text-align: center;
}

.czBlog__emptyIco { font-size: 36px; }
.czBlog__emptyTxt { color: var(--muted); font-size: 15px; margin: 0; }

/* ── Grille articles ─────────────────────────────────── */
.czBlog__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

/* ── Carte article ───────────────────────────────────── */
.czCard {
  animation: czFadeUp .45s var(--ease) both;
}

@keyframes czFadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

.czCard__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s;
}

.czCard__inner:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
  border-color: rgba(186,192,149,.40);
}

/* Miniature */
.czCard__thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(0,0,0,.06);
  flex-shrink: 0;
}

.czCard__thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .40s var(--ease);
}

.czCard__inner:hover .czCard__thumb img { transform: scale(1.04); }

.czCard__thumb--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 300px 200px at 50% 50%, rgba(186,192,149,.18), transparent 60%),
    rgba(0,0,0,.04);
  font-size: 28px;
  color: rgba(186,192,149,.55);
}

/* Corps */
.czCard__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 18px 18px;
  gap: 8px;
}

/* Catégories */
.czCard__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.czCard__cat {
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: rgba(186,192,149,.18);
  border: 1px solid rgba(186,192,149,.30);
  color: #5a6b3a;
}

/* Titre */
.czCard__title {
  font-family: Georgia, "Libre Baskerville", serif;
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 700;
  line-height: 1.36;
  color: var(--ink);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: keep-all;
  hyphens: none;
}

/* Extrait */
.czCard__excerpt {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Pied */
.czCard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.czCard__date {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
}

.czCard__arrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}

/* ── Pagination ──────────────────────────────────────── */
.czBlog__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 40px;
}

.czBlog__page {
  min-width: 40px;
  height: 40px;
  padding: 0 13px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--panel);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: background .16s, border-color .16s, color .16s;
}

.czBlog__page:hover:not(.is-active):not(.is-disabled) {
  background: rgba(186,192,149,.18);
  border-color: rgba(186,192,149,.35);
  color: var(--ink);
}

.czBlog__page.is-active {
  background: linear-gradient(135deg, #7a8a53, #b8924a);
  border-color: transparent;
  color: #fff;
  font-weight: 600;
}

.czBlog__page.is-disabled {
  opacity: .32;
  cursor: default;
}

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 640px) {
  .czBlog__hero    { padding: 52px 0 40px; }
  .czBlog__grid    { grid-template-columns: 1fr; }
  .czBlog__sidebar { flex-direction: row; flex-wrap: wrap; }
  .czBlog__sideCard{ flex: 1 1 200px; }
  .czBlog__cats    { flex-direction: row; flex-wrap: wrap; }
  .czBlog__cat     { flex: 0 0 auto; }
}

@media (prefers-reduced-motion: reduce) {
  .czCard { animation: none; }
  .czBlog__spinner { animation: none; }
}/* End custom CSS */