@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap");

/* ===========================
   PAGE PODCAST – DESIGN PREMIUM
   =========================== */

body.lmwdp-page {
  --lmwdp-bg: #f6f1e7;
  --lmwdp-surface: #ffffff;
  --lmwdp-surface-soft: #fdfaf4;
  --lmwdp-text: #1b2733;
  --lmwdp-muted: #66727d;
  --lmwdp-accent: #d15a30;
  --lmwdp-accent-2: #0f8a80;
  --lmwdp-border: rgba(27, 39, 51, 0.12);
  --lmwdp-border-strong: rgba(27, 39, 51, 0.22);
  --lmwdp-shadow: 0 20px 48px rgba(26, 32, 40, 0.12);
  --lmwdp-radius: 26px;

  position: relative;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--lmwdp-text);
  background:
    radial-gradient(70% 60% at -8% -12%, rgba(209, 90, 48, 0.16), transparent 65%),
    radial-gradient(60% 56% at 108% -8%, rgba(15, 138, 128, 0.16), transparent 64%),
    linear-gradient(180deg, #f8f4ec 0%, #f3ede2 44%, #efe8dc 100%);
  padding-top: 124px;
  padding-bottom: calc(220px + var(--safe-bottom, 0px));
}

body.lmwdp-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(27, 39, 51, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 39, 51, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at 50% 14%, rgba(0, 0, 0, 0.76), transparent 82%);
}

.lmwdp-wrap {
  position: relative;
  z-index: 1;
  max-width: 1220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 0 18px 42px;
  margin: 0 auto;
}

.lmwdp-wrap > * {
  width: min(100%, 1140px);
  margin-inline: auto;
}

.lmwdp-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  z-index: 140;
  background: linear-gradient(90deg, #d15a30, #0f8a80);
  box-shadow: 0 0 18px rgba(209, 90, 48, 0.32);
}

.lmwdp-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--lmwdp-border);
  background: rgba(255, 255, 255, 0.82);
  color: #263544;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(25, 31, 38, 0.08);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.lmwdp-back:hover,
.lmwdp-back:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(209, 90, 48, 0.42);
  box-shadow: 0 14px 24px rgba(25, 31, 38, 0.12);
}

/* HERO */

.lmwdp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 24px;
  align-items: stretch;
}

.lmwdp-cover-frame,
.lmwdp-hero-panel,
.lmwdp-card {
  border-radius: var(--lmwdp-radius);
  border: 1px solid var(--lmwdp-border);
  box-shadow: var(--lmwdp-shadow);
  background-color: var(--lmwdp-surface);
}

.lmwdp-cover-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: clamp(340px, 50vh, 560px);
  max-height: 590px;
  padding: 18px;
  background:
    linear-gradient(165deg, #fbf6ee 0%, #f4ede1 55%, #f9f4ea 100%),
    radial-gradient(120% 120% at 0% 0%, rgba(209, 90, 48, 0.1), transparent 55%),
    radial-gradient(120% 120% at 100% 100%, rgba(15, 138, 128, 0.1), transparent 55%);
}

.lmwdp-cover-frame::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 20px;
  border: 1px dashed rgba(27, 39, 51, 0.12);
  pointer-events: none;
}

.lmwdp-cover-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.55), transparent);
  pointer-events: none;
}

.lmwdp-cover {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.03) contrast(1.02);
  transition: transform .45s ease, filter .35s ease;
}

.lmwdp-cover-frame:hover .lmwdp-cover {
  transform: scale(1.02);
  filter: saturate(1.1) contrast(1.04);
}

.lmwdp-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  border-radius: 999px;
  border: 1px solid rgba(15, 138, 128, 0.35);
  background: rgba(15, 138, 128, 0.16);
  color: #0e615a;
  font-size: 0.79rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.75px;
}

.lmwdp-badge--scheduled {
  border-color: rgba(209, 90, 48, 0.34);
  background: rgba(209, 90, 48, 0.12);
  color: #9d421f;
}

.lmwdp-hero-panel {
  position: relative;
  overflow: hidden;
  padding: 26px 26px 22px;
  background:
    linear-gradient(162deg, #ffffff 0%, #fbf6ee 62%, #f4eee2 100%),
    radial-gradient(95% 110% at 100% -10%, rgba(15, 138, 128, 0.11), transparent 70%);
}

.lmwdp-hero-panel::after {
  content: "";
  position: absolute;
  inset: auto -8% -38% -8%;
  height: 52%;
  background: radial-gradient(ellipse at center, rgba(209, 90, 48, 0.13), transparent 74%);
  pointer-events: none;
}

.lmwdp-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15, 138, 128, 0.34);
  background: rgba(15, 138, 128, 0.12);
  color: #0f6f66;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.88px;
  text-transform: uppercase;
}

.lmwdp-title,
.lmwdp-section-title,
.lmwdp-side-title,
.lmwdp-form-title {
  font-family: "Fraunces", "Georgia", serif;
}

.lmwdp-title {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: #15212d;
  line-height: 1.06;
  letter-spacing: 0.1px;
  font-size: clamp(1.95rem, 4vw, 3.1rem);
  text-wrap: balance;
}

.lmwdp-meta-row {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lmwdp-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(27, 39, 51, 0.16);
  background: rgba(255, 255, 255, 0.9);
  color: #2b3b4d;
  font-size: 0.83rem;
  font-weight: 700;
}

.lmwdp-breadcrumb {
  position: relative;
  z-index: 1;
  margin: 12px 0 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: var(--lmwdp-muted);
  font-size: 0.92rem;
}

.lmwdp-breadcrumb a {
  color: #1f6b88;
  text-decoration: none;
}

.lmwdp-breadcrumb a:hover {
  color: #174d62;
  text-decoration: underline;
}

.lmwdp-summary {
  position: relative;
  z-index: 1;
  margin: 4px 0 0;
  color: #2b3742;
  line-height: 1.7;
}

.lmwdp-audio {
  width: 100%;
  margin-top: 14px;
  accent-color: var(--lmwdp-accent);
  filter: saturate(1.02);
}

.lmwdp-schedule {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  padding: 15px;
  border-radius: 16px;
  border: 1px solid rgba(209, 90, 48, 0.3);
  background:
    linear-gradient(140deg, rgba(209, 90, 48, 0.13), rgba(15, 138, 128, 0.09)),
    #fff7f2;
}

.lmwdp-schedule-title {
  margin-bottom: 7px;
  color: #8f3d1e;
  font-weight: 800;
}

.lmwdp-countdown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(27, 39, 51, 0.18);
  background: #fff;
  color: #233240;
}

.lmwdp-countdown-val {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.4px;
}

.lmwdp-schedule-hint {
  margin-top: 8px;
  color: #5f6972;
  font-size: 0.92rem;
}

.lmwdp-hero-actions {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.lmwdp-btn,
.lmwdp-share-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 13px;
  border: 1px solid rgba(209, 90, 48, 0.42);
  background: linear-gradient(145deg, #da6538 0%, #bf4f27 100%);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(209, 90, 48, 0.2);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}

.lmwdp-btn:hover,
.lmwdp-share-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(209, 90, 48, 0.28);
  filter: brightness(1.03);
}

.lmwdp-btn:focus-visible,
.lmwdp-share-link:focus-visible,
.lmwdp-form textarea:focus-visible,
.lmwdp-author-link:focus-visible {
  outline: 3px solid rgba(15, 138, 128, 0.26);
  outline-offset: 2px;
}

.lmwdp-btn--ghost {
  border-color: rgba(27, 39, 51, 0.2);
  background: rgba(255, 255, 255, 0.85);
  color: #1b2a36;
  box-shadow: 0 10px 18px rgba(23, 30, 38, 0.08);
}

.lmwdp-btn--ghost:hover {
  box-shadow: 0 16px 24px rgba(23, 30, 38, 0.12);
}

/* LAYOUT CONTENU + ASIDE */

.lmwdp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 342px;
  gap: 18px;
  align-items: start;
  margin-top: 10px;
}

.lmwdp-card {
  padding: 20px;
  background:
    linear-gradient(170deg, rgba(255, 255, 255, 0.97), rgba(249, 243, 234, 0.95)),
    radial-gradient(120% 140% at 100% 0%, rgba(15, 138, 128, 0.08), transparent 58%);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.lmwdp-card:hover {
  transform: translateY(-2px);
  border-color: var(--lmwdp-border-strong);
  box-shadow: 0 26px 44px rgba(20, 28, 35, 0.14);
}

.lmwdp-main-card {
  min-height: 100%;
}

.lmwdp-section-title {
  margin: 0 0 10px;
  color: #182531;
  letter-spacing: 0.14px;
  font-size: clamp(1.3rem, 1.9vw, 1.7rem);
}

.lmwdp-description {
  color: #2a3642;
  line-height: 1.74;
  white-space: pre-wrap;
}

.lmwdp-muted {
  margin: 12px 0 0;
  color: var(--lmwdp-muted);
}

.lmwdp-side-card {
  position: sticky;
  top: 128px;
}

.lmwdp-author {
  position: relative;
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 16px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(27, 39, 51, 0.14);
  background:
    linear-gradient(165deg, #fff 0%, #fcf6eb 100%),
    radial-gradient(130% 120% at 100% 100%, rgba(15, 138, 128, 0.14), transparent 62%);
}

.lmwdp-author-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
  align-content: center;
}

.lmwdp-author-avatar {
  width: 88px;
  height: 88px;
  border-radius: 20px;
  object-fit: cover;
  border: 1px solid rgba(27, 39, 51, 0.16);
  background: #eef2f5;
  box-shadow: 0 10px 20px rgba(20, 28, 34, 0.13);
}

.lmwdp-author-avatar--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", "Georgia", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  background:
    radial-gradient(circle at 22% 16%, rgba(209, 90, 48, 0.72), transparent 58%),
    radial-gradient(circle at 82% 86%, rgba(15, 138, 128, 0.66), transparent 60%),
    linear-gradient(145deg, #43566a 0%, #223240 100%);
}

.lmwdp-author-role {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 138, 128, 0.35);
  background: rgba(15, 138, 128, 0.1);
  color: #0f6a62;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.76px;
  text-transform: uppercase;
}

.lmwdp-author-name {
  font-family: "Fraunces", "Georgia", serif;
  font-size: clamp(1.08rem, 1.4vw, 1.28rem);
  font-weight: 700;
  color: #1a2733;
  line-height: 1.15;
}

.lmwdp-author-bio {
  margin: 0;
  color: #4d5c68;
  line-height: 1.58;
  font-size: 0.93rem;
}

.lmwdp-author-link {
  width: fit-content;
  margin-top: 2px;
  color: #105e79;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(16, 94, 121, 0.38);
  transition: color .2s ease, border-color .2s ease, transform .2s ease;
}

.lmwdp-author-link:hover {
  color: #0a4254;
  border-color: rgba(10, 66, 84, 0.6);
  transform: translateX(2px);
}

.lmwdp-side-title {
  margin: 6px 0 8px;
  color: #1b2834;
  font-size: 1.08rem;
}

.lmwdp-side-list {
  display: grid;
  gap: 8px;
  margin-bottom: 14px;
}

.lmwdp-side-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 11px;
  border-radius: 12px;
  border: 1px solid rgba(27, 39, 51, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

.lmwdp-side-item span {
  color: var(--lmwdp-muted);
  font-size: 0.88rem;
}

.lmwdp-side-item strong {
  color: #1b2a36;
  font-size: 0.9rem;
  text-align: right;
}

.lmwdp-share-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.lmwdp-share-link--btn {
  font: inherit;
}

/* COMMENTAIRES */

.lmwdp-comments {
  margin-top: 4px;
}

.lmwdp-comments-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 4px;
}

.lmwdp-comments-count {
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(15, 138, 128, 0.34);
  color: #0f6a62;
  background: rgba(15, 138, 128, 0.1);
  font-weight: 800;
}

.lmwdp-comment {
  margin-top: 12px;
  padding: 13px;
  border-radius: 14px;
  border: 1px solid rgba(27, 39, 51, 0.11);
  background: linear-gradient(180deg, #fff 0%, #faf5ec 100%);
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.lmwdp-comment:hover {
  transform: translateY(-1px);
  border-color: rgba(15, 138, 128, 0.3);
  box-shadow: 0 14px 26px rgba(20, 28, 35, 0.12);
}

.lmwdp-comment-meta {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  color: #6a7681;
  font-size: 0.86rem;
  margin-bottom: 6px;
}

.lmwdp-comment-content {
  color: #273441;
  line-height: 1.67;
  white-space: pre-wrap;
}

.lmwdp-form-title {
  margin: 16px 0 8px;
  font-size: 1.18rem;
  color: #182632;
}

.lmwdp-form textarea {
  width: 100%;
  min-height: 125px;
  margin: 0 0 10px;
  padding: 13px;
  border-radius: 14px;
  border: 1px solid rgba(27, 39, 51, 0.2);
  background: rgba(255, 255, 255, 0.92);
  color: #1e2d3a;
  font: inherit;
  resize: vertical;
}

.lmwdp-form textarea::placeholder {
  color: #81909c;
}

.lmwdp-form textarea:focus {
  border-color: rgba(209, 90, 48, 0.5);
  box-shadow: 0 0 0 4px rgba(209, 90, 48, 0.16);
}

/* ANIMATION REVEAL */

.lmwdp-reveal {
  opacity: 0;
  transform: translateY(18px) scale(0.99);
  transition: opacity .58s ease, transform .58s cubic-bezier(.2, .7, .2, 1);
}

.lmwdp-visible,
.lmwdp-reveal.lmwdp-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* RESPONSIVE */

@media (min-width: 1180px) {
  .lmwdp-wrap > * {
    width: min(100%, 1140px);
  }

  .lmwdp-hero-grid {
    gap: 26px;
  }

  .lmwdp-cover-frame {
    min-height: clamp(360px, 52vh, 600px);
    max-height: 620px;
  }

  .lmwdp-title {
    max-width: 22ch;
  }

  .lmwdp-summary {
    max-width: 66ch;
  }
}

@media (max-width: 1030px) {
  body.lmwdp-page {
    padding-top: 96px;
    padding-bottom: calc(236px + var(--safe-bottom, 0px));
  }

  .lmwdp-wrap > * {
    width: min(100%, 980px);
  }

  .lmwdp-hero-grid,
  .lmwdp-layout {
    grid-template-columns: 1fr;
  }

  .lmwdp-cover-frame {
    min-height: clamp(300px, 46vh, 490px);
    max-height: 510px;
  }

  .lmwdp-side-card {
    position: relative;
    top: 0;
  }
}

@media (max-width: 680px) {
  body.lmwdp-page {
    padding-top: 84px;
    padding-bottom: calc(248px + var(--safe-bottom, 0px));
  }

  .lmwdp-scroll-progress {
    height: 3px;
  }

  .lmwdp-wrap {
    padding-inline: 12px;
  }

  .lmwdp-wrap > * {
    width: 100%;
  }

  .lmwdp-card,
  .lmwdp-hero-panel,
  .lmwdp-cover-frame {
    border-radius: 18px;
  }

  .lmwdp-hero-panel,
  .lmwdp-card {
    padding: 16px;
  }

  .lmwdp-cover-frame {
    min-height: clamp(250px, 42vh, 390px);
    max-height: 410px;
    padding: 12px;
  }

  .lmwdp-badge {
    top: 12px;
    left: 12px;
  }

  .lmwdp-title {
    font-size: clamp(1.62rem, 8vw, 2.2rem);
  }

  .lmwdp-share-grid {
    grid-template-columns: 1fr;
  }

  .lmwdp-author {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .lmwdp-author-copy {
    justify-items: center;
  }

  .lmwdp-author-avatar {
    width: 74px;
    height: 74px;
    border-radius: 18px;
  }

  .lmwdp-countdown {
    gap: 6px;
    font-size: 0.9rem;
  }

  .lmwdp-summary,
  .lmwdp-description,
  .lmwdp-comment-content {
    line-height: 1.62;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lmwdp-reveal,
  .lmwdp-cover,
  .lmwdp-btn,
  .lmwdp-share-link,
  .lmwdp-card {
    transition: none !important;
  }
}

