/* 小说信息页 - Win11 设置风格 v2 */

/* ===== 1. 容器 ===== */
.book-container {
    max-width: 1000px;
    margin: 15px auto 0;
}

.book-container > .win-card {
    margin-bottom: 12px;
}

/* 卡片内容区统一内边距 */
.win-card-inner {
    padding: 16px 18px;
}

/* ===== 2. 标题区域 ===== */
.book-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 10px;
    line-height: 1.3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.book-author-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.book-author {
    font-size: 14px;
    color: var(--text-secondary);
}

.book-author i {
    color: var(--primary);
    margin-right: 4px;
    font-size: 12px;
}

/* 投稿人标签 */
.book-uploader {
    font-size: 12px;
    color: var(--primary);
    background: var(--primary-bg-light);
    padding: 2px 10px;
    border-radius: 10px;
    margin-left: 6px;
    font-weight: 500;
}

/* 内联操作按钮 - 书架/关注 */
.inline-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--text-muted);
    font-size: 15px;
    cursor: pointer;
    transition: all 0.15s;
    -webkit-tap-highlight-color: transparent;
    flex-shrink: 0;
}

.inline-action-btn:hover {
    color: var(--primary);
    background: var(--primary-bg-light);
}

.inline-action-btn:active {
    transform: scale(0.9);
}

.inline-action-btn.active {
    color: var(--primary);
}

.inline-action-btn.active i.far.fa-bookmark::before {
    content: "\f02e";
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
}

.inline-action-btn.active i.far.fa-heart::before {
    content: "\f004";
    font-weight: 900;
    font-family: "Font Awesome 6 Free";
}

/* ===== 3. 信息网格（2列布局） ===== */
.book-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--border-light);
}

.book-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-bottom: 1px solid var(--border-light);
    min-height: 0;
}

.book-info-item:nth-child(odd) {
    border-right: 1px solid var(--border-light);
}

/* 去除最后两个的底部边框 */
.book-info-item:nth-last-child(-n+2) {
    border-bottom: none;
}

/* 评分行占满整行 */
.book-info-item-full {
    grid-column: 1 / -1;
    border-right: none !important;
}

.book-info-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.book-info-icon.icon-blue {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.book-info-icon.icon-green {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.book-info-icon.icon-orange {
    background: rgba(249, 115, 22, 0.1);
    color: #f97316;
}

.book-info-icon.icon-cyan {
    background: rgba(6, 182, 212, 0.1);
    color: #06b6d4;
}

.book-info-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.book-info-label {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.2;
}

.book-info-value {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 600;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* 信息区链接和评分 */
.book-sort-link {
    color: var(--primary);
    text-decoration: none;
}

.book-sort-link:hover {
    text-decoration: underline;
}

.book-rating-score {
    font-weight: 700;
    color: var(--primary);
}

.book-rating-count {
    color: var(--text-muted);
    margin-left: 2px;
    font-size: 12px;
}

/* ===== 4. 标签（在标题卡片内） ===== */
.book-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px 18px;
    border-top: 1px solid var(--border-light);
}

.book-tag-chip {
    display: inline-block;
    padding: 3px 10px;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    font-size: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.15s;
}

.book-tag-chip:hover {
    border-color: var(--primary-lighter);
    color: var(--primary);
    background: var(--primary-bg-light);
}

/* ===== 5. 核心操作按钮 ===== */
.book-core-actions {
    display: flex;
    gap: 10px;
    padding: 14px 18px;
    border-top: 1px solid var(--border-light);
}

.book-core-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
    flex: 1;
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: hidden;
}

.book-core-btn.primary {
    background: var(--primary);
    color: #fff;
}

.book-core-btn.primary:hover {
    filter: brightness(1.1);
    box-shadow: 0 4px 14px var(--primary-shadow);
    transform: translateY(-1px);
}

.book-core-btn.secondary {
    background: rgba(0,0,0,0.04);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.book-core-btn.secondary:hover {
    background: rgba(0,0,0,0.08);
    border-color: var(--text-muted);
}

.book-core-btn:active {
    transform: scale(0.97);
}

.book-core-btn i {
    font-size: 13px;
}

/* ===== 6. Tab 导航 ===== */
.book-tab-nav {
    display: flex;
    border-bottom: 1px solid var(--border-light);
}

.book-tab-btn {
    flex: 1;
    padding: 12px 8px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    white-space: nowrap;
}

.book-tab-btn:hover:not(.active) {
    color: var(--primary);
    background: rgba(0,0,0,0.02);
}

.book-tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    font-weight: 600;
}

.book-tab-btn.single-tab {
    flex: none;
    justify-content: left;
    padding-left: 18px;
}

.book-tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
}

/* Tab 内容 */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* ===== 7. 简介内容 ===== */
.intro-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.3s ease;
    position: relative;
}

.intro-text.collapsed::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, var(--bg-card));
    pointer-events: none;
}

.intro-text.expanded {
    max-height: none;
}

.intro-expand-controls {
    margin-top: 8px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.expand-btn, .collapse-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary-border);
    border-radius: 14px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.15s;
}

.expand-btn:hover, .collapse-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.collapse-btn {
    display: none;
}

/* ===== 8. 评论区域 ===== */
.comments-preview {
    min-height: 120px;
}

.comments-list {
    margin-top: 12px;
}

.comment-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.comment-info { flex: 1; }

.comment-author {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 14px;
    text-decoration: none;
}

.comment-author:hover {
    color: var(--primary);
}

.comment-time {
    font-size: 12px;
    color: var(--text-muted);
    margin-left: 8px;
}

.comment-content {
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 6px;
    padding-left: 42px;
}

.comment-actions {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding-left: 42px;
}

.like-btn {
    background: none;
    border: none;
    padding: 2px 4px;
    font-size: 12px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 3px;
}

.like-btn:hover { color: var(--text-primary); }
.like-btn.liked { color: var(--primary); }

.no-comments {
    text-align: center;
    padding: 30px 16px;
    color: var(--text-muted);
}

.no-comments i {
    font-size: 32px;
    margin-bottom: 10px;
    display: block;
    opacity: 0.4;
}

.comments-link-section {
    margin-top: 12px;
    text-align: center;
}

.go-to-comments-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.15s;
}

.go-to-comments-btn:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* ===== 9. 临时标签区域 ===== */
.temp-tags-intro {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background: rgba(0,0,0,0.015);
}

.temp-tags-intro .intro-icon {
    flex-shrink: 0;
}

.temp-tags-intro .intro-icon i {
    font-size: 20px;
    color: var(--primary);
}

.temp-tags-intro h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.temp-tags-intro p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.tags-container-compact {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.temp-tag-item {
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 10px 14px;
    margin-bottom: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    transition: all 0.15s;
    width: 100%;
}

.temp-tag-item:hover {
    border-color: var(--primary-lighter);
    background: var(--primary-bg-light);
}

.temp-tag-name {
    font-weight: 600;
    color: var(--primary);
    font-size: 13px;
    background: var(--primary-bg-light);
    padding: 3px 8px;
    border-radius: 6px;
    min-width: 0;
    flex: 1;
}

.temp-tag-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.vote-count strong {
    color: var(--primary);
}

.vote-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.15s;
}

.vote-btn:hover {
    opacity: 0.9;
}

.vote-btn.voted {
    background: var(--primary-dark);
    opacity: 0.8;
    cursor: default;
}

.no-temp-tags {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 16px;
    border: 1px dashed var(--border-light);
    border-radius: 8px;
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 12px;
    width: 100%;
}

.no-temp-tags i {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 8px;
    opacity: 0.5;
}

.go-to-temp-tags-section {
    text-align: center;
}

.go-to-temp-tags-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.15s;
}

.go-to-temp-tags-btn:hover {
    opacity: 0.9;
}

/* ===== 10. 推文区域 ===== */
.novel-posts-section {
    margin-bottom: 12px;
}

.novel-post-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.novel-post-item:last-child {
    border-bottom: none;
}

.novel-post-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.novel-post-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.novel-post-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
}

.novel-post-name:hover { color: var(--primary); }

.novel-post-time {
    font-size: 11px;
    color: var(--text-muted);
    margin-left: auto;
}

.novel-post-content {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-primary);
    word-break: break-word;
    white-space: pre-wrap;
    margin-bottom: 4px;
}

.novel-post-actions {
    display: flex;
    gap: 14px;
}

.novel-post-actions .post-action {
    font-size: 12px;
    color: var(--text-muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
}

.novel-post-actions .post-action:hover { color: var(--primary); }
.novel-post-actions .post-action em { font-style: normal; }

.novel-posts-more {
    display: block;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    color: var(--primary);
    text-decoration: none;
}

.novel-posts-more:hover { text-decoration: underline; }

/* ===== 11. 侧边栏 Tab ===== */
.sidebar-tab-content {
    display: none;
}

.sidebar-tab-content.active {
    display: block;
}

/* ===== 12. 紧凑书籍列表 ===== */
.compact-book-list, .compact-book-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.compact-book-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 10px;
    text-decoration: none;
    color: var(--text-secondary);
    border-radius: 6px;
    transition: all 0.15s;
    border: 1px solid var(--border-light);
}

.compact-book-item:hover {
    background: var(--primary-bg-light);
    color: var(--primary);
    border-color: var(--primary-lighter);
}

.book-name {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.book-rating-mini {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 12px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.book-rating-mini i {
    color: #f59e0b;
    font-size: 11px;
}

/* ===== 13. 加载更多 ===== */
.load-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 8px 14px;
    margin-top: 8px;
    background: transparent;
    border: 1px dashed var(--border-light);
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.15s;
}

.load-more-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.load-more-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.load-more-btn.loading i {
    animation: spin 0.8s linear infinite;
}

.load-more-count {
    font-size: 11px;
    color: var(--text-muted);
}

/* ===== 14. 推文弹窗 ===== */
.post-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.post-modal {
    background: var(--bg-card);
    border-radius: 14px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    overflow: hidden;
}

.post-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-light);
}

.post-modal-close {
    cursor: pointer;
    padding: 4px;
    color: var(--text-muted);
    font-size: 18px;
}

.post-modal-close:hover { color: var(--text-primary); }

.post-modal-novel {
    padding: 8px 18px;
    font-size: 12px;
    color: var(--text-muted);
}

.post-modal-novel i { color: var(--primary); margin-right: 4px; }

.post-modal-toolbar {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 18px;
    border-bottom: 1px solid var(--border-light);
}

.post-toolbar-btn {
    padding: 6px 12px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    transition: all 0.15s;
}

.post-toolbar-btn:hover { color: var(--primary); border-color: var(--primary); }
.post-toolbar-btn:active { background: var(--primary-bg-light); color: var(--primary); border-color: var(--primary); }

.post-toolbar-hint {
    font-size: 11px;
    color: var(--text-muted);
    margin-left: auto;
    white-space: nowrap;
}

.post-modal textarea {
    width: 100%;
    border: none;
    padding: 14px 18px;
    font-size: 14px;
    line-height: 1.7;
    resize: none;
    overflow: hidden;
    min-height: 120px;
    max-height: 50vh;
    background: transparent;
    color: var(--text-primary);
    box-sizing: border-box;
    font-family: inherit;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.post-modal textarea:focus { outline: none; }
.post-modal textarea::placeholder { color: var(--text-muted); }

.post-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 18px 14px;
}

.post-char-count {
    font-size: 12px;
    color: var(--text-muted);
}

.post-char-count em { font-style: normal; }

.btn-post-submit {
    padding: 7px 22px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    background: var(--primary);
    color: var(--text-inverse);
    transition: all 0.15s;
}

.btn-post-submit:hover { filter: brightness(1.1); }
.btn-post-submit:disabled { opacity: 0.5; cursor: not-allowed; }

/* ===== 15. 骨架屏 ===== */
.skeleton {
    background: linear-gradient(90deg, var(--border-light) 25%, var(--border-color) 50%, var(--border-light) 75%);
    background-size: 200px 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 6px;
}

.skeleton-text { height: 16px; margin-bottom: 8px; }
.skeleton-text.short { width: 60%; }
.skeleton-text.medium { width: 80%; }

.skeleton-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
}

.skeleton-comment {
    display: flex;
    gap: 10px;
    padding: 10px;
    margin-bottom: 6px;
    background: rgba(0,0,0,0.02);
    border-radius: 6px;
}

.skeleton-comment-body { flex: 1; }

.skeleton-tag {
    height: 40px;
    margin-bottom: 6px;
    border-radius: 20px;
}

/* ===== 16. 动画 ===== */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: calc(200px + 100%) 0; }
}

/* ===== 17. PC端简介不折叠 ===== */
@media (min-width: 769px) {
    .intro-text {
        max-height: none;
        overflow: visible;
    }
    .intro-expand-controls {
        display: none;
    }
}

/* ===== 18. 移动端适配 ===== */
@media (max-width: 768px) {
    .book-container {
        padding: 8px 8px 20px;
    }

    .win-card-inner {
        padding: 14px;
    }

    .book-title {
        font-size: 18px;
    }

    .book-author-row {
        gap: 4px;
    }

    .book-info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .book-info-item {
        padding: 10px 14px;
        gap: 8px;
    }

    .book-info-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
        border-radius: 6px;
    }

    .book-info-label {
        font-size: 10px;
    }

    .book-info-value {
        font-size: 12px;
    }

    .book-core-actions {
        flex-wrap: nowrap;
        padding: 12px 14px;
    }

    .book-tags-row {
        padding: 8px 14px;
    }

    .book-core-btn {
        padding: 10px 12px;
        font-size: 13px;
        min-width: 0;
    }

    .book-tab-btn {
        padding: 10px 4px;
        font-size: 12px;
    }

    .intro-text {
        font-size: 13px;
    }

    .temp-tags-intro {
        flex-direction: column;
        gap: 8px;
        padding: 10px;
    }

    .temp-tag-item {
        padding: 8px 10px;
        gap: 6px;
    }

    .temp-tag-name {
        font-size: 12px;
    }

    .compact-book-item {
        padding: 6px 8px;
    }

    .book-name {
        font-size: 12px;
    }

    /* 推文弹窗移动端 */
    .post-modal-overlay {
        align-items: flex-end;
        padding: 0;
    }

    .post-modal {
        border-radius: 14px 14px 0 0;
        max-width: 100%;
        max-height: 90vh;
        display: flex;
        flex-direction: column;
    }

    .post-modal-header {
        flex-shrink: 0;
        padding: 5px 16px;
        font-size: 15px;
    }

    .post-modal-novel {
        padding: 6px 16px;
        font-size: 12px;
    }

    .post-modal-toolbar {
        padding: 6px 16px;
        flex-shrink: 0;
    }

    .post-toolbar-btn {
        padding: 8px 12px;
        font-size: 13px;
        min-height: 36px;
    }

    .post-toolbar-hint { display: none; }

    .post-modal textarea {
        padding: 12px 16px;
        font-size: 16px;
        line-height: 1.6;
        min-height: 100px;
        flex: 1;
    }

    .post-modal-footer {
        flex-shrink: 0;
        padding: 8px 16px 12px;
        padding-bottom: max(12px, env(safe-area-inset-bottom));
    }

    .btn-post-submit {
        padding: 9px 20px;
        font-size: 15px;
    }
}

/* ===== 19. 小屏适配 ===== */
@media (max-width: 375px) {
    .book-info-grid {
        grid-template-columns: 1fr;
    }

    .book-info-item:nth-child(odd) {
        border-right: none;
    }

    .book-info-item-full {
        grid-column: 1;
    }

    .book-info-item {
        border-bottom: 1px solid var(--border-light);
    }

    .book-info-item:last-child {
        border-bottom: none;
    }

    .book-core-btn {
        font-size: 12px;
        padding: 8px 10px;
    }
}
