/* ── 1. 宽屏布局 ──────────────────────────────────────────────────────
   覆盖 mdBook 默认的 750px 窄屏居中布局
   --content-max-width 同时控制 general.css 和 chrome.css 里的三处 max-width
─────────────────────────────────────────────────────────────────────── */
:root {
    --content-max-width: 92%;
}

/* 宽屏时给正文增加一点内边距，防止贴着侧栏 */
.content main {
    padding-left: 24px;
    padding-right: 24px;
}

/* ── 2. 正文字号 ──────────────────────────────────────────────────────
   小四号 = 12pt，在 96 DPI 屏幕上约等于 18px
   同时调大行高，提升中文长篇阅读舒适度
─────────────────────────────────────────────────────────────────────── */
.content main {
    font-size: 18px;
    line-height: 1.75;
}

/* ── 3. 文章页尾打赏区 ─────────────────────────────────────────────────── */
.donation-footer {
    margin: 72px auto 24px;
    padding-top: 28px;
    border-top: 1px solid var(--table-border-color);
    text-align: center;
}

.donation-footer__title {
    margin: 0 0 8px;
    color: var(--fg);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.donation-footer__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    min-height: 34px;
    margin-bottom: 34px;
    padding: 0 18px;
    border-radius: 5px;
    background: hsl(170.64deg 100% 50%);
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
}

.donation-footer__button:hover {
    background: #d92d20;
    color: #ffffff;
    text-decoration: none;
}

.donation-footer__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 170px));
    justify-content: center;
    gap: 34px 56px;
}

.donation-footer__item {
    margin: 0;
}

.donation-footer__image {
    width: 150px;
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.donation-footer__label {
    margin-top: 10px;
    color: var(--fg);
    font-size: 14px;
    line-height: 1.4;
}

@media (max-width: 760px) {
    .donation-footer {
        margin-top: 48px;
    }

    .donation-footer__grid {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        gap: 26px 22px;
    }
}

@media print {
    .donation-footer {
        display: none;
    }
}
