/* Books archive — module styles. Enqueued after dark-mode.css (see books.php).
   Adapted from magazines.css. */

.zia-book-page .container-inner { max-width: 1100px; margin: 0 auto; }
.zia-book-head h1, .zia-book-title { margin: .4em 0; }
.zia-book-intro { color: #555; margin: 0 0 1.4em; }
.zia-book-intro a { text-decoration: none; color: #dd9933; }
.zia-book-intro a:hover { color: #b9791f; }

/* book card grid (single compact grid) */
.zia-book-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }
.zia-book-card { display: block; border: 1px solid #ddd; border-radius: 10px; overflow: hidden;
    text-align: center; text-decoration: none !important; color: inherit; transition: box-shadow .12s, transform .12s; }
.zia-book-card:hover { box-shadow: 0 4px 14px rgba(0,0,0,.12); transform: translateY(-2px); }
.zia-book-cover { display: block; width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.zia-book-cover--empty { background: linear-gradient(135deg, #dfe2e6, #c4c9cf); }
.zia-book-meta { display: block; padding: 9px 8px 12px; }
.zia-book-t { display: block; font-weight: 700; }
.zia-book-d { display: block; font-size: .8rem; color: #777; direction: ltr; margin-top: 2px; }

/* single book */
.zia-book-single { padding-top: 2rem; padding-bottom: 3.25rem; }
.zia-book-summary { font-size: 1.05rem; line-height: 1.9; margin: .2em 0 1.6em; }
.zia-book-cols { display: grid; grid-template-columns: 1fr 280px; gap: 22px; align-items: start; }
.zia-book-reader { width: 100%; height: min(82vh, 950px); border: 1px solid #ccc; border-radius: 10px; }
.zia-book-reader--empty { display: flex; align-items: center; justify-content: center; color: #888; height: 320px; }
.zia-book-sidebar dl { margin: 0; }
.zia-book-sidebar dt { font-size: .72rem; text-transform: uppercase; letter-spacing: .4px; color: #888; margin-top: 12px; }
.zia-book-sidebar dd { margin: 2px 0 0; font-weight: 600; }
.zia-book-btn { display: block; text-align: center; background: transparent; color: #dd9933; border: 1.5px solid #dd9933; border-radius: 9px; padding: 11px; font-weight: 700; text-decoration: none; margin-top: 16px; transition: background-color .15s, color .15s, border-color .15s; }
.zia-book-btn:hover, .zia-book-btn:focus { background: #dd9933; color: #fff; }
.zia-book-btn.ghost { background: transparent; color: inherit; border: 1.5px solid #d8d8d8; font-weight: 600; margin-top: 8px; }
.zia-book-btn.ghost:hover, .zia-book-btn.ghost:focus { border-color: #dd9933; color: #dd9933; }

/* collapsible full text */
.zia-book-textwrap { margin-top: 1.8em; border-top: 2px solid currentColor; scroll-margin-top: 80px; }
.zia-book-texttoggle { cursor: pointer; font-weight: 700; font-size: 1.15rem; padding: .6em 0; list-style: none; }
.zia-book-texttoggle::-webkit-details-marker { display: none; }
.zia-book-texttoggle::before { content: "▸ "; }
details[open] > .zia-book-texttoggle::before { content: "▾ "; }
.zia-book-text { margin-top: 1em; text-align: justify; line-height: 2; }
.zia-book-soon { border-inline-start: 3px solid #dd9933; background: #fdf7ec; color: #7a5a1a; padding: 10px 14px; border-radius: 6px; margin-top: 1.4em; }
@media (max-width: 760px) { .zia-book-cols { grid-template-columns: 1fr; } .zia-book-reader { height: 70vh; } }

/* dark mode (scoped under the theme's dark flag) */
html[data-theme="dark"] .zia-book-card { border-color: #444; }
html[data-theme="dark"] .zia-book-page { color: #d8d8d8; }
html[data-theme="dark"] .zia-book-title, html[data-theme="dark"] .zia-book-head h1,
html[data-theme="dark"] .zia-book-texttoggle, html[data-theme="dark"] .zia-book-sidebar dd { color: #ececec; }
html[data-theme="dark"] .zia-book-summary { color: #d8d8d8; }
/* card text: neutral white-ish; reset -webkit-text-fill-color too (agnar dark-link gotcha). */
html[data-theme="dark"] .zia-book-card, html[data-theme="dark"] .zia-book-card .zia-book-t {
    color: #ececec !important; -webkit-text-fill-color: #ececec !important; }
html[data-theme="dark"] .zia-book-card .zia-book-d {
    color: #aaa !important; -webkit-text-fill-color: #aaa !important; }
html[data-theme="dark"] .zia-book-card:hover { box-shadow: 0 5px 20px rgba(255,255,255,.30); }
html[data-theme="dark"] .zia-book-d, html[data-theme="dark"] .zia-book-sidebar dt { color: #aaa; }
html[data-theme="dark"] .zia-book-intro { color: #bbb; }
html[data-theme="dark"] .zia-book-intro a, html[data-theme="dark"] .zia-book-btn { color: #e0a84a; border-color: #e0a84a; }
html[data-theme="dark"] .zia-book-btn:hover, html[data-theme="dark"] .zia-book-btn:focus { background: #e0a84a; color: #111; }
html[data-theme="dark"] .zia-book-btn.ghost { color: inherit; border-color: #555; }
html[data-theme="dark"] .zia-book-btn.ghost:hover { border-color: #e0a84a; color: #e0a84a; }
html[data-theme="dark"] .zia-book-soon { background: #2a2410; color: #e0c98a; }
html[data-theme="dark"] .zia-book-reader { border-color: #555; }
