/* Mi Biblioteca — Leyendo ahora */
.mb-leyendo {
  width: min(100% - 2rem, var(--mb-max, 74rem));
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
}

.mb-leyendo__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  padding: 0.85rem 1.1rem;
  border: 1px solid var(--mb-line, #d9d0c3);
  border-left: 3px solid #d62828;
  background: #fffaf3;
  background: color-mix(in srgb, var(--mb-bg, #f6f1e8) 88%, #fff);
}

.mb-leyendo__live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  flex: 0 0 auto;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  color: #b91c1c;
}

.mb-leyendo__dot {
  flex: 0 0 auto;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #d62828;
  box-shadow: 0 0 0 0 rgba(214, 40, 40, 0.45);
  animation: mb-leyendo-pulse 1.6s ease-out infinite;
}

.mb-leyendo__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  flex: 1 1 12rem;
  min-width: 0;
}

.mb-leyendo__item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  min-width: 0;
  max-width: 28rem;
}

.mb-leyendo__cover {
  flex: 0 0 auto;
}

.mb-leyendo__cover img {
  width: 2.75rem;
  height: auto;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
}

.mb-leyendo__body {
  min-width: 0;
  flex: 1 1 auto;
}

.mb-leyendo__title {
  margin: 0;
  font-family: var(--mb-font-display, Georgia, serif);
  font-size: 1rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.mb-leyendo__title a {
  color: inherit;
  text-decoration: none;
}

.mb-leyendo__title a:hover {
  color: var(--mb-accent, #8b6914);
}

.mb-leyendo__author,
.mb-leyendo__since {
  margin: 0.15rem 0 0;
  font-size: 0.84rem;
  color: var(--mb-muted, #5f6670);
}

.mb-leyendo__since {
  font-size: 0.78rem;
}

@keyframes mb-leyendo-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(214, 40, 40, 0.5);
    opacity: 1;
  }
  70% {
    box-shadow: 0 0 0 0.4rem rgba(214, 40, 40, 0);
    opacity: 0.85;
  }
  100% {
    box-shadow: 0 0 0 0 rgba(214, 40, 40, 0);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mb-leyendo__dot {
    animation: none;
  }
}

/* Móvil: franja discreta de una línea */
@media (max-width: 720px) {
  .mb-leyendo {
    margin: 0 auto 1rem;
  }

  .mb-leyendo__inner {
    flex-wrap: nowrap;
    align-items: baseline;
    gap: 0.5rem 0.65rem;
    padding: 0.55rem 0.75rem;
    border-left-width: 2px;
  }

  .mb-leyendo__live {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    flex-shrink: 0;
  }

  .mb-leyendo__dot {
    width: 0.4rem;
    height: 0.4rem;
  }

  .mb-leyendo__list {
    flex: 1 1 auto;
    min-width: 0;
    gap: 0;
  }

  .mb-leyendo__item {
    max-width: none;
    width: 100%;
    gap: 0;
  }

  .mb-leyendo__cover {
    display: none;
  }

  .mb-leyendo__title {
    font-family: var(--mb-font-body, system-ui, sans-serif);
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.3;
    display: inline;
  }

  .mb-leyendo__author {
    display: inline;
    margin: 0;
    font-size: 0.8rem;
  }

  .mb-leyendo__author::before {
    content: " · ";
  }

  .mb-leyendo__since {
    display: none;
  }
}
