/* ============================================================
   他山之石 - 详情页样式
   ============================================================ */

/* 首字下沉效果 */
.voice-content .drop-cap::first-letter,
.voice-content p:first-of-type::first-letter {
    font-family: Georgia, 'Source Han Serif CN', 'Songti SC', 'STSong', serif;
    font-size: 3.5rem;
    float: left;
    line-height: 0.9;
    padding-right: 8px;
    color: #C85A3C;
    font-weight: bold;
}

/* 正文排版优化 */
.voice-content h2 {
    font-family: Georgia, 'Source Han Serif CN', 'Songti SC', 'STSong', serif;
    font-size: 1.5rem;
    font-weight: bold;
    color: #1A1C1A;
    padding-top: 1rem;
    border-bottom: 1px solid rgba(26, 28, 26, 0.1);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.voice-content h3 {
    font-family: Georgia, 'Source Han Serif CN', 'Songti SC', 'STSong', serif;
    font-size: 1.25rem;
    font-weight: bold;
    color: #1A1C1A;
    margin-bottom: 0.75rem;
}

.voice-content p {
    margin-bottom: 1.25rem;
}

.voice-content ul,
.voice-content ol {
    margin: 1rem 0;
    padding-left: 1.25rem;
}

.voice-content ul {
    list-style: disc;
}

.voice-content ol {
    list-style: decimal;
}

.voice-content li {
    margin-bottom: 0.5rem;
}

/* 正文图片/figure 排版 */
.voice-content figure {
    margin: 2rem 0;
    border: 1px solid rgba(26, 28, 26, 0.1);
    padding: 0.5rem;
    background: #FAF8F3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.voice-content figure img {
    width: 100%;
    filter: grayscale(100%) brightness(0.95);
    transition: filter 0.7s ease;
    cursor: zoom-in;
}

.voice-content figure img:hover {
    filter: grayscale(0%) brightness(1);
}

.voice-content figcaption {
    margin-top: 0.75rem;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.75rem;
    color: rgba(26, 28, 26, 0.5);
    text-align: center;
}

/* Pull Quote 引用块 */
.voice-content blockquote {
    margin: 2rem 0;
    border-top: 1px solid rgba(200, 90, 60, 0.3);
    border-bottom: 1px solid rgba(200, 90, 60, 0.3);
    padding: 1.5rem 0;
    text-align: center;
}

.voice-content blockquote p {
    font-family: Georgia, 'Source Han Serif CN', 'Songti SC', 'STSong', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: #C85A3C;
    font-weight: bold;
}

/* 链接样式 */
.voice-content a {
    color: #C85A3C;
    font-weight: bold;
    text-decoration: underline;
    text-decoration-style: dotted;
}

.voice-content a:hover {
    color: #1A1C1A;
}

/* 响应式调整 */
@media (max-width: 1023px) {
    .voice-content .drop-cap::first-letter,
    .voice-content p:first-of-type::first-letter {
        font-size: 2.5rem;
    }
}
