.book-content[data-astro-cid-rm64ofnx] {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: .5rem;
  text-align: center;
  background: #fff;
  border-radius: inherit;
  height: 100%;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
}

.cover-container[data-astro-cid-rm64ofnx] {
  --cover-width: 85px;
  --cover-height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (width >= 768px) {
  .book-content[data-astro-cid-rm64ofnx] {
    padding: .75rem;
  }

  .cover-container[data-astro-cid-rm64ofnx] {
    --cover-width: 105px;
    --cover-height: 148px;
  }
}

.year-badge[data-astro-cid-rm64ofnx] {
  position: absolute;
  top: .25rem;
  right: .25rem;
  background: var(--app-primary-color);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  padding: .15rem .4rem;
  border-radius: 8px;
  box-shadow: 0 1px 2px #0000001a;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  opacity: .85;
}

.titre[data-astro-cid-rm64ofnx] {
  color: var(--app-primary-color);
  font-size: .85rem;
  font-weight: 600;
  margin: .6rem 0 0;
  max-width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 1.3;
  transition: color .3s;
}

@media (width >= 768px) {
  .year-badge[data-astro-cid-rm64ofnx] {
    top: .5rem;
    right: .5rem;
    font-size: .75rem;
    padding: .25rem .5rem;
  }

  .titre[data-astro-cid-rm64ofnx] {
    font-size: .9rem;
    margin: .75rem 0 0;
  }
}

.book-card:hover .book-content[data-astro-cid-rm64ofnx] {
  transform: translateY(-.15rem);
}

.book-card:hover .year-badge[data-astro-cid-rm64ofnx] {
  opacity: 1;
  transform: translateY(-.1rem);
}

.book-card:hover .titre[data-astro-cid-rm64ofnx] {
  color: var(--app-primary-light-color);
}
.collection[data-astro-cid-jksj73zb] {
  padding: .25rem;
  width: 100%;
  overflow: hidden;
}

header[data-astro-cid-jksj73zb] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

h3[data-astro-cid-jksj73zb] {
  flex: 1;
  margin: 0;
  color: var(--app-primary-color);
  font-size: 1.1rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.view-all[data-astro-cid-jksj73zb] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--app-primary-light-color);
  text-decoration: none;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 20px;
  transition: all .3s;
  background: none;
  font-size: .9rem;
}

.view-all[data-astro-cid-jksj73zb] span[data-astro-cid-jksj73zb] {
  display: inline-block;
  transform: translateX(0);
  transition: transform .3s;
}

.view-all[data-astro-cid-jksj73zb] svg[data-astro-cid-jksj73zb] {
  width: 20px;
  height: 20px;
  transform: translateX(0);
  transition: transform .3s cubic-bezier(.4, 0, .2, 1);
}

.view-all[data-astro-cid-jksj73zb]:hover {
  background: var(--app-primary-light-color);
  color: #fff;
}

.view-all[data-astro-cid-jksj73zb]:hover span[data-astro-cid-jksj73zb] {
  transform: translateX(-4px);
}

.view-all[data-astro-cid-jksj73zb]:hover svg[data-astro-cid-jksj73zb] {
  transform: translateX(4px);
}

.slider[data-astro-cid-jksj73zb] {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--app-primary-light-color) transparent;
  padding: .25rem;
  width: 100%;
  position: relative;
}

.slider[data-astro-cid-jksj73zb]::-webkit-scrollbar {
  height: 6px;
}

.slider[data-astro-cid-jksj73zb]::-webkit-scrollbar-track {
  background: none;
}

.slider[data-astro-cid-jksj73zb]::-webkit-scrollbar-thumb {
  background: var(--app-primary-light-color);
  border-radius: 3px;
}

.book-link[data-astro-cid-jksj73zb] {
  flex: 0 0 120px;
  scroll-snap-align: start;
  color: var(--app-primary-color);
  text-decoration: none;
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  padding: 4px;
}

.book-card[data-astro-cid-jksj73zb] {
  transition: all .3s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border-radius: 6px;
  padding: 0;
  height: 100%;
  box-shadow: 0 1px 3px #0000000d;
}

.book-link[data-astro-cid-jksj73zb]:hover {
  transform: translateY(-4px);
}

.book-link[data-astro-cid-jksj73zb]:hover .book-card[data-astro-cid-jksj73zb] {
  box-shadow: 0 12px 24px #0000001a;
}

@media (width >= 768px) {
  .collection[data-astro-cid-jksj73zb] {
    padding: .5rem;
  }

  .slider[data-astro-cid-jksj73zb] {
    gap: 24px;
    padding: .5rem;
  }

  h3[data-astro-cid-jksj73zb] {
    font-size: 1.5rem;
  }

  .view-all[data-astro-cid-jksj73zb] {
    padding: 8px 16px;
    gap: 8px;
    font-size: 1rem;
  }

  .book-card[data-astro-cid-jksj73zb] {
    border-radius: 8px;
  }

  .book-link[data-astro-cid-jksj73zb] {
    flex: 0 0 140px;
    padding: 8px;
  }
}
order-icon {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 10;
}

.collection-container[data-astro-cid-doajd5h2] {
  overflow: hidden;
}

@media (width >= 768px) {
  .collection-container[data-astro-cid-doajd5h2] {
    margin-bottom: 28px;
  }
}

@media (width <= 768px) {
  order-icon {
    bottom: 16px;
    right: 16px;
  }
}
