/* ===================================================================
   news-detail.css - 文章详情页独立样式
   提取自 template/default/html/news.html 的 <style> 标签
   适配页面：news.html（律师解答回复型文章详情页）
   主色调：深色背景 #101415 + 金色强调 #d4af37
   =================================================================== */

/* === 深色主题基础 === */
body {
    background-color: #101415;
    color: #e0e3e5;
}
.container {
    background-color: transparent;
}

/* === CLS 修复：预设高度防止布局偏移 === */
.detail-hero { min-height: 200px; }
.detail-main { min-height: 600px; }
.detail-sidebar { min-height: 400px; }
.article-body { min-height: 200px; }
.lawyer-avatar .avatar-wrap { aspect-ratio: 1 / 1; }
.article-body img,
.detail-content img { max-width: 100%; height: auto; }

/* === 面包屑导航 === */
.detail-breadcrumb {
    padding: 16px 0;
    color: #c6c6cd;
    font-size: 14px;
}
.detail-breadcrumb .breadcrumb-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.detail-breadcrumb .breadcrumb-item {
    display: inline-flex;
    align-items: center;
    max-width: 320px;
}
.detail-breadcrumb .breadcrumb-item:not(:last-child)::after {
    content: "›";
    margin-left: 8px;
    color: rgba(198, 198, 205, 0.5);
}
.detail-breadcrumb .breadcrumb-item.active {
    color: rgba(198, 198, 205, 0.8);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.detail-breadcrumb a {
    color: #c6c6cd;
    text-decoration: none;
    transition: color 0.3s ease;
}
.detail-breadcrumb a:hover { color: #d4af37; }

/* === 屏幕阅读器专用 === */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* === 评论标题样式（h4 → h2 后保留视觉） === */
.sidebar-comment-title-text {
    color: #d4af37;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}

/* === Hero Section === */
.detail-hero {
    padding: 40px 0 4px;
    margin-bottom: 4px;
    position: relative;
}
.detail-hero::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 384px;
    height: 384px;
    background: rgba(212, 175, 55, 0.05);
    filter: blur(120px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.detail-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    color: #d4af37;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}
.detail-meta .meta-dot {
    width: 4px;
    height: 4px;
    background: #d4af37;
    border-radius: 50%;
}
.detail-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.detail-meta .meta-item i {
    font-size: 14px;
}
/* tags 在 meta 行的样式（SEO 友好：靠近页面顶部）
   v3.2.2 修订：tags 内容较多时与其他 meta 项视觉相容
   - flex: 0 0 auto 保证作为整体不被拆散
   - max-width + line-height 防止过长溢出
   - 与其他 meta 项共用 gap，视觉一致 */
.detail-meta .meta-tags {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 1 auto;
    max-width: 520px;
}
.detail-meta .meta-tags i.fa-tags {
    font-size: 13px;
    color: #c8a45c;
    flex-shrink: 0;
}
.detail-meta .meta-tags #metaTagsText {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    overflow: hidden;
    white-space: nowrap;
    min-width: 0;
}
.detail-meta .meta-tag-item {
    display: inline-block;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.02em;
    line-height: 1.6;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    flex-shrink: 0;
}
.detail-meta .meta-tag-item:hover,
.detail-meta a.meta-tag-item:focus {
    background: rgba(212, 175, 55, 0.15);
    border-color: rgba(212, 175, 55, 0.5);
    color: #e8c76a;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.15);
}
.detail-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.05em;
    color: #e0e3e5;
    margin-bottom: 32px;
    max-width: 1024px;
    position: relative;
    z-index: 1;
}
.detail-divider {
    width: 96px;
    height: 4px;
    background: linear-gradient(to right, #d4af37, transparent);
    border-radius: 2px;
    margin-bottom: 32px;
}
.detail-desc {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(198, 198, 205, 0.8);
    max-width: 768px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* === Body Grid 8:4 === */
.detail-body {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 40px;
}
@media (min-width: 992px) {
    .detail-body {
        grid-template-columns: 8fr 4fr;
        gap: 24px;
    }
}
.detail-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* === Glass Panel 通用类 === */
.detail-card,
.info-card,
.detail-content,
.sidebar-card,
.nav-card,
.related-cases-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.detail-card:hover,
.info-card:hover,
.nav-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

/* === AI 智能方案卡片 === */
.detail-card {
    padding: 32px;
    position: relative;
    overflow: hidden;
}
.detail-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    background: rgba(212, 175, 55, 0.1);
    filter: blur(48px);
    transition: all 0.3s ease;
}
.detail-card:hover::after {
    background: rgba(212, 175, 55, 0.2);
}
.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}
.card-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 20px;
}
.card-title {
    font-size: 24px;
    font-weight: 600;
    color: #d4af37;
    margin: 0;
    line-height: 1.3;
}

/* === 律师区域 === */
.lawyer-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    z-index: 1;
}
@media (min-width: 768px) {
    .lawyer-section {
        flex-direction: row;
    }
}
.lawyer-avatar {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 80px;
}
.lawyer-avatar .avatar-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.lawyer-avatar .avatar-wrap i {
    font-size: 32px;
    color: #6c757d;
}
.lawyer-avatar .verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 18px;
    height: 18px;
    background: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #101415;
    font-size: 10px;
}
.lawyer-avatar .lawyer-name {
    font-weight: 700;
    color: #e0e3e5;
    font-size: 14px;
    text-align: center;
}
.lawyer-avatar .lawyer-exp {
    font-size: 10px;
    color: rgba(212, 175, 55, 0.8);
    padding: 2px 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.lawyer-content {
    flex: 1;
}
.lawyer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.lawyer-tag {
    font-size: 12px;
    padding: 4px 12px;
    background: #272a2c;
    color: #c6c6cd;
    border-radius: 20px;
    letter-spacing: 0.05em;
}
.lawyer-reply {
    border-left: 2px solid rgba(212, 175, 55, 0.3);
    padding-left: 24px;
    margin-bottom: 20px;
}
.lawyer-reply .reply-label {
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}
.lawyer-reply .reply-text {
    font-size: 16px;
    line-height: 1.8;
    color: #e0e3e5;
    /* v3.4.2 移除：italic + serif 字体只适合短引用，400 字长回复需要常规字体保证可读性 */
}

/* === 按钮 === */
.lawyer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.btn-primary-gold {
    background: #d4af37;
    color: #101415;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #d4af37;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.1em;
    font-size: 14px;
}
.btn-primary-gold:hover {
    color: #101415;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    transform: translateY(-1px);
}
.btn-outline-gold {
    background: transparent;
    color: #d4af37;
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.5);
    display: inline-block;
    letter-spacing: 0.1em;
    font-size: 14px;
}
.btn-outline-gold:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
    text-decoration: none;
}

/* === Info Grid === */
.info-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.info-card {
    padding: 24px;
}
.info-card > i {
    font-size: 28px;
    color: #d4af37;
    margin-bottom: 16px;
    display: block;
}
.info-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #e0e3e5;
    margin-bottom: 12px;
    line-height: 1.3;
}
.info-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #c6c6cd;
    margin: 0;
}
.info-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.info-card ul li {
    font-size: 14px;
    line-height: 2;
    color: #c6c6cd;
    padding-left: 16px;
    position: relative;
}
.info-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

/* === 文章正文 === */
.detail-content {
    padding: 32px;
}
.detail-content .article-body {
    font-size: 16px;
    line-height: 1.6;
    color: #c6c6cd;
}
.detail-content .article-body p {
    margin-bottom: 16px;
}
.detail-content .article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* === 相关法律案例（主内容区） === */
.related-cases-card {
    padding: 24px;
}
.related-cases-title {
    color: #d4af37;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 0;
}
.related-cases-title::before {
    content: '';
    width: 16px;
    height: 1px;
    background: rgba(212, 175, 55, 0.3);
}
.related-cases-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
@media (min-width: 768px) {
    .related-cases-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}
.related-case-item {
    cursor: pointer;
}
.related-case-item:hover .related-case-title {
    color: #d4af37;
}
.related-case-meta {
    font-size: 10px;
    color: rgba(198, 198, 205, 0.6);
    margin-bottom: 4px;
    letter-spacing: 0.02em;
}
.related-case-title {
    font-size: 14px;
    font-weight: 600;
    color: #e0e3e5;
    line-height: 1.5;
    transition: color 0.3s ease;
    margin: 0;
}
.related-case-title a {
    color: inherit;
    text-decoration: none;
}

/* === 侧边栏 === */
.detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.sidebar-card {
    padding: 24px;
    position: sticky;
    top: 100px;
}

/* === 热线卡片 === */
.hotline-card {
    padding: 16px;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    margin-bottom: 24px;
}
.hotline-card .hotline-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.hotline-card .hotline-header i {
    color: #d4af37;
    font-size: 20px;
}
.hotline-card .hotline-header span {
    font-weight: 700;
    color: #e0e3e5;
    font-size: 14px;
}
.hotline-card .hotline-number {
    font-size: 24px;
    color: #d4af37;
    font-family: 'Libre Caslon Text', Georgia, serif;
    font-weight: 700;
    letter-spacing: 0.05em;
}
.hotline-card .hotline-slogan {
    font-size: 10px;
    color: #6c757d;
    margin-top: 8px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* === 侧边栏评论组件 === */
.sidebar-comment-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}
.sidebar-comment-title i {
    color: #d4af37;
    font-size: 18px;
}
.sidebar-comment-title h4 {
    color: #d4af37;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0;
}
.sidebar-comment-form {
    background: rgba(11, 15, 16, 0.3);
    border: 1px solid rgba(69, 70, 77, 0.1);
    border-radius: 12px;
    padding: 12px;
    transition: border-color 0.3s;
}
.sidebar-comment-form:hover {
    border-color: rgba(212, 175, 55, 0.2);
}
.sidebar-comment-form .comment-textarea {
    min-height: 80px;
    background: transparent;
    border: none;
    padding: 0;
    font-size: 14px;
}
.sidebar-comment-form .comment-textarea:focus {
    box-shadow: none;
}
.sidebar-comment-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(69, 70, 77, 0.1);
}
.sidebar-comment-code {
    display: flex;
    align-items: center;
    gap: 8px;
}
.sidebar-comment-code .comment-input {
    width: 64px;
    padding: 6px 8px;
    font-size: 10px;
    background: rgba(39, 42, 44, 0.5);
    border: 1px solid rgba(69, 70, 77, 0.1);
    border-radius: 8px;
}
.sidebar-comment-code .comment-input:focus {
    box-shadow: none;
    border-color: rgba(212, 175, 55, 0.3);
}
.sidebar-comment-code .comment-codeimg {
    height: 38px;
    width: 99px; /* 130:50=2.6:1 比例，与 /core/code.php 实际尺寸一致，避免 Lighthouse 宽高比警告 */
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    border: 1px solid rgba(69, 70, 77, 0.2);
}
.sidebar-submit-btn {
    background: #d4af37;
    color: #101415;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
    letter-spacing: 0.05em;
}
.sidebar-submit-btn:hover {
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
    transform: translateY(-1px);
}

/* 评论记录 */
.sidebar-comment-list {
    margin-top: 32px;
}
.sidebar-comment-list-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(69, 70, 77, 0.1);
    margin-bottom: 16px;
}
.sidebar-comment-list-header span {
    font-size: 10px;
    color: rgba(198, 198, 205, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.sidebar-comment-list-header i {
    color: rgba(198, 198, 205, 0.3);
    font-size: 16px;
}
.sidebar-comment-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sidebar-comment-item {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(69, 70, 77, 0.05);
    background: rgba(25, 28, 30, 0.2);
}
.sidebar-comment-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}
.sidebar-comment-item-name {
    font-size: 12px;
    font-weight: 700;
    color: #d4af37;
}
.sidebar-comment-item-date {
    font-size: 9px;
    color: rgba(198, 198, 205, 0.4);
}
.sidebar-comment-item-text {
    font-size: 12px;
    line-height: 1.5;
    color: rgba(198, 198, 205, 0.8);
    margin: 0;
}

/* 回复按钮 */
.sidebar-reply-btn {
    background: transparent;
    border: none;
    color: rgba(212, 175, 55, 0.7);
    font-size: 10px;
    padding: 4px 8px;
    cursor: pointer;
    transition: color 0.2s;
    margin-top: 4px;
}
.sidebar-reply-btn:hover {
    color: #d4af37;
}

/* 子评论样式 */
.sidebar-comment-reply {
    margin-top: 8px;
    margin-left: 16px;
    border-left: 2px solid rgba(212, 175, 55, 0.2);
    background: rgba(25, 28, 30, 0.3);
}

/* 回复弹框 */
.comment-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
.comment-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}
.comment-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}
.comment-modal-dialog {
    position: relative;
    z-index: 1;
    width: 90%;
    max-width: 500px;
}
.comment-modal-content {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    overflow: hidden;
}
.comment-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(69, 70, 77, 0.2);
}
.comment-modal-title {
    color: #d4af37;
    font-size: 16px;
    font-weight: 700;
    margin: 0;
}
.comment-modal-close {
    background: transparent;
    border: none;
    color: rgba(198, 198, 205, 0.6);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}
.comment-modal-close:hover {
    color: #d4af37;
}
.comment-modal-body {
    padding: 20px;
}
.comment-modal-body .form-group {
    margin-bottom: 16px;
}
.comment-modal-body .form-row {
    display: flex;
    gap: 12px;
}
.comment-modal-body .form-col {
    flex: 1;
}
.comment-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid rgba(69, 70, 77, 0.2);
}
.comment-modal-btn {
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}
.comment-modal-btn-cancel {
    background: rgba(69, 70, 77, 0.3);
    color: rgba(198, 198, 205, 0.8);
}
.comment-modal-btn-cancel:hover {
    background: rgba(69, 70, 77, 0.5);
}
.comment-modal-btn-submit {
    background: #d4af37;
    color: #101415;
}
.comment-modal-btn-submit:hover {
    background: #e5c14a;
    box-shadow: 0 0 12px rgba(212, 175, 55, 0.3);
}

/* 侧边栏分页 */
.sidebar-pagination {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}
.sidebar-pagination .site-page-btn,
.sidebar-pagination .page-num {
    flex: 1;
    text-align: center;
    padding: 6px 0;
    border: 1px solid rgba(69, 70, 77, 0.1);
    border-radius: 4px;
    font-size: 9px;
    color: rgba(198, 198, 205, 0.7);
    background: transparent;
    text-decoration: none;
    transition: all 0.2s;
    display: block;
}
.sidebar-pagination .site-page-btn:hover,
.sidebar-pagination .page-num:hover {
    background: rgba(212, 175, 55, 0.05);
}
.sidebar-pagination .page-num-current {
    border-color: rgba(212, 175, 55, 0.3);
    color: #d4af37;
}
.sidebar-pagination .site-page-numbar {
    display: contents;
}

/* === 上一篇/下一篇 === */
.detail-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 40px;
    margin-bottom: 48px;
}
@media (min-width: 768px) {
    .detail-nav {
        grid-template-columns: 4fr 8fr;
    }
}
.nav-card {
    padding: 24px;
    text-decoration: none;
    display: block;
    min-height: 110px;
}
.nav-card:hover {
    text-decoration: none;
}
.nav-card-prev {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.nav-card-prev .nav-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(212, 175, 55, 0.6);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    text-transform: uppercase;
}
.nav-card-prev .nav-label i {
    font-size: 14px;
}
.nav-card-prev .nav-title {
    font-size: 14px;
    font-weight: 700;
    color: #c6c6cd;
    line-height: 1.5;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.nav-card-prev:hover .nav-title {
    color: #e0e3e5;
}

.nav-card-next {
    background: rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}
.nav-card-next:hover {
    background: rgba(212, 175, 55, 0.1);
}
.nav-card-next::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 256px;
    height: 256px;
    background: rgba(212, 175, 55, 0.1);
    filter: blur(80px);
    border-radius: 50%;
    transition: all 0.7s ease;
}
.nav-card-next:hover::before {
    background: rgba(212, 175, 55, 0.2);
}
.nav-card-next .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 16px;
}
.nav-card-next .nav-text {
    flex: 1;
}
.nav-card-next .nav-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d4af37;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.nav-card-next .nav-label-line {
    width: 32px;
    height: 1px;
    background: rgba(212, 175, 55, 0.5);
}
.nav-card-next .nav-title {
    font-size: 24px;
    font-weight: 600;
    color: #e0e3e5;
    font-style: italic;
    font-family: 'Libre Caslon Text', Georgia, serif;
    line-height: 1.3;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}
.nav-card-next:hover .nav-title {
    color: #d4af37;
}
.nav-card-next .nav-desc {
    font-size: 14px;
    color: rgba(198, 198, 205, 0.7);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.nav-card-next .nav-arrow {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d4af37;
    font-size: 24px;
    transition: all 0.5s ease;
}
.nav-card-next:hover .nav-arrow {
    background: #d4af37;
    color: #101415;
    transform: translateX(8px);
}

/* === Animation === */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.detail-card,
.info-card,
.detail-content,
.sidebar-card,
.nav-card,
.related-cases-card {
    animation: fadeInUp 0.6s ease backwards;
}
.info-card:nth-child(2) { animation-delay: 0.1s; }

/* === 隐私脱敏声明（合规） === */
.privacy-notice {
    background: rgba(11, 15, 16, 0.4);
    border-left: 3px solid rgba(212, 175, 55, 0.5);
    border-radius: 8px;
    padding: 12px 16px;
    margin-top: 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(198, 198, 205, 0.7);
}
.privacy-notice i {
    color: rgba(212, 175, 55, 0.7);
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 2px;
}
.privacy-notice strong {
    color: rgba(212, 175, 55, 0.9);
    font-weight: 600;
}

/* === Responsive === */
@media (max-width: 768px) {
    .detail-title {
        font-size: 32px;
        letter-spacing: 0.03em;
    }
    .detail-card,
    .detail-content {
        padding: 20px;
    }
    .sidebar-card {
        position: static;
    }
    .nav-card-next .nav-title {
        font-size: 17px;
    }
    .nav-card-next .nav-arrow {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    .lawyer-reply {
        padding-left: 16px;
    }
}
