@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins/Poppins-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins/Poppins-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins/Poppins-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("/assets/fonts/Poppins/Poppins-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --font-family-base: "Poppins", sans-serif;
  --color-text: #593000;
  --color-background: #ffffff;
  --color-border: #dddddd;
  --color-link: #593000;
  --content-width: 72rem;
  --header-background: #f9f0e4;
  --header-accent: #644004;
  --header-height: 125px;
  --header-logo-width: 380px;
  --header-logo-height: 90px;
  --header-shell-width: 1440px;
  --footer-background: #f9f0e4;
  --footer-text: #593000;
  --footer-shell-width: 1440px;
  --banner-background: #95724f;
  --banner-text: #ffffff;
  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --line-height-body: 1.6;
  --line-height-heading: 1.2;
  --radius-base: 0.75rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-height);
  font-family: var(--font-family-base);
  font-weight: 400;
  line-height: var(--line-height-body);
  color: var(--color-text);
  background-color: var(--color-background);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
svg,
canvas {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--color-link);
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

a:hover,
a:focus-visible {
  text-decoration-thickness: 0.12em;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

button:hover,
button:focus-visible {
  color: inherit;
}

main,
section,
footer {
  width: min(100% - (2 * var(--space-2)), var(--content-width));
  margin-inline: auto;
}

main {
  flex: 1;
  padding-top: 0;
  padding-bottom: var(--space-4);
  width: 100%;
  margin: 0;
}

section {
  padding-block: 0;
}

header {
  width: 100%;
  margin: 0;
  padding: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  width: 100%;
  height: var(--header-height);
  background: var(--header-background);
}

.site-header__inner {
  width: min(100%, var(--header-shell-width));
  height: 100%;
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 4vw, 3.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-header__brand {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
}

.site-header__brand-link {
  display: inline-flex;
  align-items: center;
}

.site-header__logo {
  width: var(--header-logo-width);
  height: var(--header-logo-height);
  object-fit: contain;
}

.site-header__nav {
  width: auto;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.site-header__menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(0.75rem, 1.6vw, 1.5rem);
  margin: 0;
  padding: 0.9rem 1.25rem;
  list-style: none;
  border: 1px solid var(--header-accent);
  border-radius: 999px;
  max-width: 100%;
}

.site-header__item {
  position: relative;
}

.site-header__link,
.site-header__language-toggle,
.site-header__language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-base);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--header-accent);
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-header__link::after,
.site-header__language-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
}

.site-header__link:hover::after,
.site-header__link:focus-visible::after,
.site-header__item.is-active > .site-header__link::after,
.site-header__item.is-active > .site-header__language-toggle::after {
  transform: scaleX(1);
}

.site-header__language {
  position: relative;
}

.site-header__language-toggle {
  position: relative;
  gap: 0.45rem;
}

.site-header__language-toggle-icon {
  display: inline-block;
  font-size: 10px;
  transform: translateY(-1px);
}

.site-header__language-menu {
  position: absolute;
  top: calc(100% + 0.9rem);
  left: 50%;
  min-width: 10rem;
  margin: 0;
  padding: 0.55rem 0;
  list-style: none;
  background: var(--header-background);
  border: 1px solid var(--header-accent);
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(100, 64, 4, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-0.35rem);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.site-header__language.is-open .site-header__language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.site-header__language-link {
  width: 100%;
  justify-content: flex-start;
  padding: 0.7rem 1rem;
  text-transform: uppercase;
}

.site-header__language-link:hover,
.site-header__language-link:focus-visible,
.site-header__language-link.is-current {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.2em;
}

.site-footer {
  width: 100%;
  margin: 0;
  padding: 0;
  color: var(--footer-text);
  background: var(--footer-background);
  border-top: 0;
}

.site-footer__inner {
  width: min(100%, var(--footer-shell-width));
  min-height: 135px;
  margin-inline: auto;
  padding: 2rem clamp(1.5rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 2rem 3rem;
}

.site-footer__nav {
  grid-column: 2;
  justify-self: center;
  width: 100%;
  max-width: 52rem;
}

.site-footer__links,
.site-footer__social-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}

.site-footer__link,
.site-footer__social-link,
.site-footer__social-title {
  color: var(--footer-text);
  font-family: var(--font-family-base);
  text-decoration: none;
}

.site-footer__link {
  font-size: 16
px;
  font-weight: 700;
  line-height: 1.3;
}

.site-footer__social {
  grid-column: 3;
  justify-self: end;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
}

.site-footer__social-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.site-footer__social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0.95rem;
}

.site-footer__social-link {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.3;
}

.site-footer__link:hover,
.site-footer__link:focus-visible,
.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.page-banner {
  width: 100%;
  min-height: 120px;
  margin: 0 0 var(--space-4);
  padding: 1.5rem var(--space-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--banner-background);
  color: var(--banner-text);
  text-align: center;
}

.page-banner__title {
  margin: 0;
  color: inherit;
  font-family: var(--font-family-base);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
  margin: 0;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.5;
}

.breadcrumb--banner,
.breadcrumb--book,
.breadcrumb--episode {
  margin-top: 0.65rem;
}

.breadcrumb--banner,
.breadcrumb--book {
  color: rgba(255, 255, 255, 0.82);
}

.breadcrumb--episode {
  color: rgba(89, 48, 0, 0.72);
}

.breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.16em;
}

.breadcrumb__separator {
  opacity: 0.72;
}

.breadcrumb [aria-current="page"] {
  color: inherit;
}

main > section:not(.page-banner):not(.project-updates) {
  width: min(100% - (2 * var(--space-2)), var(--content-width));
  margin-inline: auto;
}

.visitor-sitemap-page {
  padding-block: 0;
}

.visitor-sitemap__intro,
.visitor-sitemap__error {
  max-width: 72ch;
  margin: 0 auto var(--space-3);
  text-align: center;
}

.visitor-sitemap__groups {
  display: grid;
  gap: 1.25rem;
}

.visitor-sitemap__language,
.visitor-sitemap__details {
  border: 1px solid rgba(89, 48, 0, 0.18);
  border-radius: 1rem;
  background: #fffaf4;
}

.visitor-sitemap__details {
  margin-top: 1rem;
}

.visitor-sitemap__language-summary,
.visitor-sitemap__summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--footer-text);
}

.visitor-sitemap__language-summary::-webkit-details-marker,
.visitor-sitemap__summary::-webkit-details-marker {
  display: none;
}

.visitor-sitemap__language-summary {
  padding: 1rem 1.25rem;
  font-size: 1rem;
  text-transform: uppercase;
}

.visitor-sitemap__summary {
  padding: 0.95rem 1.1rem;
  font-size: 0.95rem;
}

.visitor-sitemap__language-summary::before,
.visitor-sitemap__summary::before {
  content: "+";
  display: inline-block;
  margin-right: 0.65rem;
  font-weight: 700;
}

.visitor-sitemap__language[open] > .visitor-sitemap__language-summary::before,
.visitor-sitemap__details[open] > .visitor-sitemap__summary::before {
  content: "−";
}

.visitor-sitemap__language-content,
.visitor-sitemap__content {
  padding: 0 1.1rem 1.1rem;
}

.visitor-sitemap__page {
  padding: 0.9rem 1rem;
  border-radius: 0.85rem;
  background: #ffffff;
  border: 1px solid rgba(89, 48, 0, 0.1);
}

.visitor-sitemap__content > .visitor-sitemap__page + .visitor-sitemap__details,
.visitor-sitemap__content > .visitor-sitemap__details + .visitor-sitemap__page,
.visitor-sitemap__content > .visitor-sitemap__details + .visitor-sitemap__details,
.visitor-sitemap__content > .visitor-sitemap__page + .visitor-sitemap__page,
.visitor-sitemap__language-content > .visitor-sitemap__page + .visitor-sitemap__details,
.visitor-sitemap__language-content > .visitor-sitemap__details + .visitor-sitemap__page,
.visitor-sitemap__language-content > .visitor-sitemap__details + .visitor-sitemap__details,
.visitor-sitemap__language-content > .visitor-sitemap__page + .visitor-sitemap__page {
  margin-top: 0.9rem;
}

.visitor-sitemap__page-link {
  display: inline-flex;
  font-weight: 600;
  text-decoration: none;
}

.visitor-sitemap__page-link:hover,
.visitor-sitemap__page-link:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.18em;
}

.visitor-sitemap__page-url {
  margin-top: 0.3rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(89, 48, 0, 0.78);
  word-break: break-word;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 var(--space-2);
  font-family: var(--font-family-base);
  font-weight: 600;
  line-height: var(--line-height-heading);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.875rem, 4vw, 2.75rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.125rem);
}

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin: 0 0 var(--space-2);
  max-width: 70ch;
}

p:last-child,
section > :last-child,
main > :last-child,
header > :last-child,
footer > :last-child {
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .site-header__inner {
    padding-inline: clamp(1rem, 3vw, 2rem);
    gap: 1.25rem;
  }

  .site-header__logo {
    width: min(320px, 100%);
    height: auto;
  }

  .site-header__menu {
    gap: 0.85rem;
    padding-inline: 1rem;
  }

  .site-footer__inner {
    padding-inline: clamp(1rem, 3vw, 2rem);
    gap: 1.5rem 2rem;
  }

  .site-footer__links {
    gap: 0.7rem 1.15rem;
  }

  .page-banner__title {
    font-size: 34px;
  }

  .breadcrumb {
    font-size: 0.8rem;
  }
}

@media (max-width: 920px) {
  body {
    padding-top: 0;
  }

  .site-header {
    position: static;
    height: auto;
    min-height: var(--header-height);
  }

  .site-header__inner {
    min-height: var(--header-height);
    padding-block: 1.25rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
  }

  .site-header__logo {
    width: min(300px, 100%);
    height: auto;
  }

  .site-header__nav,
  .site-header__brand {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .site-header__brand-link {
    justify-content: center;
    margin-inline: auto;
  }

  .site-header__menu {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 1.5rem;
    width: fit-content;
    max-width: 100%;
  }

  .site-footer__inner {
    min-height: 0;
    padding-block: 1.75rem;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
  }

  .site-footer__nav {
    grid-column: 1;
    max-width: 100%;
  }

  .site-footer__social {
    grid-column: 1;
    justify-self: center;
  }
}

@media (max-width: 680px) {
  .site-header__inner {
    align-items: stretch;
    padding-inline: 1rem;
  }

  .site-header__brand {
    justify-content: center;
    text-align: center;
  }

  .site-header__nav {
    display: flex;
    justify-content: center;
  }

  .site-header__menu {
    width: auto;
    gap: 0.7rem 0.85rem;
    padding: 0.8rem 0.9rem;
    border-radius: 1.25rem;
  }

  .site-header__link,
  .site-header__language-toggle,
  .site-header__language-link {
    font-size: 12px;
  }

  .site-header__language-menu {
    left: auto;
    right: 0;
    transform: translateY(-0.35rem);
  }

  .site-header__language.is-open .site-header__language-menu {
    transform: translateY(0);
  }

  .site-footer__inner {
    padding: 1.5rem 1rem;
    gap: 1.25rem;
    text-align: center;
  }

  .site-footer__links {
    justify-content: center;
    gap: 0.6rem 1rem;
  }

  .site-footer__link,
  .site-footer__social-title {
    font-size: 14px;
  }

  .site-footer__social {
    align-items: center;
    margin-left: 0;
    text-align: center;
  }

  .site-footer__social-links {
    justify-content: center;
    gap: 0.35rem 0.8rem;
  }

  .site-footer__social-link {
    font-size: 14px;
  }

  .page-banner {
    min-height: 100px;
    margin-bottom: var(--space-3);
    padding-inline: 1rem;
  }

  .page-banner__title {
    font-size: 30px;
  }

  .breadcrumb {
    gap: 0.15rem;
    font-size: 0.78rem;
  }

  .visitor-sitemap__language-summary {
    padding: 0.95rem 1rem;
    font-size: 0.95rem;
  }

  .visitor-sitemap__summary {
    padding: 0.85rem 0.95rem;
    font-size: 0.9rem;
  }

  .visitor-sitemap__language-content,
  .visitor-sitemap__content {
    padding: 0 0.95rem 0.95rem;
  }

  .visitor-sitemap__page {
    padding: 0.85rem 0.9rem;
  }

  .visitor-sitemap__page-url {
    font-size: 0.86rem;
  }
}

@media (max-width: 520px) {
  .site-header__logo {
    width: min(260px, 100%);
  }

  .site-header__menu {
    gap: 0.6rem 0.75rem;
    padding: 0.75rem 0.8rem;
  }

  .site-header__link,
  .site-header__language-toggle,
  .site-header__language-link {
    font-size: 11px;
    letter-spacing: 0.01em;
  }

  .site-footer__links {
    gap: 0.55rem 0.75rem;
  }

  .site-footer__link,
  .site-footer__social-title {
    font-size: 14px;
  }

  .site-footer__social-link {
    font-size: 14px;
  }

  .page-banner__title {
    font-size: 26px;
  }
}

.home-intro {
  padding-top: clamp(1.25rem, 2vw, 2rem);
  padding-bottom: clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.home-intro__inner {
  width: min(100% - 2rem, 900px);
  margin-inline: auto;
}

.home-intro__title {
  max-width: 900px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  color: #593000;
  font-size: clamp(1.95rem, 2.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.home-intro__banner {
  margin: 0 auto clamp(2rem, 4vw, 2.5rem);
  width: min(100%, 720px);
}

.home-intro__banner-image {
  display: block;
  width: 100%;
  max-width: 720px;
  height: auto;
  border-radius: 1.25rem;
}

.home-intro__content {
  width: min(100%, 780px);
  margin-inline: auto;
  color: #593000;
}

.home-intro__lead {
  margin: 0 0 1rem;
  color: #593000;
  font-size: clamp(1.45rem, 2vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.home-intro__text {
  max-width: 760px;
  margin: 0 auto 0.85rem;
  color: #593000;
  font-size: clamp(1.15rem, 1.6vw, 1.3rem);
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
}

.home-intro__signature {
  margin: 1.4rem auto 0;
  max-width: 760px;
  color: #593000;
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  text-align: center;
}

@media (max-width: 680px) {
  .home-intro {
    padding-top: 1rem;
    padding-bottom: 3rem;
  }

  .home-intro__ai-summary {
    width: calc(100% - 1rem);
    margin-bottom: 0.35rem;
    font-size: 10px;
    line-height: 1.1;
  }

  .home-intro__title {
    margin-bottom: 1.5rem;
  }

  .home-intro__banner {
    margin-bottom: 1.5rem;
  }

  .home-intro__banner-image {
    border-radius: 1rem;
  }
}

.home-intro__banner {
  max-width: 760px;
  margin: 2rem auto;
  border: 4px solid #6b3e00;
  border-radius: 28px;
  overflow: hidden;
}

.home-intro__banner-image {
  width: 100%;
  height: auto;
  display: block;
}

.project-updates {
  width: 100%;
  padding-top: 0;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}

.project-updates__banner {
  width: 100%;
  min-height: 120px;
  margin: 0 0 clamp(2.5rem, 4vw, 3.5rem);
  padding: 1.5rem var(--space-2);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--banner-background);
  color: var(--banner-text);
  text-align: center;
}

.project-updates__title {
  margin: 0;
  color: inherit;
  font-family: var(--font-family-base);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}

.project-updates__inner {
  width: min(100% - 2rem, 1080px);
  margin-inline: auto;
  color: #593000;
}

.project-updates__item {
  max-width: 980px;
  margin: 0 auto;
}

.project-updates__item + .project-updates__item {
  margin-top: clamp(2.75rem, 5vw, 4rem);
}

.project-updates__item-title {
  margin: 0 0 1rem;
  color: #593000;
  font-size: clamp(1.6rem, 2.4vw, 1.95rem);
  font-weight: 700;
  line-height: 1.15;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.12em;
}

.project-updates__text,
.project-updates__date,
.project-updates__release-label {
  margin: 0 0 0.55rem;
  max-width: 980px;
  color: #593000;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 700;
  line-height: 1.45;
}

.project-updates__release-label {
  margin-top: 1.8rem;
}

.project-updates__release-label a {
  color: #593000;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.16em;
}

.project-updates__date time {
  font: inherit;
}

@media (max-width: 1100px) {
  .project-updates__title {
    font-size: 34px;
  }
}

@media (max-width: 680px) {
  .project-updates {
    padding-bottom: 3rem;
  }

  .project-updates__banner {
    min-height: 100px;
    margin-bottom: 2rem;
    padding-inline: 1rem;
  }

  .project-updates__title {
    font-size: 30px;
  }

  .project-updates__inner {
    width: min(100% - 2rem, 100%);
  }

  .project-updates__item-title {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .project-updates__text,
  .project-updates__date,
  .project-updates__release-label {
    font-size: clamp(1rem, 4.4vw, 1.2rem);
  }
}

@media (max-width: 520px) {
  .project-updates__title {
    font-size: 26px;
  }
}

.page-content p {
  margin: 0 0 1.2rem;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  font-weight: 400;
  line-height: 1.65;
  max-width: none;
}

.page-content p {
  margin: 0 0 1.2rem;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  font-weight: 400;
  line-height: 1.65;
}

.page-content h2 {
  margin: 2rem 0 1rem;
  font-size: clamp(1.7rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
}

.page-content h3 {
  margin: 1.8rem 0 0.8rem;
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.3;
}

.page-content .lead {
  font-size: clamp(1.15rem, 1.4vw, 1.25rem);
  font-weight: 500;
  line-height: 1.65;
}

.page-content ul,
.page-content ol {
  margin: 0 0 1.4rem;
  padding-left: 1.2rem;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.65;
}

.page-content li {
  margin-bottom: 0.35rem;
}

.about-page {
  width: min(100% - 2rem, 980px);
  margin-inline: auto;
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
  color: #593000;
  font-family: var(--font-family-base);
}

.about-page__section {
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.about-page__title {
  margin: 0 0 1.4rem;
  color: #593000;
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
}

.about-page p {
  margin: 0 0 1rem;
  max-width: 85ch;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  font-weight: 400;
  line-height: 1.7;
}

.about-page__figure {
  margin: 2.75rem auto 0;
  display: flex;
  justify-content: center;
}

.about-page__image {
  width: min(260px, 100%);
  height: auto;
}

.about-page__divider {
  width: 100%;
  height: 8px;
  background: #95724F;
}

.about-page__list {
  margin: 0 0 1rem 1.2rem;
  padding: 0;
  color: #593000;
}

.about-page__list li {
  margin: 0 0 0.4rem;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.65;
}

.about-page p.about-page__signature {
  margin-top: 4rem;
  text-align: center;
  font-size: clamp(1.05rem, 1.2vw, 1.15rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.7;
}

@media (max-width: 680px) {
  .about-page {
    width: min(100% - 2rem, 100%);
    padding-bottom: 3rem;
  }

  .about-page__section {
    padding: 2rem 0;
  }

  .about-page__divider {
    height: 6px;
  }

  .about-page__figure {
    margin-top: 1.75rem;
  }

  .about-page__image {
    width: min(140px, 100%);
  }
}

.book-page {
  width: min(100% - 2rem, 980px);
  margin-inline: auto;
  padding-block: 0 clamp(3rem, 6vw, 4.5rem);
  color: #593000;
  font-family: var(--font-family-base);
}

.book-page__intro {
  text-align: center;
  margin-bottom: 2rem;
}

.book-page__eyebrow {
  margin: 0 0 1.5rem;
  font-size: clamp(1.2rem, 1.8vw, 1.45rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  max-width: none;
}

.book-page__hook {
  margin: 0 auto;
  max-width: 52ch;
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

.book-page__cover {
  margin: 2rem auto 3.5rem;
  display: flex;
  justify-content: center;
}

.book-page__cover-image {
  width: min(100%, 420px);
  height: auto;
  display: block;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.12);
}

.book-page__section {
  width: min(100%, 880px);
  margin: 0 auto 3rem;
}

.book-page__title,
.book-page__heading {
  margin: 0 0 0.7rem;
  color: #593000;
  font-weight: 700;
  line-height: 1.2;
}

.book-page__title {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
}

.book-page__heading {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.book-page__section p {
  margin: 0 0 0.7rem;
  max-width: none;
  font-size: clamp(1rem, 1.15vw, 1.15rem);
  font-weight: 400;
  line-height: 1.65;
}

.book-page__spacer {
  height: 1rem;
  margin: 0;
}

@media (max-width: 680px) {
  .book-page {
    width: min(100% - 2rem, 100%);
    padding-bottom: 3rem;
  }

  .book-page__cover {
    margin: 1.5rem auto 2.5rem;
  }

  .book-page__cover-image {
    width: min(100%, 320px);
  }

  .book-page__section {
    margin-bottom: 2.5rem;
  }
}

.bonus-wallpaper {
  width: min(calc(100% - 2rem), 800px);
  margin-inline: auto;
  padding-block: clamp(2rem, 4vw, 3.5rem) clamp(3rem, 6vw, 4.5rem);
  color: #593000;
  font-family: var(--font-family-base);
}

.bonus-wallpaper__inner {
  width: 100%;
}

.bonus-wallpaper__intro {
  margin: 0 0 2rem;
  max-width: none;
  text-align: center;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1.45;
  color: #593000;
}

.bonus-wallpaper__figure {
  margin: 0 0 2rem;
  display: flex;
  justify-content: center;
}

.bonus-wallpaper__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
}

.bonus-wallpaper__download {
  margin: 0;
  max-width: none;
  text-align: center;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 400;
  line-height: 1.5;
}

.bonus-wallpaper__download a {
  color: #593000;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.15em;
}

.bonus-wallpaper__download a:hover,
.bonus-wallpaper__download a:focus-visible {
  color: #593000;
}

@media (max-width: 680px) {
  .bonus-wallpaper {
    width: min(100% - 2rem, 100%);
    padding-block: 2rem 3rem;
  }

  .bonus-wallpaper__intro {
    margin-bottom: 1.5rem;
  }

  .bonus-wallpaper__figure {
    margin-bottom: 1.5rem;
  }
}

.characters-page {
  width: min(100% - 2rem, 1100px);
  margin-inline: auto;
  padding-block: clamp(2rem, 4vw, 3rem) clamp(3rem, 6vw, 4.5rem);
  color: #593000;
  font-family: var(--font-family-base);
}

.characters-page__item {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.characters-page__item + .characters-page__item {
  margin-top: clamp(3rem, 7vw, 5rem);
}

.characters-page__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.characters-page__name {
  margin: 0 0 1rem;
  color: #593000;
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
}

.characters-page__image {
  display: block;
  width: min(100%, 220px);
  height: auto;
}

.characters-page__content {
  min-width: 0;
}

.characters-page__content p {
  margin: 0 0 1rem;
  max-width: none;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  font-weight: 400;
  line-height: 1.7;
}

.characters-page__lead {
  font-weight: 700 !important;
}

.characters-page__list {
  margin: 1.2rem 0 0;
  padding-left: 1.15rem;
  color: #593000;
}

.characters-page__list li {
  margin: 0 0 0.55rem;
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.65;
}

@media (max-width: 820px) {
  .characters-page {
    width: min(100% - 2rem, 100%);
  }

  .characters-page__item {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .characters-page__media {
    align-items: center;
  }

  .characters-page__content {
    text-align: left;
  }
}

.comics-page {
  width: min(100% - 2rem, 900px);
  margin-inline: auto;
  padding-block: clamp(2rem, 4vw, 3.5rem) clamp(3rem, 6vw, 4rem);
  color: #593000;
  font-family: var(--font-family-base);
}

.comics-page__intro {
  max-width: 700px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.comics-page__intro-title {
  margin: 0 0 0.75rem;
  color: #593000;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
}

.comics-page__intro-text {
  margin: 0;
  color: #593000;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.comics-page__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  justify-content: center;
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
  max-width: 700px;
  margin-inline: auto;
}

.comics-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.comics-card__title {
  margin: 0 0 1rem;
  color: #593000;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.25;
  min-height: 2.5em;
}

.comics-card__image-wrapper {
  display: inline-flex;
  margin-bottom: 1.25rem;
}

.comics-card__image {
  display: block;
  width: 160px;
  height: auto;
  border: 1px solid #95724F;
  border-radius: 1rem;
}

.comics-card__languages {
  width: 100%;
  max-width: 320px;
  margin-bottom: 1.25rem;
}

.comics-card__languages-title {
  display: inline-block;
  color: #593000;
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
}

.comics-card__languages-content {
  margin-top: 0.75rem;
}

.comics-card__language-link {
  margin: 0 0 0.45rem;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.4;
}

.comics-card__language-link:last-child {
  margin-bottom: 0;
}

.comics-card__language-link a {
  color: #593000;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.15em;
}

.comics-card__language-link a:hover,
.comics-card__language-link a:focus-visible {
  color: #593000;
}

.comics-card__description {
  max-width: 22ch;
  margin: 0;
  color: #593000;
  font-size: clamp(1rem, 1.5vw, 1.1rem);
  line-height: 1.55;
  text-wrap: pretty;
}

@media (max-width: 680px) {
  .comics-page {
    width: min(100% - 2rem, 100%);
    padding-block: 2rem 3rem;
  }

  .comics-page__intro {
    margin-bottom: 2.5rem;
  }

  .comics-page__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 260px;
  }

  .comics-card__image {
    width: 150px;
  }
}

.comic-series-page {
  width: min(100% - 2rem, 980px);
  margin-inline: auto;
  padding-block: clamp(2rem, 4vw, 3rem) clamp(3rem, 6vw, 4rem);
  color: #593000;
  font-family: var(--font-family-base);
}

.comic-series-page__inner {
  width: 100%;
}

.comic-series-page__intro {
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  max-width: 52ch;
  text-align: center;
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  font-weight: 700;
  line-height: 1.35;
  color: #593000;
}

.comic-series-page__list {
  width: min(100%, 720px);
  margin-inline: auto;
  display: grid;
  gap: 0;
}

.comic-series-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: stretch;
  text-decoration: none;
  color: #593000;
}

.comic-series-card + .comic-series-card {
  margin-top: 0;
}

.comic-series-card__image {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: cover;
  border: 1px solid #dcc7aa;
  border-right: 0;
}

.comic-series-card__title {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 1rem 1.5rem;
  background: #f3eadf;
  border: 1px solid #dcc7aa;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.comic-series-card:hover .comic-series-card__title,
.comic-series-card:focus-visible .comic-series-card__title {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.15em;
}

@media (max-width: 680px) {
  .comic-series-page {
    width: min(100% - 2rem, 100%);
    padding-block: 2rem 3rem;
  }

  .comic-series-page__intro {
    max-width: 100%;
  }

  .comic-series-page__list {
    width: min(100%, 100%);
  }

  .comic-series-card {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .comic-series-card__image {
    width: 82px;
    height: 82px;
  }

  .comic-series-card__title {
    min-height: 82px;
    padding: 0.85rem 1rem;
    font-size: clamp(1.05rem, 4.5vw, 1.3rem);
  }
}

.comic-episode {
  width: min(100% - 2rem, 980px);
  margin-inline: auto;
  padding-block: clamp(1.5rem, 4vw, 2.5rem) clamp(2.5rem, 5vw, 4rem);
  color: #593000;
  font-family: var(--font-family-base);
}

.comic-episode__inner {
  width: 100%;
}

.comic-episode__header {
  margin-bottom: 1.25rem;
  text-align: center;
}

.comic-episode__title {
  margin: 0;
  color: #593000;
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
}

.comic-episode__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.comic-episode__nav--selector {
  justify-content: center;
}

.comic-episode__nav--top {
  margin-bottom: 1.5rem;
}

.comic-episode__nav--bottom {
  margin-top: 2rem;
}

.comic-episode__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 0.55rem 1rem;
  border: 1px solid #95724F;
  border-radius: 999px;
  color: #593000;
  background: #f9f0e4;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.comic-episode__button.is-disabled,
.comic-episode__button[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  text-decoration: none;
}

.comic-episode__button:hover,
.comic-episode__button:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.15em;
}

.comic-episode__select-group {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.9rem;
  border: 1px solid #95724F;
  border-radius: 999px;
  background: #fff8f0;
}

.comic-episode__select {
  min-width: 170px;
  max-width: min(62vw, 280px);
  border: 0;
  padding: 0.1rem 1.5rem 0.1rem 0;
  color: #593000;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
}

.comic-episode__select:focus {
  outline: none;
}

.comic-episode__figure {
  margin: 0;
  display: flex;
  justify-content: center;
}

.comic-episode__image {
  display: block;
  width: min(100%, 720px);
  height: auto;
}

.comic-episode__divider {
  width: 100%;
  height: 8px;
  margin: 2rem 0 1.5rem;
  background: #95724F;
}

.comic-episode__text-block {
  width: min(100%, 900px);
  margin-inline: auto;
}

.comic-episode__text-title {
  margin: 0 0 1rem;
  color: #593000;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.2;
}

.comic-episode__text-content p {
  margin: 0 0 1rem;
  max-width: none;
  color: #593000;
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  font-weight: 400;
  line-height: 1.7;
}

@media (max-width: 680px) {
  .comic-episode {
    width: min(100% - 1rem, 100%);
    padding-block: 1.25rem 3rem;
  }

  .comic-episode__title {
    font-size: clamp(1.7rem, 7vw, 2.1rem);
  }

  .comic-episode__button {
    min-width: 96px;
    padding: 0.5rem 0.9rem;
    font-size: 0.85rem;
  }

  .comic-episode__select-group {
    width: 100%;
    justify-content: space-between;
    border-radius: 1rem;
  }

  .comic-episode__select {
    min-width: 0;
    width: 100%;
    max-width: none;
  }

  .comic-episode__divider {
    height: 6px;
    margin: 1.5rem 0 1.25rem;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.book-page__hero {
  text-align: center;
}

.book-page__intro {
  max-width: 820px;
  margin: 0 auto 2rem;
}

.book-page__eyebrow {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.5;
}

.book-page__hook {
  max-width: 820px;
  margin: 0 auto;
  font-size: clamp(1.35rem, 2.8vw, 2.2rem);
  font-weight: 700;
  line-height: 1.3;
}

.book-page__cover {
  margin: 2.5rem auto 0;
  text-align: center;
}

.book-page__cover-image {
  display: block;
  max-width: min(100%, 420px);
  height: auto;
  margin: 0 auto;
}

.book-page__after-cover p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.75;
}

.book-page__purchase-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin-top: 1rem;
}

.book-page__cta {
  margin: 0;
}

.book-page__cta a {
  display: inline-block;
  padding: 0.55rem 1.35rem;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.book-page__cta a:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.book-page__after-cover {
  max-width: 860px;
  margin: 0.8rem auto 0;
  text-align: center;
}

.book-page__after-cover p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
}

.book-page__section {
  max-width: 980px;
  margin: 0 auto;
}

.book-page__section + .book-page__section {
  margin-top: 4.5rem;
}

.book-page__heading {
  margin-bottom: 1.4rem;
}

.book-meta {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.book-meta li {
  margin-bottom: 0.55rem;
  line-height: 1.6;
}

.book-themes {
  margin: 1.25rem 0 0;
  padding-left: 1.2rem;
}

.book-themes li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}



.faq-accordion {
  max-width: 900px;
}

.faq-accordion details {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.faq-accordion details:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.12);
}

.faq-accordion summary {
  position: relative;
  padding-right: 2rem;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  line-height: 1.5;
}

.faq-accordion summary::-webkit-details-marker {
  display: none;
}

.faq-accordion summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.25rem;
  line-height: 1;
}

.faq-accordion details[open] summary::after {
  content: "−";
}

.faq-accordion details p {
  margin: 0.9rem 0 0;
  max-width: 820px;
  line-height: 1.75;
}

.book-page__section--final-cta {
  text-align: center;
}

.book-page__section--final-cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .book-page__hook {
    font-size: 1.8rem;
  }

  .book-page__section + .book-page__section {
    margin-top: 3.5rem;
  }
}

.site-info {
  padding: 0 0 5rem;
}

.site-info__banner {
  background: #a47a52;
  padding: 1.4rem 1rem;
  text-align: center;
}

.site-info__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 2.2vw, 3rem);
  font-weight: 800;
  text-transform: uppercase;
}

.site-info__inner {
  width: min(92%, 820px);
  margin: 3rem auto 0;
  display: grid;
  gap: 1.4rem;
}

.site-info__panel {
  background: #f7f2eb;
  border: 2px solid #8a5b2f;
  border-radius: 18px;
  overflow: hidden;
}

.site-info__summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 1.8rem;
  font-size: 1.8rem;
  font-weight: 800;
  color: #5f3714;
  background: #efe4d4;
  position: relative;
}

.site-info__summary::-webkit-details-marker {
  display: none;
}

.site-info__summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.8rem;
  transform: translateY(-50%);
  font-size: 2.2rem;
  line-height: 1;
}

.site-info__panel[open] .site-info__summary::after {
  content: "−";
}

.site-info__content {
  padding: 1.8rem;
}

.site-info__content p {
  margin: 0 0 1.2rem;
  color: #5a3a1e;
  line-height: 1.7;
}

.site-info__content p:last-child {
  margin-bottom: 0;
}

.site-info__link-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fffdf9;
  border: 1px solid #d8c1a7;
  border-radius: 14px;
  padding: 1.6rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.site-info__link-card:hover,
.site-info__link-card:focus-visible {
  transform: translateY(-2px);
  border-color: #8a5b2f;
  box-shadow: 0 8px 24px rgba(95, 55, 20, 0.08);
}

.site-info__link-title {
  margin: 0 0 0.8rem;
  color: #6a3f18;
  font-size: 2rem;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.site-info__link-text {
  margin: 0 0 0.8rem;
}

.site-info__link-text:last-child {
  margin-bottom: 0;
}

@media (max-width: 640px) {
  .site-info__summary {
    padding-right: 4.8rem;
    font-size: 1.6rem;
  }

  .site-info__content {
    padding: 1.5rem;
  }

  .site-info__link-title {
    font-size: 1.8rem;
  }
}

.books-page {
  width: min(100% - 2rem, 900px);
  margin-inline: auto;
  padding-block: clamp(2rem, 4vw, 3.5rem) clamp(3rem, 6vw, 4rem);
  color: #593000;
  font-family: var(--font-family-base);
}

.books-page__intro {
  max-width: 700px;
  margin: 0 auto clamp(2.5rem, 5vw, 3rem);
  text-align: center;
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.books-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 260px));
  justify-content: center;
  justify-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 700px;
  margin-inline: auto;
}

.book-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.book-card__title {
  margin: 0 0 1rem;
  color: #593000;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1.25;
}

.book-card__image-wrapper {
  margin-bottom: 1.25rem;
}

.book-card__image {
  display: block;
  width: 180px;
  height: auto;
  border: 1px solid #95724F;
  border-radius: 1rem;
}

.book-card__versions {
  margin-bottom: 1.25rem;
}

.book-card__versions-title {
  cursor: pointer;
  font-weight: 600;
}

.book-card__versions-content {
  margin-top: 0.75rem;
}

.book-card__version-link {
  margin: 0 0 0.45rem;
}

.book-card__version-link a {
  color: #593000;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.15em;
}

.book-card__description {
  max-width: 24ch;
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.05rem);
  line-height: 1.55;
}
