/**
 * 前端可视化编辑器样式
 * 让 Gutenberg 和经典编辑器在前端正确显示
 */

/* 段落 */
.entry-content p, .front-page-content p {
    margin-bottom: 1.5em;
    line-height: 1.8;
}

/* 标题 */
.entry-content h1, .entry-content h2, .entry-content h3 {
    color: #1e4a7e;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

/* 按钮区块 */
.entry-content .wp-block-buttons {
    margin: 30px 0;
}

.entry-content .wp-block-button__link {
    background: #1e4a7e;
    color: #fff !important;
    padding: 14px 30px;
    border-radius: 5px;
    font-weight: 600;
}

.entry-content .wp-block-button__link:hover {
    background: #163b65;
    color: #fff !important;
}

/* 封面区块 */
.entry-content .wp-block-cover {
    margin: 0;
}

/* 列区块 */
.entry-content .wp-block-columns {
    gap: 30px;
}

.entry-content .wp-block-column {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* 图片 */
.entry-content .wp-block-image img {
    border-radius: 10px;
}

/* 引用区块 */
.entry-content .wp-block-quote {
    border-left: 4px solid #1e4a7e;
    padding-left: 20px;
    color: #64748b;
    font-style: italic;
}

/* 表格 */
.entry-content .wp-block-table {
    border-collapse: collapse;
    width: 100%;
}

.entry-content .wp-block-table td,
.entry-content .wp-block-table th {
    border: 1px solid #cbd5e1;
    padding: 12px;
}

.entry-content .wp-block-table th {
    background: #1e4a7e;
    color: #fff;
}
