/* ─────────────────────────────────────────────────────────────────────────────
   Alexandre Sadeghi
───────────────────────────────────────────────────────────────────────────── */

/* ── Page transitions ────────────────────────────────────────────────────── */
body { opacity: 0; transition: opacity 0.35s ease, background 0.5s ease, color 0.4s ease; }
body.page-in { opacity: 1; }

/* ── Element load-in ─────────────────────────────────────────────────────── */
[data-anim] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-anim].is-visible {
  opacity: 1;
  transform: none;
}

/* ── Variables ───────────────────────────────────────────────────────────── */
:root {
  --bg:      #F5F4F0;
  --fg:      #1A1917;
  --muted:   #6B6762;
  --subtle:  #D8D5CE;
  --max-w:   680px;
  --pad-x:   1.5rem;
  --f-serif: 'Cormorant Garamond', Georgia, serif;
  --f-sans:  'Inter', system-ui, -apple-system, sans-serif;
}

/* ── Reset ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
img, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

/* ── Base ────────────────────────────────────────────────────────────────── */
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-sans);
  font-weight: 300;
  font-size: 0.9375rem;
  line-height: 1.7;
  min-height: 100dvh;
}

::selection { background: var(--fg); color: var(--bg); }

:focus-visible { outline: 1px solid var(--fg); outline-offset: 3px; }

/* ── Language toggle ─────────────────────────────────────────────────────── */
.lang-btn {
  background: none;
  border: none;
  font-family: var(--f-sans);
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.35rem 0;
  transition: color 0.2s;
}
.lang-btn:hover { color: var(--fg); }


/* ═════════════════════════════════════════════════════════════════════════════
   LANDING PAGE
═════════════════════════════════════════════════════════════════════════════ */
body.home {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 3rem var(--pad-x);
}

.home-lang {
  position: fixed;
  top: 1.75rem;
  right: 2rem;
  z-index: 10;
}

.home-center {
  text-align: center;
  width: 100%;
  max-width: 640px;
}

.home-name {
  font-family: var(--f-serif);
  font-size: clamp(1.875rem, 4.5vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 1.05;
  margin-bottom: 1.125rem;
}

.home-tagline {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3.5rem;
}

.home-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2.5rem;
}

.home-nav a {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg);
  padding: 0.35rem 0;
  transition: color 0.2s;
}
.home-nav a:hover { color: var(--muted); }


/* ═════════════════════════════════════════════════════════════════════════════
   INNER PAGES — shared layout
═════════════════════════════════════════════════════════════════════════════ */
body.inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ── Header ──────────────────────────────────────────────────────────────── */
.site-header {
  width: 100%;
  max-width: calc(var(--max-w) + 4rem);
  padding: 5.5rem var(--pad-x) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.125rem;
}

.header-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.site-name {
  font-family: var(--f-serif);
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  transition: opacity 0.2s;
}
.site-name:hover { opacity: 0.6; }

.header-lang {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
  width: 100%;
  max-width: var(--max-w);
  padding-bottom: 1.375rem;
  border-bottom: 1px solid var(--subtle);
}

.site-nav a {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.35rem 0;
  transition: color 0.2s;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--fg); }

/* ── Main ────────────────────────────────────────────────────────────────── */
main {
  width: 100%;
  max-width: var(--max-w);
  padding: 4rem var(--pad-x) 5rem;
  flex: 1;
}

.page-title {
  font-family: var(--f-serif);
  font-size: clamp(2rem, 6vw, 3.25rem);
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 3rem;
  text-align: center;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.site-footer {
  width: 100%;
  max-width: var(--max-w);
  padding: 2rem var(--pad-x);
  border-top: 1px solid var(--subtle);
  text-align: center;
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}


/* ═════════════════════════════════════════════════════════════════════════════
   NOVELS — romans.html
═════════════════════════════════════════════════════════════════════════════ */
.book-entry {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  margin-bottom: 4.5rem;
  align-items: start;
}

.book-cover {
  width: 200px;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  flex-shrink: 0;
}

.book-cover img { width: 100%; height: 100%; object-fit: cover; }

.book-cover--dark {
  background: #1F1E1B;
  display: flex;
  align-items: flex-end;
  padding: 0.875rem;
}

.book-cover--forthcoming { background: #0E0D0C; }

.book-cover-label {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 0.625rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.4;
}

.book-meta { display: flex; flex-direction: column; }

.book-tag {
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.625rem;
}

.book-title {
  font-family: var(--f-serif);
  font-size: 1.625rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.book-year {
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 1rem;
}

.book-desc {
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

/* Clickable cover on novels list */
a.book-cover { display: block; }
a.book-cover img { transition: opacity 0.25s ease; }
a.book-cover:hover img { opacity: 0.82; }

/* Clickable title on novels list */
.book-title a { transition: opacity 0.2s; }
.book-title a:hover { opacity: 0.6; }
html[data-theme="dark"] .book-title a:hover { opacity: 1; color: #00F5D4; }

/* CTA row: primary + secondary side by side */
.book-cta-row {
  display: flex;
  gap: 1.75rem;
  align-items: baseline;
  flex-wrap: wrap;
}

.book-cta {
  display: inline-block;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--fg);
  padding-bottom: 0.15rem;
  align-self: flex-start;
  transition: color 0.2s, border-color 0.2s;
}
.book-cta:hover { color: var(--muted); border-color: var(--muted); }

.book-cta-alt {
  display: inline-block;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 0.15rem;
  transition: color 0.2s;
}
.book-cta-alt:hover { color: var(--fg); }
html[data-theme="dark"] .book-cta-alt:hover { color: #00F5D4; }

.book-divider {
  border: none;
  border-top: 1px solid var(--subtle);
  margin: 0 0 4.5rem;
}

@media (max-width: 560px) {
  .book-entry {
    grid-template-columns: 1fr;
  }
  .book-cover {
    width: 220px;
    margin: 0 auto;
  }
}


/* ═════════════════════════════════════════════════════════════════════════════
   HAMBURGER NAV — mobile only
═════════════════════════════════════════════════════════════════════════════ */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 20px;
  height: 13px;
  background: none;
  border: none;
  padding: 0;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--fg);
  transition: transform 0.22s ease, opacity 0.22s ease;
  transform-origin: center;
}

.nav-toggle--open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle--open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle--open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 640px) {
  .nav-toggle { display: flex; }

  .site-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-bottom: 0;
    border-bottom: none;
  }

  .site-nav.nav-open {
    display: flex;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid var(--subtle);
  }

  .site-nav a {
    width: 100%;
    text-align: center;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--subtle);
  }

  .site-nav a:last-child { border-bottom: none; }
}


/* ═════════════════════════════════════════════════════════════════════════════
   DARK MODE — Neo-noir
═════════════════════════════════════════════════════════════════════════════ */

/* ── Palette overrides ───────────────────────────────────────────────────── */
html[data-theme="dark"] {
  --bg:     #09090F;
  --fg:     #DEDAD1;
  --muted:  #7E7C91;
  --subtle: #1C1929;
}

html[data-theme="dark"] body {
  background: linear-gradient(160deg, #0D0C18 0%, #08080E 100%);
}

html[data-theme="dark"] ::selection {
  background: #00F5D4;
  color: #08080E;
}

/* ── Typography glow ─────────────────────────────────────────────────────── */
html[data-theme="dark"] .home-name {
  text-shadow: 0 0 60px rgba(0, 245, 212, 0.18), 0 0 120px rgba(0, 245, 212, 0.06);
}

html[data-theme="dark"] .page-title {
  text-shadow: 0 0 50px rgba(0, 245, 212, 0.12);
}

/* ── Navigation ──────────────────────────────────────────────────────────── */
html[data-theme="dark"] .site-name:hover             { color: #00F5D4; opacity: 1; }
html[data-theme="dark"] .site-nav a:hover,
html[data-theme="dark"] .site-nav a[aria-current="page"] { color: #00F5D4; }
html[data-theme="dark"] .home-nav a:hover            { color: #00F5D4; }
html[data-theme="dark"] .lang-btn:hover              { color: #00F5D4; }

/* ── Novels ──────────────────────────────────────────────────────────────── */
html[data-theme="dark"] .book-cover--dark {
  background: #05050A;
  border: 1px solid rgba(0, 245, 212, 0.1);
}

html[data-theme="dark"] .book-cta {
  color: #00F5D4;
  border-bottom-color: #00F5D4;
}
html[data-theme="dark"] .book-cta:hover {
  color: #FF2B7A;
  border-bottom-color: #FF2B7A;
}

/* ── Short stories ───────────────────────────────────────────────────────── */
html[data-theme="dark"] .story-title             { transition: color 0.2s; }
html[data-theme="dark"] .story-item:hover        { border-bottom-color: rgba(0, 245, 212, 0.3); }
html[data-theme="dark"] .story-item:hover .story-title { color: #00F5D4; }

/* ── Events ──────────────────────────────────────────────────────────────── */
html[data-theme="dark"] .event-day              { color: #00F5D4; }
html[data-theme="dark"] .event-link             { color: #00F5D4; border-bottom-color: #00F5D4; }
html[data-theme="dark"] .event-link:hover       { color: #FF2B7A; border-bottom-color: #FF2B7A; }

/* ── Contact form ────────────────────────────────────────────────────────── */
html[data-theme="dark"] .form-row:focus-within .form-label { color: #00F5D4; }
html[data-theme="dark"] .form-input:focus,
html[data-theme="dark"] .form-textarea:focus    { border-bottom-color: #00F5D4; }
html[data-theme="dark"] .form-submit            { background: #00F5D4; color: #08080E; }

/* ── Theme toggle button (mahjong tile) ──────────────────────────────────── */
.theme-btn {
  position: fixed;
  top: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  width: 32px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--muted);
  line-height: 0;
  transition: color 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}
.theme-btn svg { width: 100%; height: auto; display: block; }

/* Light mode hover — neon teal ignition */
.theme-btn:hover {
  color: #00F5D4;
  filter: drop-shadow(0 0 5px #00F5D4) drop-shadow(0 0 14px rgba(0,245,212,0.45));
}

/* Dark mode default — golden glow */
html[data-theme="dark"] .theme-btn {
  color: #f9ca24;
  filter: drop-shadow(0 0 4px rgba(249,202,36,0.8)) drop-shadow(0 0 16px rgba(249,202,36,0.35));
}

/* Dark mode hover — dims out (deactivation feel) */
html[data-theme="dark"] .theme-btn:hover {
  color: var(--muted);
  filter: none;
  opacity: 0.4;
}

/* ── Social icons ────────────────────────────────────────────────────────── */
.social-link {
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  transition: color 0.25s, filter 0.25s;
}
.social-link:hover { color: var(--fg); }
html[data-theme="dark"] .social-link:hover {
  color: #00F5D4;
  filter: drop-shadow(0 0 5px #00F5D4) drop-shadow(0 0 14px rgba(0,245,212,0.45));
}

.home-social { margin-top: 2.5rem; }

.footer-social { margin-bottom: 0.75rem; }

/* ── "Activate neon mode" hint (index only) ──────────────────────────────── */
.theme-hint {
  position: fixed;
  top: 4.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--f-sans);
  font-size: 0.5rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: 0.8;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.5s;
}

html[data-theme="dark"] .theme-hint { opacity: 0; }

.hint-arrow {
  font-size: 0.55rem;
  line-height: 1;
  animation: hint-bounce 1s ease 1.8s both 1;
}

@keyframes hint-bounce {
  0%   { transform: translateY(0); }
  30%  { transform: translateY(-5px); }
  58%  { transform: translateY(-1px); }
  78%  { transform: translateY(-3.5px); }
  100% { transform: translateY(0); }
}

/* Rain canvas is z-index:1 — elevate content above it in dark mode.
   .home-lang and .theme-btn/.theme-hint are already position:fixed with z-index≥10,
   so they don't need overriding here. */
html[data-theme="dark"] .home-center  { position: relative; z-index: 2; }
html[data-theme="dark"] .site-header,
html[data-theme="dark"] main,
html[data-theme="dark"] .site-footer  { position: relative; z-index: 2; }


/* ═════════════════════════════════════════════════════════════════════════════
   SHORT STORIES — nouvelles.html
═════════════════════════════════════════════════════════════════════════════ */
.story-intro {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--muted);
  margin-bottom: 3rem;
  text-align: center;
}

.story-list { list-style: none; }

.story-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.375rem 0;
  border-bottom: 1px solid var(--subtle);
}
.story-item:first-child { border-top: 1px solid var(--subtle); }

.story-title {
  font-family: var(--f-serif);
  font-size: 1.1875rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.3rem;
}

.story-pub { font-size: 0.8125rem; color: var(--muted); }

.story-badge {
  font-size: 0.5625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--subtle);
  padding: 0.2rem 0.45rem;
  white-space: nowrap;
}


/* ═════════════════════════════════════════════════════════════════════════════
   ABOUT — apropos.html
═════════════════════════════════════════════════════════════════════════════ */
.about-photo {
  width: 200px;
  aspect-ratio: 3 / 4;
  background: var(--subtle);
  margin: 0 auto 3rem;
  overflow: hidden;
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.about-text { font-size: 0.9375rem; line-height: 1.85; }
.about-text p + p { margin-top: 1.25rem; }


/* ═════════════════════════════════════════════════════════════════════════════
   EVENTS / AGENDA — agenda.html
═════════════════════════════════════════════════════════════════════════════ */
.events-group + .events-group { margin-top: 3.5rem; }

.events-group-label {
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.event-list { list-style: none; }

.event-item {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 1.75rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--subtle);
}
.event-item:first-child { border-top: 1px solid var(--subtle); }

.event-date-col { text-align: center; padding-top: 0.125rem; }

.event-day {
  display: block;
  font-family: var(--f-serif);
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
}

.event-month {
  display: block;
  font-size: 0.5625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
}

.event-title {
  font-family: var(--f-serif);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0.35rem;
}

.event-location { font-size: 0.8125rem; color: var(--muted); margin-bottom: 0.25rem; }
.event-details  { font-size: 0.875rem; margin-bottom: 0.25rem; }

.event-link {
  display: inline-block;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--fg);
  padding-bottom: 0.1rem;
  margin-top: 0.35rem;
  transition: color 0.2s, border-color 0.2s;
}
.event-link:hover { color: var(--muted); border-color: var(--muted); }

.events-empty {
  color: var(--muted);
  font-style: italic;
  font-size: 0.9375rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--subtle);
  display: block;
}


/* ═════════════════════════════════════════════════════════════════════════════
   CONTACT — contact.html
═════════════════════════════════════════════════════════════════════════════ */
.contact-wrap { text-align: center; }

.contact-intro {
  font-size: 0.9375rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.contact-email {
  display: inline-block;
  font-family: var(--f-serif);
  font-size: clamp(1.25rem, 4vw, 1.875rem);
  font-style: italic;
  border-bottom: 1px solid var(--fg);
  padding-bottom: 0.1rem;
  margin-bottom: 3.5rem;
  transition: color 0.2s, border-color 0.2s;
}
.contact-email:hover { color: var(--muted); border-color: var(--muted); }

.contact-form-wrap {
  text-align: left;
}

.form-row { margin-bottom: 2rem; }

.form-label {
  display: block;
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.625rem;
}

.form-input,
.form-textarea {
  display: block;
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--subtle);
  padding: 0.625rem 0;
  font-family: var(--f-sans);
  font-size: 0.9375rem;
  font-weight: 300;
  color: var(--fg);
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  transition: border-color 0.2s;
}
.form-input:focus,
.form-textarea:focus { border-color: var(--fg); }
.form-textarea { resize: vertical; min-height: 120px; }

.form-submit {
  background: var(--fg);
  color: var(--bg);
  border: none;
  padding: 0.875rem 2.75rem;
  font-family: var(--f-sans);
  font-size: 0.625rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}
.form-submit:hover { opacity: 0.78; }


/* ═════════════════════════════════════════════════════════════════════════════
   DEDICATED BOOK PAGE — sutra.html (and future titles)
═════════════════════════════════════════════════════════════════════════════ */
.book-back {
  display: inline-block;
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2.5rem;
  transition: color 0.2s;
}
.book-back:hover { color: var(--fg); }
html[data-theme="dark"] .book-back:hover { color: #00F5D4; }

.book-page-cover {
  display: block;
  width: 260px;
  margin: 0 auto 3rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.15);
}
.book-page-cover img { width: 100%; display: block; }
html[data-theme="dark"] .book-page-cover {
  box-shadow: 0 8px 48px rgba(0,0,0,0.55), 0 0 60px rgba(0,245,212,0.05);
}

.book-epigraph {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
  line-height: 1.8;
  text-align: center;
  margin-bottom: 0.75rem;
}

.book-epigraph-attr {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-align: center;
  margin-bottom: 3.5rem;
}

.book-page-publisher {
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-bottom: 3rem;
}

.book-page-summary {
  font-size: 0.9375rem;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}
.book-page-summary p + p { margin-top: 1.25rem; }
.book-page-summary strong {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: 1.125rem;
  font-style: italic;
  letter-spacing: 0.02em;
}

/* Fixed neon glow for the book title (overrides random palette) */
html[data-theme="dark"] .book-page-title {
  color: #5269DD;
  text-shadow: 0 0 8px #5269DD, 0 0 24px #5269DD, 0 0 60px rgba(82,105,221,0.4);
}

/* Award / distinction line */
.book-award {
  font-size: 0.625rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-top: -1.75rem;
  margin-bottom: 3rem;
}
html[data-theme="dark"] .book-award { color: #5269DD; }

/* Publisher link */
.book-page-publisher a {
  color: inherit;
  border-bottom: 1px solid currentColor;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.book-page-publisher a:hover { opacity: 1; }
html[data-theme="dark"] .book-page-publisher a:hover { color: #00F5D4; }
