/**
 * 子主题自定义样式
 */

/* 示例：修改文章标题颜色 */
.single .article-title,
.single h1 {
    color: #ff5722;
}

/* 示例：自定义按钮圆角 */
.btn,
.but,
.zib-widget .btn {
    border-radius: 8px;
}

/* 示例：自定义文章布局美化 */
.zibll-child-single-layout {
    position: relative;
}

.zibll-child-single-article {
    background: var(--main-bg-color, #fff);
    border-radius: 12px;
    padding: 24px;
}

.zibll-child-single-cover .zibll-child-cover-header {
    min-height: 360px;
    background-size: cover;
    background-position: center;
    position: relative;
    color: #fff;
}

.zibll-child-cover-mask {
    min-height: 360px;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .45);
}

.zibll-child-cover-header h1 {
    color: #fff;
    font-size: 36px;
    margin: 0;
}

.zibll-child-single-content {
    margin-top: 20px;
}