/*
Theme Name: WhalePod Custom Theme
Author: Endian
Description: 完美复刻官网风格的极简主题
Version: 1.0
*/

/* =========================================
   文章内容排版修复 (针对 .entry-content 下的元素)
   ========================================= */

/* 标题样式 */
.entry-content h2 { 
    font-size: 1.8rem; 
    font-weight: 700; 
    margin-top: 2.5rem; 
    margin-bottom: 1rem; 
    color: #111827; 
    line-height: 1.3;
}

.entry-content h3 { 
    font-size: 1.5rem; 
    font-weight: 600; 
    margin-top: 2rem; 
    margin-bottom: 0.8rem; 
    color: #374151; 
}

/* 正文段落 */
.entry-content p { 
    margin-bottom: 1.5rem; 
    font-size: 1.1rem; 
    line-height: 1.8; 
    color: #374151; 
}

/* 列表 (圆点和数字) */
.entry-content ul { 
    margin-bottom: 1.5rem; 
    padding-left: 1.5rem; 
    list-style-type: disc; /* 恢复实心圆点 */
}

.entry-content ol { 
    margin-bottom: 1.5rem; 
    padding-left: 1.5rem;
    list-style-type: decimal; /* 恢复数字 */
}

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

/* 图片美化 */
.entry-content img { 
    border-radius: 0.75rem; 
    margin: 2rem auto; 
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); 
    max-width: 100%;
    height: auto;
    display: block;
}

/* 引用块 */
.entry-content blockquote { 
    border-left: 4px solid #6323fa; /* 你的品牌紫 */
    padding-left: 1.25rem; 
    margin: 2rem 0;
    font-style: italic; 
    color: #4b5563; 
    background-color: #f9fafb;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-radius: 0 0.5rem 0.5rem 0;
}

/* 链接 */
.entry-content a {
    color: #6323fa;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* 加粗 */
.entry-content strong, .entry-content b {
    font-weight: 700;
    color: #000;
}
/* =========================================
   去重修复：隐藏正文里的第一张图片
   (因为它已经作为封面图在顶部展示了)
   ========================================= */
.entry-content .wp-block-image:first-of-type {
    display: none;
}
