/* Listagem pública de capítulos (/capitulos), com a identidade visual do site externo. */
.chapters-section { background: #ede8dc; color: #16201f; padding: 110px max(24px, calc((100vw - 1260px) / 2)) 130px; }
.chapters-section .section-heading { display: block; margin-bottom: 0; }
.chapters-section .section-heading .eyebrow { display: flex; align-items: center; gap: 12px; width: fit-content; margin: 0; }
.chapters-section .section-heading .eyebrow::before { content: ""; width: 34px; height: 1px; background: #9a612a; }
.chapters-section .section-heading h1 { margin: 14px 0 16px; font: 600 clamp(34px, 4.2vw, 54px) "Playfair Display", serif; white-space: nowrap; }
.chapters-section .section-heading > p:last-child { max-width: 480px; margin: 0; color: #5c655f; font-size: 13px; line-height: 1.7; }

.chapters-grid { margin-top: 50px; display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.chapter-list-card.is-section { background: #efe9dd; }
.chapter-list-card.is-section .chapter-list-tag { color: #7d8a86; border-color: rgba(21, 46, 44, .12); }

.chapter-list-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(21, 46, 44, .08);
  border-radius: 6px;
  background: #f7f3e9;
  transition: transform .2s ease, box-shadow .2s ease;
}
.chapter-list-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(19, 45, 42, .1); }
.chapter-list-top { display: flex; align-items: center; justify-content: space-between; }
.chapter-list-number { color: #9a612a; font: 600 13px "Manrope", sans-serif; }
.chapter-list-tag { padding: 5px 10px; border: 1px solid rgba(154, 97, 42, .25); border-radius: 999px; color: #9a612a; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.chapter-list-card h3 { margin: 0; font: 600 22px "Playfair Display", serif; color: #16201f; }
.chapter-list-card p { flex: 1; margin: 0; color: #5c655f; font-size: 12px; line-height: 1.7; }
.chapter-list-meta { display: flex; gap: 14px; color: #7a8480; font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.chapter-list-actions { margin-top: 4px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(21, 46, 44, .1); }
.chapter-list-action { min-width: 0; height: 38px; padding: 0 8px; display: inline-flex; align-items: center; justify-content: center; gap: 7px; border: 0; border-right: 1px solid rgba(21, 46, 44, .08); background: transparent; color: #9a612a; font: 600 10px "Manrope", sans-serif; cursor: pointer; }
.chapter-list-action:last-child { border-right: 0; }
.chapter-list-action:hover { background: rgba(154, 97, 42, .06); }
.chapter-list-action svg { width: 14px; height: 14px; stroke-width: 1.8; }
.chapter-list-action.is-disabled { color: #9ba19e; opacity: .45; cursor: default; }
.chapter-list-action.is-disabled:hover { background: transparent; }
.chapter-list-empty { padding: 60px 0; text-align: center; color: #7a8480; }
