#book_main_container {
    width: 1160px;
    margin: 0 auto;
}

/* 상단 슬라이드 */
.banner_section {
    background-color: #005359;
    height: 392px;
    width: 100%;
    margin: 60px 0 44px;
}

.book_main_banner_wrap {
    position: relative;
    width: 1160px;
    height: 100%;
    margin: 0 auto;
}

.book_main_banner {
    width: 100%;
    height: 392px;
    margin: 0;
    position: relative;
}

.book_main_slide_img {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 318px;
    border-radius: 8px;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    -webkit-mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    mask-size: 100% 100%;
    mask-repeat: no-repeat;
}

.book_main_banner_info {
    position: absolute;
    bottom: 13%;
    left: 0;
    color: #fff;
}

.book_main_banner_info ul {
    display: flex;
    gap: 10px;
}

.book_main_banner_info ul li {
    font-size: 11px;
    border-radius: 8px;
    padding: 5px 10px;
    font-weight: 800;
}

.book_main_banner_info ul li.first_tag {
    background-color: #01A28A;
    color: #fff;
}

.book_main_banner_info ul li.second_tag {
    background-color: #DCDCDC;
    color: #757575;
}

.book_main_banner_info h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.4em;
    width: 400px;
    word-wrap: break-word; 
    overflow-wrap: break-word; 
    white-space: normal;
    margin: 10px 0;
}

.book_main_banner_info p {
    font-size: 14px;
    line-height: 1.4em;
    width: 400px;
    word-wrap: break-word; 
    overflow-wrap: break-word; 
    white-space: normal;
}

.banner_section .lSAction > a {
    top: 83%;
    opacity: 0.3;
}

.banner_section .lSAction .lSPrev {
    left: 85%;
    opacity: 0.3;
}

.slide-counter {
    position: absolute;
    bottom: 0;
    right: 55px;
    transform: translateY(-50%);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    background-color: rgba(0,0,0,.3);
    padding: 5px 15px;
    border-radius: 30px;
}

.slide-counter .total_count {
    opacity: 70%;
}


/* 하단 예약/시리즈 도서 */
.multi_row_section {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

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

.reserve-books-wrapper,
.series-books-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
}

.reserve-books-title-link,
.series-books-title-link {
    font-size: 24px;
    font-weight: 800;
    text-decoration: none;
    color: #fff;
}

.book-more-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  transition: all 0.3s ease;
  padding-right: 24px;
}

.book-more-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5l7 7-7 7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.3s ease;
}

.book-more-arrow:hover::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12h14'/%3E%3Cpath d='M12 5l7 7-7 7'/%3E%3C/svg%3E");
}

/* 베스트 */
.best-header {
    margin-top: 44px;
}
