/**
 * Lieux de Retraites — Blog (Webflow embed)
 * Scope : #ldr-blog
 */

#ldr-blog {
  --ldrb-green: #28420a;
  --ldrb-green-deep: #1a2d06;
  --ldrb-green-soft: #3d5c3a;
  --ldrb-sage: #8fa67a;
  --ldrb-sage-light: #c5d4b8;
  --ldrb-sage-pale: #e8f0e2;
  --ldrb-cream: #f6f4ee;
  --ldrb-sand: #ebe7dc;
  --ldrb-ivory: #faf8f3;
  --ldrb-white: #ffffff;
  --ldrb-ink: #1a1a18;
  --ldrb-foreground: #303037;
  --ldrb-muted: #5a5a54;
  --ldrb-line: rgba(26, 26, 24, 0.1);
  --ldrb-border: #e8e4da;
  --ldrb-shadow: 0 20px 60px rgba(26, 26, 24, 0.08);
  --ldrb-shadow-lg: 0 32px 80px rgba(26, 26, 24, 0.12);
  --ldrb-shadow-cta: 0 8px 24px rgba(40, 66, 10, 0.22);
  --ldrb-radius: 20px;
  --ldrb-radius-md: 18px;
  --ldrb-radius-sm: 12px;
  --ldrb-radius-pill: 999px;
  --ldrb-font-serif: "Fraunces", "Georgia", serif;
  --ldrb-font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --ldrb-max: 1200px;
  --ldrb-gutter: clamp(20px, 4vw, 40px);
  --ldrb-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ldrb-sticky-top: 18px;
  --ldrb-toc-indent: 14px;

  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  font-family: var(--ldrb-font-sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ldrb-ink);
  background: var(--ldrb-cream);
  -webkit-font-smoothing: antialiased;
}

#ldr-blog *,
#ldr-blog *::before,
#ldr-blog *::after {
  box-sizing: border-box;
}

#ldr-blog a {
  color: inherit;
}

#ldr-blog a.ldrb-link {
  color: var(--ldrb-green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

#ldr-blog button,
#ldr-blog input {
  font: inherit;
}

.ldrb-page {
  width: 100%;
  max-width: var(--ldrb-max);
  margin: 0 auto;
  padding: clamp(36px, 5vw, 64px) var(--ldrb-gutter) clamp(64px, 8vw, 96px);
  box-sizing: border-box;
}

.ldrb-wrap {
  width: 100%;
  max-width: var(--ldrb-max);
  margin: 0 auto;
  padding-left: var(--ldrb-gutter);
  padding-right: var(--ldrb-gutter);
  box-sizing: border-box;
}

.ldrb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ldrb-green-soft);
}

.ldrb-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ldrb-sage);
  flex-shrink: 0;
}

.ldrb-h1 {
  margin: 0 0 14px;
  font-family: var(--ldrb-font-serif);
  font-size: clamp(2.25rem, 4.8vw, 3.6rem);
  font-weight: 520;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.ldrb-lead {
  margin: 0;
  max-width: 40rem;
  font-size: clamp(1.02rem, 1.5vw, 1.1rem);
  color: var(--ldrb-muted);
  line-height: 1.6;
}

.ldrb-article-intro .ldrb-lead {
  max-width: none;
}

.ldrb-hero {
  padding: 0 0 clamp(20px, 3vw, 28px);
}

.ldrb-article-head .ldrb-breadcrumb {
  margin-bottom: clamp(18px, 2.8vw, 28px);
}

.ldrb-article-head .ldrb-h1 {
  margin-top: 0;
}

.ldrb-toolbar {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.ldrb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ldrb-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--ldrb-radius-pill);
  border: 1px solid rgba(40, 66, 10, 0.12);
  background: rgba(255, 255, 255, 0.66);
  color: var(--ldrb-green);
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.ldrb-tag:hover {
  transform: translateY(-1px);
  border-color: rgba(40, 66, 10, 0.22);
}

.ldrb-tag.is-active {
  background: linear-gradient(135deg, #335713 0%, #28420a 60%, #1f3508 100%);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
  box-shadow: var(--ldrb-shadow-cta);
}

.ldrb-tag-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(40, 66, 10, 0.09);
  color: rgba(40, 66, 10, 0.85);
  font-size: 12px;
  font-weight: 700;
}

.ldrb-tag.is-active .ldrb-tag-count {
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
}

.ldrb-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.2vw, 22px);
  margin-top: clamp(20px, 3vw, 30px);
}

.ldrb-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--ldrb-radius);
  overflow: hidden;
  border: 1px solid rgba(40, 66, 10, 0.1);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 45px rgba(26, 26, 24, 0.06);
  transition: transform 0.2s var(--ldrb-ease), box-shadow 0.2s var(--ldrb-ease);
}

.ldrb-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 70px rgba(26, 26, 24, 0.11);
}

.ldrb-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #ddd7cc;
  overflow: hidden;
}

.ldrb-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ldrb-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ldrb-card-toprow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.ldrb-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: var(--ldrb-radius-pill);
  background: rgba(143, 166, 122, 0.16);
  border: 1px solid rgba(143, 166, 122, 0.34);
  color: var(--ldrb-green);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.ldrb-date {
  font-size: 12px;
  font-weight: 650;
  color: rgba(90, 90, 84, 0.9);
}

.ldrb-card-title {
  margin: 0;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.ldrb-card-title a {
  color: inherit;
  text-decoration: none;
}

.ldrb-card-excerpt {
  margin: 0;
  color: var(--ldrb-muted);
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ldrb-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: var(--ldrb-green);
  font-weight: 750;
  font-size: 14px;
  text-decoration: none;
}

.ldrb-card-cta svg {
  flex-shrink: 0;
}

.ldrb-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: clamp(26px, 4vw, 42px);
}

.ldrb-page-btn {
  height: 42px;
  min-width: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(26, 26, 24, 0.14);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ldrb-foreground);
  font-weight: 750;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.ldrb-page-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(26, 26, 24, 0.26);
}

.ldrb-page-btn.is-active {
  background: var(--ldrb-green);
  border-color: var(--ldrb-green);
  color: #fff;
}

.ldrb-page-btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.ldrb-page-ellipsis {
  height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: rgba(90, 90, 84, 0.9);
  font-weight: 700;
}

.ldrb-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: rgba(90, 90, 84, 0.95);
  font-size: 13px;
  font-weight: 650;
}

.ldrb-breadcrumb a {
  color: var(--ldrb-green);
  text-decoration: none;
}

.ldrb-breadcrumb-sep {
  opacity: 0.6;
}

.ldrb-article-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  margin-top: 14px;
}

.ldrb-article-hero-media {
  width: 100%;
  max-height: min(38vw, 320px);
  aspect-ratio: 21 / 9;
  border-radius: var(--ldrb-radius);
  overflow: hidden;
  border: 1px solid rgba(40, 66, 10, 0.12);
  background: #ddd7cc;
  margin-top: 16px;
}

.ldrb-article-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ldrb-article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.ldrb-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: clamp(18px, 3vw, 24px);
  align-items: start;
}

.ldrb-prose {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(40, 66, 10, 0.1);
  border-radius: var(--ldrb-radius);
  box-shadow: 0 16px 45px rgba(26, 26, 24, 0.06);
  padding: clamp(18px, 2.6vw, 26px);
}

.ldrb-prose p {
  margin: 0 0 14px;
  color: rgba(26, 26, 24, 0.92);
}

.ldrb-prose p:last-child {
  margin-bottom: 0;
}

.ldrb-prose h2 {
  margin: 22px 0 10px;
  font-family: var(--ldrb-font-serif);
  font-weight: 520;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
}

.ldrb-prose h3 {
  margin: 18px 0 8px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-size: 1.05rem;
}

.ldrb-prose ul,
.ldrb-prose ol {
  margin: 0 0 14px;
  padding-left: 1.2rem;
  color: rgba(26, 26, 24, 0.92);
}

.ldrb-prose li {
  margin-bottom: 8px;
}

.ldrb-prose img,
.ldrb-prose figure img {
  border-radius: var(--ldrb-radius-sm);
  max-width: 100%;
  height: auto;
}

.ldrb-prose blockquote {
  margin: 20px 0;
  padding: 16px 20px 16px 22px;
  border-left: 4px solid var(--ldrb-sage);
  background: linear-gradient(90deg, rgba(232, 240, 226, 0.9) 0%, rgba(255, 255, 255, 0.5) 100%);
  border-radius: 0 var(--ldrb-radius-sm) var(--ldrb-radius-sm) 0;
  font-family: var(--ldrb-font-serif);
  font-style: italic;
  color: rgba(26, 26, 24, 0.9);
}

.ldrb-prose blockquote p {
  margin: 0;
}

.ldrb-sidebar {
  position: sticky;
  top: var(--ldrb-sticky-top);
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ldrb-panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(40, 66, 10, 0.1);
  border-radius: var(--ldrb-radius);
  box-shadow: 0 16px 45px rgba(26, 26, 24, 0.06);
  overflow: hidden;
}

.ldrb-panel-head {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(26, 26, 24, 0.08);
  background: linear-gradient(180deg, rgba(248, 247, 242, 0.95) 0%, rgba(255, 255, 255, 0.84) 100%);
}

.ldrb-panel-title {
  margin: 0;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(61, 92, 58, 0.95);
}

.ldrb-article-head {
  margin-bottom: clamp(18px, 3vw, 26px);
}

.ldrb-toc {
  padding: 8px 6px 12px;
}

.ldrb-toc-h2-row {
  display: flex;
  align-items: flex-start;
  margin: 2px 4px;
  padding: 0 6px;
  border-radius: 10px;
  transition: background 0.18s ease;
}

.ldrb-toc-h2-row:hover {
  background: rgba(143, 166, 122, 0.1);
}

.ldrb-toc-group.is-active-h2 > .ldrb-toc-h2-row {
  background: rgba(40, 66, 10, 0.1);
}

.ldrb-toc-group.is-active-h2 > .ldrb-toc-h2-row a {
  color: var(--ldrb-green);
}

.ldrb-toc a {
  display: block;
  flex: 1;
  padding: 8px 8px;
  border-radius: 10px;
  text-decoration: none;
  color: rgba(26, 26, 24, 0.92);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.3;
  transition: color 0.18s ease;
}

.ldrb-toc-h2-row a:hover,
.ldrb-toc-h2-row a.is-active {
  background: transparent;
}

.ldrb-toc-children a:hover {
  background: rgba(143, 166, 122, 0.1);
}

.ldrb-toc-children a.is-active {
  background: rgba(40, 66, 10, 0.1);
  color: var(--ldrb-green);
  font-weight: 750;
}

.ldrb-toc-children {
  display: none;
  padding: 0 0 4px 18px;
  margin-left: 10px;
  border-left: 2px solid rgba(143, 166, 122, 0.35);
}

.ldrb-toc-group.is-expanded .ldrb-toc-children {
  display: block;
}

.ldrb-toc-children a {
  font-weight: 650;
  font-size: 12px;
  padding: 6px 10px 6px 14px;
  margin: 0 4px 0 0;
  color: rgba(90, 90, 84, 0.95);
}

.ldrb-toc-mobile {
  display: none;
  margin-bottom: clamp(14px, 2.5vw, 20px);
}

.ldrb-toc-desktop {
  display: block;
}

.ldrb-cta {
  padding: 16px;
  background: radial-gradient(120% 120% at 10% 0%, rgba(195, 212, 184, 0.6) 0%, rgba(232, 240, 226, 0.35) 35%, rgba(255, 255, 255, 0.84) 100%);
}

.ldrb-cta-title {
  margin: 0 0 10px;
  font-family: var(--ldrb-font-serif);
  font-size: 1.25rem;
  font-weight: 520;
  line-height: 1.15;
}

.ldrb-cta-lead {
  margin: 0 0 14px;
  color: var(--ldrb-muted);
  font-size: 14px;
}

.ldrb-lieux-mini {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.ldrb-lieu-mini {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 10px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(40, 66, 10, 0.1);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ldrb-lieu-mini:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 45px rgba(26, 26, 24, 0.08);
}

.ldrb-lieu-mini-media {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  background: #ddd7cc;
}

.ldrb-lieu-mini-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ldrb-lieu-mini-name {
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  margin: 0;
}

.ldrb-lieu-mini-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 650;
  color: var(--ldrb-muted);
}

.ldrb-lieu-mini-price {
  color: var(--ldrb-green);
  font-weight: 800;
}

.ldrb-cta-btn,
#ldr-blog a.ldrb-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 46px;
  border-radius: 999px;
  border: 1px solid rgba(40, 66, 10, 0.14);
  background: linear-gradient(135deg, #335713 0%, #28420a 60%, #1f3508 100%);
  color: #fff !important;
  text-decoration: none;
  font-weight: 850;
  box-shadow: var(--ldrb-shadow-cta);
  transition: transform 0.18s ease;
}

.ldrb-cta-btn:hover,
#ldr-blog a.ldrb-cta-btn:hover {
  color: #fff !important;
  transform: translateY(-1px);
}

.ldrb-cta-btn svg {
  color: #fff;
  stroke: #fff;
}

.ldrb-main-col {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.ldrb-more {
  margin-top: clamp(32px, 5vw, 48px);
  padding-top: clamp(24px, 4vw, 36px);
  border-top: 1px solid rgba(40, 66, 10, 0.1);
}

.ldrb-more-title {
  margin: 0 0 clamp(18px, 3vw, 24px);
  font-family: var(--ldrb-font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  font-weight: 520;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.ldrb-more-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2.2vw, 22px);
}

.ldrb-faq-wrap {
  margin-top: clamp(24px, 4vw, 36px);
  padding: clamp(18px, 2.6vw, 26px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(40, 66, 10, 0.1);
  border-radius: var(--ldrb-radius);
  box-shadow: 0 16px 45px rgba(26, 26, 24, 0.06);
}

.ldrb-faq {
  margin-top: 0;
}

.ldrb-faq-title {
  margin: 0 0 12px;
  font-family: var(--ldrb-font-serif);
  font-size: 1.7rem;
  font-weight: 520;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.ldrb-faq-list {
  display: grid;
  gap: 10px;
}

.ldrb-faq-item {
  border-radius: var(--ldrb-radius);
  border: 1px solid rgba(40, 66, 10, 0.1);
  background: rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.ldrb-faq-q {
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.ldrb-faq-q span:first-child {
  font-weight: 800;
  color: var(--ldrb-ink);
}

.ldrb-faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(26, 26, 24, 0.12);
  background: rgba(255, 255, 255, 0.88);
  color: var(--ldrb-green);
  flex-shrink: 0;
}

.ldrb-faq-a {
  display: none;
  padding: 0 16px 16px;
  color: var(--ldrb-muted);
  font-size: 14px;
}

.ldrb-faq-item.is-open .ldrb-faq-a {
  display: block;
}

.ldrb-faq-item.is-open .ldrb-faq-toggle {
  background: rgba(40, 66, 10, 0.08);
}

.ldrb-faq-item.is-open .ldrb-faq-toggle svg {
  display: block;
}

.ldrb-loader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 64px 0;
  color: rgba(90, 90, 84, 0.9);
  font-weight: 750;
}

.ldrb-spinner {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid rgba(26, 26, 24, 0.18);
  border-top-color: rgba(40, 66, 10, 0.8);
  animation: ldrb-spin 0.8s linear infinite;
}

@keyframes ldrb-spin {
  to {
    transform: rotate(360deg);
  }
}

.ldrb-error {
  padding: 28px 0;
  color: #7a1f1f;
  font-weight: 800;
}

.ldrb-empty {
  padding: 28px 0;
  color: rgba(90, 90, 84, 0.95);
  font-weight: 750;
}

@media (max-width: 1060px) {
  .ldrb-layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .ldrb-sidebar {
    position: static;
    top: auto;
  }
  .ldrb-toc-mobile {
    display: block;
  }
  .ldrb-toc-desktop {
    display: none;
  }
}

@media (max-width: 980px) {
  .ldrb-grid,
  .ldrb-more-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .ldrb-grid,
  .ldrb-more-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .ldrb-tags {
    gap: 8px;
  }
  .ldrb-tag {
    padding: 9px 12px;
    font-size: 13px;
  }
}

