.series-hero .series-short-description {
  max-width: 850px;
  margin: 20px 0 0;
  color: #d5dfda;
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.7;
}

.catalog-results {
  min-width: 0;
}

.series-long-description {
  max-width: 900px;
  margin: 0 0 42px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.series-long-description p {
  margin: 0 0 1.25em;
}

.series-long-description p:last-child {
  margin-bottom: 0;
}

.series-books-header {
  display: flex;
  margin: 0 0 30px;
  padding-bottom: 16px;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.series-books-header h2 {
  margin: 0;
  font: clamp(28px, 3vw, 40px)/1.15 Georgia, serif;
}

.series-books-header p {
  margin: 0;
  color: var(--muted);
  white-space: nowrap;
}

.catalog-book-grid .book-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  text-align: center;
}

.catalog-book-grid .cover-link {
  display: block;
}

.catalog-book-grid .book-card h3 {
  width: 100%;
  max-width: 230px;
  margin: 12px auto 10px;
  flex: 1;
  font-size: 16px;
  line-height: 1.35;
}

.catalog-book-grid .book-card h3 a {
  text-decoration: none;
}

.catalog-card-actions {
  display: grid;
  width: 100%;
  max-width: 190px;
  margin: auto auto 0;
  gap: 8px;
}

.book-details-button,
.series-amazon {
  min-height: 34px;
}

.book-details-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: var(--green);
  color: #fff;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}

.book-details-button:hover {
  background: #1d392f;
  transform: translateY(-1px);
}

.series-amazon {
  display: flex;
  width: 100%;
  max-width: none;
  height: 34px;
  margin: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid #d5a500;
  border-radius: 5px;
  background: #ffd814;
  transition: background .2s ease, transform .2s ease;
}

.series-amazon:hover {
  background: #f7ca00;
  transform: translateY(-1px);
}

.series-amazon img {
  display: block !important;
  width: auto !important;
  height: 23px !important;
  max-width: 115px !important;
  aspect-ratio: auto !important;
  object-fit: contain !important;
  box-shadow: none !important;
  background: transparent !important;
}

@media (max-width: 760px) {
  .series-hero .series-short-description {
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.65;
  }

  .series-long-description {
    margin-bottom: 34px;
    font-size: 17px;
    line-height: 1.75;
  }

  .series-books-header {
    margin-bottom: 24px;
    align-items: start;
    flex-direction: column;
    gap: 7px;
  }

  .catalog-book-grid .book-card h3 {
    font-size: 14px;
  }

  .catalog-card-actions {
    max-width: 150px;
  }

  .book-details-button,
  .series-amazon {
    height: 31px;
    min-height: 31px;
  }

  .series-amazon img {
    height: 20px !important;
    max-width: 100px !important;
  }
}
