/* ==================================================
   BOOK-SPECIFIC DETAIL STYLES
   Gemeinsame Detail-Typografie/Layout: detail.css
================================================== */

.book-sidebar picture {
  aspect-ratio: 1805 / 2594;
}

.book-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.book-buttons .button {
  width: 100%;
}

.book-review-card {
  display: block;
  width: 100%;
  max-width: 320px;
  margin-top: 18px;
  padding: 18px 20px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(32,53,66,0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.book-review-card:hover {
  transform: translateY(-2px);
  border-color: rgba(47,102,95,0.32);
  box-shadow: 0 20px 42px rgba(32,53,66,0.11);
}

.book-review-card span,
.book-review-card em {
  display: block;
  color: var(--signature);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.10em;
  line-height: 1.4;
  text-transform: uppercase;
}

.book-review-card .book-review-stars {
  margin-top: 8px;
  color: #b68a5a;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255,255,255,0.7);
}

.book-review-card strong {
  display: block;
  margin: 10px 0 10px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.08rem;
  line-height: 1.35;
}

.book-review-card em::after {
  content: " →";
}

.book-toc {
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid var(--line);
}

.book-toc h2 {
  margin-bottom: 24px;
}

.book-toc-list {
  list-style: none;
  padding: 0;
}

.book-toc-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  color: var(--ink-soft);
}

.book-toc-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--signature);
  font-weight: 700;
}

.book-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 80px 0 50px;
}

.book-divider::before,
.book-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.book-divider span {
  margin: 0 20px;
  color: var(--signature);
  font-size: 1rem;
  white-space: nowrap;
}

.book-highlight {
  margin: 50px 0;
  padding: 40px;
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(32,53,66,0.08);
}

.book-highlight blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.4;
  text-align: center;
  color: var(--ink);
}

.book-fit {
  margin: 56px 0 12px;
  padding: 34px 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 38px rgba(32,53,66,0.07);
}

.book-fit h2 {
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
}

.book-fit p {
  color: var(--ink-soft);
}

.book-fit-list {
  list-style: none;
  margin-top: 22px;
  padding: 0;
}

.book-fit-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 24px;
  color: var(--ink-soft);
  line-height: 1.7;
}

.book-fit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--signature);
}

.book-origin {
  margin: 38px 0 12px;
  padding: 34px 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.book-origin h2 {
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
}

.book-origin p {
  color: var(--ink-soft);
}

.book-origin-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.book-origin-stats div {
  padding: 18px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.book-origin-stats dt {
  color: var(--signature);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.book-origin-stats dd {
  margin-top: 6px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  line-height: 1.2;
}

.book-data {
  margin: 38px 0 12px;
  padding: 34px 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.book-data h2 {
  margin-bottom: 22px;
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
}

.book-data table {
  width: 100%;
  border-collapse: collapse;
}

.book-data tr {
  border-bottom: 1px solid var(--line);
}

.book-data tr:last-child {
  border-bottom: 0;
}

.book-data th,
.book-data td {
  padding: 13px 0;
  text-align: left;
  vertical-align: top;
}

.book-data th {
  width: 42%;
  padding-right: 24px;
  color: var(--signature);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.book-data td {
  color: var(--ink-soft);
}

.book-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .book-cta {
    justify-content: center;
  }

  .book-cta .button {
    flex: 1 1 220px;
  }

  .book-highlight {
    padding: 30px 24px;
    margin: 40px 0;
  }

  .book-fit {
    padding: 30px 24px;
  }

  .book-origin {
    padding: 30px 24px;
  }

  .book-data {
    padding: 30px 24px;
  }
}

@media (max-width: 600px) {
  .book-highlight blockquote {
    font-size: 1.25rem;
  }

  .book-origin-stats {
    grid-template-columns: 1fr;
  }

  .book-data th,
  .book-data td {
    display: block;
    width: 100%;
    padding-right: 0;
  }

  .book-data th {
    padding-bottom: 2px;
  }

  .book-data td {
    padding-top: 0;
  }
}
