/**
 * Ebre Prose — texto editorial. Anchos de lectura + capitular + citas.
 */
.ebre-prose .ep-w-narrow { max-width: 42rem; }
.ebre-prose .ep-w-normal { max-width: 51rem; }   /* ~820px, como el mockup */
.ebre-prose .ep-w-wide   { max-width: 60rem; }
.ebre-prose .ep-w-full   { max-width: none; }

/* Los <p> se nombran aparte: el tema les fija el tamaño en la capa base y una
   regla directa gana siempre a la que heredarían del contenedor. */
.ebre-prose .ep-body,
.ebre-prose .ep-body p,
.ebre-prose .ep-body li {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  line-height: 1.8;
  color: rgb(var(--neutral-text-main, 40 40 40));
}
.ebre-prose .ep-body > p { margin-bottom: 1.5rem; }
.ebre-prose .ep-body > p:last-child { margin-bottom: 0; }

/* Letra capitular en el primer párrafo */
.ebre-prose .ep-body.has-dropcap > p:first-of-type::first-letter {
  font-family: var(--font-heading, 'Barlow', sans-serif);
  font-weight: 800;
  font-size: 5rem;
  line-height: 4.2rem;
  float: left;
  padding-right: 12px;
  padding-top: 4px;
  color: rgb(var(--brand-accent));
}

/* Listas — Tailwind preflight las deja sin viñeta */
.ebre-prose .ep-body ul,
.ebre-prose .ep-body ol {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}
.ebre-prose .ep-body ul { list-style: disc outside; }
.ebre-prose .ep-body ol { list-style: decimal outside; }
.ebre-prose .ep-body li { margin-bottom: 0.5rem; padding-left: 0.25rem; }
.ebre-prose .ep-body li::marker { color: rgb(var(--brand-accent)); }

/* Enlaces dentro del texto editorial */
.ebre-prose .ep-body a {
  color: rgb(var(--brand-primary));
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: rgb(var(--brand-accent));
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.ebre-prose .ep-body a:hover { color: rgb(var(--brand-accent)); }

/* Titulares intermedios dentro del cuerpo */
.ebre-prose .ep-body > h2,
.ebre-prose .ep-body > h3 { margin-bottom: 0.75rem; }
.ebre-prose .ep-body > h2:not(:first-child),
.ebre-prose .ep-body > h3:not(:first-child) { margin-top: 2.5rem; }

/* Cita destacada */
.ebre-prose .ep-body blockquote {
  border-left: 4px solid rgb(var(--brand-accent));
  padding-left: 1.5rem;
  margin: 2.5rem 0 0.75rem;
  font-family: var(--font-heading, 'Barlow', sans-serif);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.6vw, 1.875rem);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: rgb(var(--brand-primary));
}
.ebre-prose .ep-body cite {
  display: block;
  font-style: normal;
  font-family: var(--font-heading, 'Barlow', sans-serif);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgb(var(--neutral-text-muted, 156 163 175));
  padding-left: 1.5rem;
}
