/* layout-body.css */
/* 正文配置 */
body {
    font-family: Lato, proxima-nova, Helvetica Neue, Arial, sans-serif;
    font-weight: 400;
    color: #404040;
    min-height: 100%;
    background: #edf0f2;
    transition: all var(--sidebar-transition);
}

/* 代码段配置 */
pre {
    line-height: 1.2 !important; /* 调整代码快行距 */
}

/* 标题配置 */
h1, h2, h3, h4, h5, h6 {
    color: black !important; /* 设置标题颜色 */
    margin-top: 0.8em; /* 段前间距 */
    margin-bottom: 24px; /* 段后间距 */
    margin-left: 2px; /* 段左间距 */
    font-weight: 700;
    font-family: Roboto Slab, ff-tisa-web-pro, Georgia, Arial, sans-serif;
}

/* 将相邻标题的 margin-top 设为 0 */
h1 + h2, h2 + h3, h3 + h4, h4 + h5, h5 + h6 {
    margin-top: 0;
}

/* 自定义各级标题的文字大小 */
h1 {
    font-size: 175%;
}

h2 {
    font-size: 150%;
}

h3 {
    font-size: 16px !important;
}

h4 {
    font-size: 16px !important;
}

h5 {
    font-size: 16px !important;
}

h6 {
    font-size: 16px !important;
}

/* 段间距 */
p {
    line-height: 24px;
    font-size: 16px;
    margin: 4px 0 4px;
}

.figures-custom-margin {
    margin-top: 24px;
    margin-bottom: 24px;

    /* 覆盖 :scale: xx% */
    max-width: 100% !important;
    height: auto !important;
    transform: none !important;
}

/* 字面量 */
.highlight .s1,  /* 单引号字符串 */
.highlight .s2,  /* 双引号字符串 */
.literal         /* rst原生字面量 */
{
    font-size: 14px;
    font-weight: 600;
    background-color: transparent !important;  /* 透明背景色 */
}

@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    h1 { font-size: 20px; }
    h2 { font-size: 18px; }
    h3, h4, h5, h6 { font-size: 16px; }

    p {
        font-size: 14px;
        line-height: 1.4;
        margin: 4px 0 4px;
    }

    pre {
        font-size: 12px;
    }

    .figures-custom-margin {
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .highlight .s1,
    .highlight .s2,
    .literal {
        font-size: 12px;
    }
}

/* 超小屏幕优化 */
@media (max-width: 480px) {
    h1 { font-size: 20px; }
    h2 { font-size: 18px; }
    h3, h4, h5, h6 { font-size: 14px; }

    p {
        font-size: 13px;
        margin: 4px 0 4px;
    }

    pre {
        font-size: 11px;
    }

    .figures-custom-margin {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .highlight .s1,
    .highlight .s2,
    .literal {
        font-size: 11px;
    }
}