@charset "UTF-8";
.rating-book {
  display: flex;
  flex-direction: row;
  align-items: center;
  box-sizing: border-box;
  max-height: 20px;
  gap: 10px;
}

.rating-stars-book {
  display: flex;
  flex-direction: row;
  /*Размер звезд задается в book_card_catalog.html в include*/
}
.rating-stars-book .c-icon {
  width: 15px; /* Размер по умолчанию */
  height: 15px;
}
@media (max-width: 550px) {
  .rating-stars-book .c-icon {
    width: 12px; /* Еще меньше для мобильных */
    height: 12px;
  }
}

.footer-book-card-counter {
  display: flex;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
}
.footer-book-card-counter span {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /* Ограничиваем заголовок 1 строками */
  overflow: hidden;
  text-overflow: ellipsis;
}
