/* 새로 나온 책 */
.new-books {
  width: 1160px;
  margin: 0 auto;
  background-color: #fff;
  box-sizing: border-box;
}

.new-books-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.new-books-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  height: 36px;
}

.new-books-title-link {
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.3s ease;
}

.new-books-description {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* 책 관련 */
.new-books-container {
  position: relative;
  margin: 0 auto;
  min-height: 250px;
}

.book-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.book-image-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.book-thumb {
  width: 216px;
  height:276px; 
  object-fit: fill;
  border-radius: 8px;
}

/* 책 정보 */
.book-info {
  display: flex;
  flex-direction: column;
}

.book-title {
  font-size: 15px;
  font-weight: 700;
  transition: color 0.2s ease;
  line-height: 1.4;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  word-wrap: break-word;
}

.book-author {
  font-size: 12px;
  font-weight: 700;
  color: #8f8f8f;
  margin: 0;
  line-height: 1.6em;
}

/* 도서 유형 아이콘 + 베스트 셀러랑 같이 씀 */
.book-badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.badge {
  display: inline-block;
  padding: 0px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
}

.rsv-badge {
  background-color: #F5F5F5;
  color: #666666;       
}

.ebook-badge {
  background-color: #F7FAAF;
  color: #D7A63C;
}

.book-badge {
  background-color: #CBEEE9;
  color: #01A28A;            
}

/* lightSlider 네비게이션 버튼 위치 조정 */
.new-books-container .lSAction > a {
  top: 28%;
}