:root{
  --rd-bg:#d8effc;
  --rd-bg-2:#edf8ff;
  --rd-bg-3:#bfdff0;
  --rd-ink:#0a2740;
  --rd-muted:#466176;
  --rd-card:rgba(255,255,255,.82);
  --rd-card-strong:rgba(255,255,255,.94);
  --rd-blue:#083b67;
  --rd-blue-2:#0d5f93;
  --rd-gold:#c89131;
  --rd-gold-2:#e7c57f;
  --rd-border:rgba(12,61,97,.12);
  --rd-shadow:0 30px 90px rgba(5,39,67,.14);
  --rd-radius:30px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body.rd-gardien-v2{
  margin:0;
  font-family:"Lora",serif;
  color:var(--rd-ink);
  background:
    radial-gradient(circle at 15% 8%, rgba(255,255,255,.88), transparent 32%),
    radial-gradient(circle at 90% 6%, rgba(231,197,127,.28), transparent 26%),
    linear-gradient(135deg,var(--rd-bg),var(--rd-bg-2) 48%,var(--rd-bg-3));
}

html[data-rd-effective-theme="dark"] body.rd-gardien-v2,
body[data-rd-effective-theme="dark"].rd-gardien-v2{
  --rd-bg:#07111f;
  --rd-bg-2:#0b1728;
  --rd-bg-3:#11263e;
  --rd-ink:#f7fafc;
  --rd-muted:#d2e2ed;
  --rd-card:rgba(11,24,40,.84);
  --rd-card-strong:rgba(15,31,50,.94);
  --rd-border:rgba(255,255,255,.08);
  background:
    radial-gradient(circle at 15% 8%, rgba(32,110,160,.34), transparent 32%),
    radial-gradient(circle at 90% 6%, rgba(231,197,127,.12), transparent 26%),
    linear-gradient(135deg,var(--rd-bg),var(--rd-bg-2) 48%,var(--rd-bg-3));
}

.rd-shell{
  width:min(1460px,calc(100% - 28px));
  margin:18px auto;
  border-radius:28px;
  overflow:hidden;
  background:rgba(255,255,255,.52);
  border:1px solid rgba(255,255,255,.72);
  box-shadow:var(--rd-shadow);
  backdrop-filter:blur(18px);
}

html[data-rd-effective-theme="dark"] .rd-shell{
  background:rgba(7,17,31,.56);
  border-color:rgba(255,255,255,.08);
}

.rd-top{
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  gap:16px;
  padding:16px 28px;
  background:rgba(255,255,255,.68);
  backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(255,255,255,.55);
}

html[data-rd-effective-theme="dark"] .rd-top{
  background:rgba(7,17,31,.78);
  border-bottom-color:rgba(255,255,255,.08);
}

.rd-brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:250px;
}
.rd-brand-mark{
  width:44px;
  height:44px;
  border-radius:999px;
  display:grid;
  place-items:center;
  color:var(--rd-gold);
  background:rgba(255,255,255,.75);
  border:1px solid rgba(200,145,49,.35);
  font-size:22px;
}
.rd-brand-title{
  font-family:"Cinzel Decorative",serif;
  font-size:15px;
  line-height:1.1;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.rd-brand-sub{
  font-family:Arial,sans-serif;
  font-size:10px;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:var(--rd-muted);
  margin-top:4px;
}
.rd-nav{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  flex:1;
}
.rd-nav a{
  text-decoration:none;
  color:var(--rd-ink);
  padding:11px 18px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  background:rgba(255,255,255,.8);
  border:1px solid rgba(255,255,255,.75);
  box-shadow:0 10px 24px rgba(5,39,67,.08);
}
html[data-rd-effective-theme="dark"] .rd-nav a{
  background:rgba(255,255,255,.08);
  color:#f8fafc;
  border-color:rgba(255,255,255,.08);
}

.rd-hero{
  display:grid;
  grid-template-columns:minmax(420px,520px) minmax(0,1fr);
  gap:30px;
  padding:34px 34px 26px;
  align-items:stretch;
}
.rd-hero-visual{
  background:rgba(255,255,255,.58);
  border:1px solid rgba(255,255,255,.75);
  border-radius:30px;
  box-shadow:0 22px 52px rgba(5,39,67,.12);
  overflow:hidden;
  min-height:760px;
}
.rd-hero-visual img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.rd-hero-copy{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-width:0;
  padding:8px 6px;
}
.rd-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:max-content;
  max-width:100%;
  border-radius:999px;
  padding:10px 16px;
  background:linear-gradient(135deg,rgba(255,241,212,.96),rgba(255,255,255,.78));
  border:1px solid rgba(200,145,49,.28);
  color:#7a5218;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:12px;
  font-weight:800;
}
.rd-title{
  margin:22px 0 16px;
  font-family:"Playfair Display",serif;
  font-size:clamp(4rem,6.5vw,6.4rem);
  line-height:.88;
  letter-spacing:-.05em;
  color:#082243;
}
html[data-rd-effective-theme="dark"] .rd-title{ color:#f8fafc; }
.rd-subtitle{
  margin:0 0 18px;
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(1.5rem,2vw,2.15rem);
  line-height:1.12;
  font-weight:700;
  color:#143f65;
}
html[data-rd-effective-theme="dark"] .rd-subtitle{ color:#e8f2f8; }
.rd-summary{
  margin:0;
  font-size:17px;
  line-height:1.78;
  color:#15314a;
  max-width:760px;
}
html[data-rd-effective-theme="dark"] .rd-summary{ color:#eef5fa; }
.rd-badges{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}
.rd-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:13px 17px;
  border-radius:18px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(255,255,255,.75);
  box-shadow:0 14px 28px rgba(5,39,67,.08);
  font-size:14px;
  font-weight:800;
  color:#163854;
}

.rd-section{
  padding:14px 34px 8px;
}
.rd-section-title{
  margin:0 0 22px;
  text-align:center;
  font-family:"Playfair Display",serif;
  font-size:clamp(1.65rem,2.3vw,2.25rem);
  color:var(--rd-ink);
}
.rd-lessons{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:18px;
}
.rd-lesson{
  background:var(--rd-card-strong);
  border:1px solid var(--rd-border);
  border-radius:24px;
  box-shadow:0 18px 42px rgba(5,39,67,.08);
  min-height:170px;
  padding:24px 20px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
}
.rd-lesson-icon{
  font-size:28px;
  color:var(--rd-gold);
}
.rd-lesson p{
  margin:0;
  font-size:14px;
  line-height:1.55;
  font-weight:650;
}

.rd-main{
  display:grid;
  grid-template-columns:290px minmax(0,1fr) 260px;
  gap:26px;
  align-items:start;
  padding:24px 34px 10px;
}
.rd-card{
  background:var(--rd-card);
  border:1px solid rgba(255,255,255,.72);
  border-radius:var(--rd-radius);
  box-shadow:0 22px 58px rgba(5,39,67,.1);
  backdrop-filter:blur(16px);
}
html[data-rd-effective-theme="dark"] .rd-card{
  border-color:rgba(255,255,255,.08);
}
.rd-meta{
  position:sticky;
  top:100px;
  padding:28px 24px;
  display:grid;
  gap:18px;
}
.rd-meta-item{
  display:grid;
  grid-template-columns:30px 1fr;
  gap:12px;
  align-items:start;
  padding-bottom:16px;
  border-bottom:1px solid rgba(10,50,80,.11);
}
.rd-meta-item:last-child{
  border-bottom:0;
  padding-bottom:0;
}
.rd-meta-icon{
  color:var(--rd-gold);
  font-size:22px;
}
.rd-meta h3{
  margin:0 0 6px;
  font-family:"Playfair Display",serif;
  font-size:16px;
}
.rd-meta p{
  margin:0;
  font-size:14px;
  line-height:1.5;
  color:var(--rd-muted);
  font-weight:600;
}

.rd-article{
  padding:30px 32px;
}
.rd-article h2{
  margin:0 0 12px;
  font-family:"Playfair Display",serif;
  font-size:1.5rem;
  color:var(--rd-ink);
}
.rd-article h2:not(:first-child){
  margin-top:28px;
}
.rd-article p{
  margin:0 0 16px;
  font-size:16px;
  line-height:1.82;
  color:var(--rd-ink);
}
.rd-quote-inline{
  margin:22px 0;
  padding:16px 20px;
  border-left:4px solid var(--rd-gold);
  border-radius:0 18px 18px 0;
  background:linear-gradient(90deg,rgba(232,197,127,.18),rgba(255,255,255,.44));
  font-style:italic;
}
.rd-question{
  display:grid;
  grid-template-columns:28px 1fr;
  gap:10px;
  align-items:start;
  margin-bottom:10px;
}
.rd-num{
  width:24px;
  height:24px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--rd-gold),var(--rd-gold-2));
  color:#fff;
  font-size:12px;
  font-weight:900;
}

.rd-side{
  position:sticky;
  top:100px;
  display:grid;
  gap:22px;
}
.rd-share{
  padding:26px 22px;
  text-align:center;
}
.rd-share h3,
.rd-side-quote h3{
  margin:0 0 10px;
  font-family:"Playfair Display",serif;
  font-size:1.3rem;
}
.rd-divider{
  width:110px;
  height:2px;
  margin:0 auto 18px;
  background:linear-gradient(90deg,transparent,var(--rd-gold),transparent);
}
.rd-share-grid{
  display:grid;
  gap:11px;
}
.rd-share button{
  border:0;
  cursor:pointer;
  padding:12px 16px;
  border-radius:999px;
  background:linear-gradient(135deg,#0b4d80,#062e53);
  color:#fff;
  font-family:"Lora",serif;
  font-weight:800;
  box-shadow:0 12px 24px rgba(6,45,82,.22);
}
.rd-share-status{
  min-height:20px;
  margin-top:10px;
  color:var(--rd-muted);
  font-size:13px;
  font-weight:700;
}
.rd-side-quote{
  padding:34px 22px;
  text-align:center;
}
.rd-side-quote p{
  margin:0;
  font-family:"Cormorant Garamond",serif;
  font-size:1.62rem;
  line-height:1.55;
  font-style:italic;
}
.rd-side-reed{
  font-size:72px;
  margin-top:18px;
  color:var(--rd-gold);
}

.rd-prayer{
  margin:18px 34px 28px;
  display:grid;
  grid-template-columns:110px 1fr;
  gap:24px;
  align-items:center;
  padding:26px 30px;
  border-radius:28px;
  background:linear-gradient(135deg,rgba(225,244,255,.92),rgba(255,255,255,.76));
  border:1px solid rgba(11,76,127,.12);
  box-shadow:0 18px 44px rgba(5,39,67,.08);
}
html[data-rd-effective-theme="dark"] .rd-prayer{
  background:linear-gradient(135deg,rgba(15,33,52,.92),rgba(7,17,31,.76));
}
.rd-prayer-icon{
  width:98px;
  height:98px;
  border-radius:24px;
  display:grid;
  place-items:center;
  font-size:48px;
  color:var(--rd-gold);
  background:rgba(255,255,255,.72);
}
.rd-prayer h2{
  margin:0 0 8px;
  font-family:"Playfair Display",serif;
  font-size:1.4rem;
}
.rd-prayer p{
  margin:0;
  font-size:16px;
  line-height:1.75;
}

.rd-docs{
  padding:0 34px 28px;
}
.rd-doc-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.rd-doc{
  text-decoration:none;
  color:var(--rd-ink);
  overflow:hidden;
  border-radius:24px;
  background:var(--rd-card-strong);
  border:1px solid rgba(255,255,255,.72);
  box-shadow:0 18px 42px rgba(5,39,67,.08);
}
.rd-doc-thumb{
  position:relative;
  height:150px;
  background:linear-gradient(135deg,rgba(11,76,127,.35),rgba(231,197,127,.35)),url("/assets/img/meditations-classees-ordonnees/le-gardien-des-roseaux/couverture.png?v=20260531142211") center/cover;
}
.rd-play{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
}
.rd-play span{
  width:54px;
  height:54px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.9);
  color:#0a3154;
  font-size:20px;
}
.rd-doc-body{
  padding:16px 16px 18px;
}
.rd-doc-body h3{
  margin:0 0 8px;
  font-size:15px;
  line-height:1.35;
}
.rd-doc-body p{
  margin:0;
  font-size:13px;
  color:var(--rd-muted);
  font-weight:700;
}

.rd-journal{
  margin:0 34px 28px;
  padding:24px 26px;
  border-radius:28px;
  background:rgba(255,255,255,.76);
  border:1px solid rgba(255,255,255,.72);
  box-shadow:0 18px 42px rgba(5,39,67,.08);
}
html[data-rd-effective-theme="dark"] .rd-journal{
  background:rgba(11,24,40,.84);
}
.rd-journal-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  align-items:start;
}
.rd-journal h2{
  margin:0 0 8px;
  font-family:"Playfair Display",serif;
  font-size:1.3rem;
}
.rd-journal p,
.rd-journal li{
  font-size:14px;
  line-height:1.55;
  color:var(--rd-muted);
}
.rd-journal textarea{
  width:100%;
  min-height:78px;
  border-radius:14px;
  border:1px solid rgba(9,33,58,.14);
  padding:14px;
  font-family:"Lora",serif;
  resize:vertical;
  color:var(--rd-ink);
  background:rgba(255,255,255,.78);
}
.rd-journal-status{
  min-height:20px;
  margin-top:8px;
  color:var(--rd-muted);
  font-size:13px;
  font-weight:700;
}

.rd-atelier{
  margin:0 34px 36px;
  padding:28px;
  border-radius:30px;
  background:linear-gradient(135deg,rgba(255,246,228,.86),rgba(227,244,255,.84));
  border:1px solid rgba(200,145,49,.2);
  box-shadow:0 22px 56px rgba(5,39,67,.08);
}
html[data-rd-effective-theme="dark"] .rd-atelier{
  background:linear-gradient(135deg,rgba(58,45,19,.28),rgba(16,36,58,.78));
}
.rd-atelier-head{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:end;
  margin-bottom:22px;
}
.rd-atelier h2{
  margin:0;
  font-family:"Playfair Display",serif;
  font-size:1.95rem;
}
.rd-atelier p{
  margin:8px 0 0;
  font-size:15px;
  line-height:1.7;
  color:var(--rd-muted);
  max-width:760px;
}
.rd-atelier-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:13px 18px;
  border-radius:999px;
  text-decoration:none;
  color:#fff;
  background:linear-gradient(135deg,#0b4d80,#062e53);
  font-weight:900;
  white-space:nowrap;
}
.rd-atelier-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:14px;
}
.rd-proto{
  text-decoration:none;
  color:var(--rd-ink);
  overflow:hidden;
  border-radius:22px;
  background:rgba(255,255,255,.82);
  border:1px solid rgba(255,255,255,.75);
  box-shadow:0 16px 30px rgba(5,39,67,.08);
}
html[data-rd-effective-theme="dark"] .rd-proto{
  background:rgba(11,24,40,.88);
  border-color:rgba(255,255,255,.08);
}
.rd-proto-img{
  height:145px;
}
.rd-proto-img img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}
.rd-proto-body{
  padding:14px;
}
.rd-proto-body h3{
  margin:0 0 6px;
  font-size:14px;
  line-height:1.3;
}
.rd-proto-body p{
  margin:0;
  font-size:12px;
  line-height:1.45;
  color:var(--rd-muted);
}

.rd-footer{
  background:linear-gradient(135deg,#062847,#031b31);
  color:#fff;
  padding:32px 34px;
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1fr;
  gap:24px;
}
.rd-footer h3{
  margin:0 0 10px;
  font-family:"Cinzel Decorative",serif;
  color:#f2c978;
  font-size:15px;
}
.rd-footer p,
.rd-footer a{
  color:rgba(255,255,255,.8);
  text-decoration:none;
  font-size:13px;
  line-height:1.65;
}
.rd-footer ul{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:5px;
}

@media (max-width: 1240px){
  .rd-hero{
    grid-template-columns:1fr;
  }
  .rd-hero-visual{
    min-height:520px;
  }
  .rd-main{
    grid-template-columns:1fr;
  }
  .rd-meta,
  .rd-side{
    position:static;
  }
  .rd-meta{
    grid-template-columns:repeat(2,1fr);
  }
  .rd-side{
    grid-template-columns:1fr 1fr;
  }
  .rd-lessons{
    grid-template-columns:repeat(2,1fr);
  }
  .rd-doc-grid{
    grid-template-columns:repeat(2,1fr);
  }
  .rd-atelier-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 860px){
  .rd-shell{
    width:100%;
    margin:0;
    border-radius:0;
  }
  .rd-top{
    padding:14px 18px;
  }
  .rd-nav{
    display:none;
  }
  .rd-brand-title{
    font-size:12px;
  }
  .rd-brand-sub{
    font-size:8px;
  }
  .rd-hero{
    padding:20px 18px 12px;
    gap:18px;
  }
  .rd-hero-visual{
    min-height:420px;
  }
  .rd-title{
    font-size:3.35rem;
  }
  .rd-subtitle{
    font-size:1.45rem;
  }
  .rd-badges{
    gap:10px;
  }
  .rd-badge{
    width:100%;
    justify-content:center;
  }
  .rd-section{
    padding:12px 18px 8px;
  }
  .rd-lessons{
    grid-template-columns:1fr;
  }
  .rd-main{
    padding:18px;
    gap:18px;
  }
  .rd-meta{
    grid-template-columns:1fr;
  }
  .rd-article{
    padding:24px 18px;
  }
  .rd-side{
    grid-template-columns:1fr;
  }
  .rd-prayer{
    margin:16px 18px 22px;
    grid-template-columns:1fr;
    text-align:center;
    padding:22px 18px;
  }
  .rd-prayer-icon{
    margin:auto;
  }
  .rd-docs{
    padding:0 18px 22px;
  }
  .rd-doc-grid{
    grid-template-columns:1fr;
  }
  .rd-journal{
    margin:0 18px 22px;
  }
  .rd-journal-grid{
    grid-template-columns:1fr;
  }
  .rd-atelier{
    margin:0 18px 24px;
    padding:22px 18px;
  }
  .rd-atelier-head{
    display:block;
  }
  .rd-atelier-cta{
    width:100%;
    margin-top:16px;
  }
  .rd-atelier-grid{
    grid-template-columns:1fr;
  }
  .rd-footer{
    grid-template-columns:1fr;
    padding:28px 18px;
    text-align:center;
  }
}