/* ================================================================
   布局主题：侧栏居左（lefty）—— body.layout-lefty
   经典双栏的镜像：≥1024px 时侧栏移到左侧。
   左缘博主名片与左移后的侧栏位置冲突，此布局下隐藏名片。
   移动端沿用 bundle 的单列堆叠（本规则限定在 min-width 媒体查询内，
   避免高特异性压制 bundle 的 column 方向）。
   ================================================================ */

@media screen and (min-width: 1024px) {
    body.layout-lefty .site-layout {
        flex-direction: row-reverse;
        gap: 44px; /* 两栏间距比经典布局（24px）更宽松 */
    }
}
body.layout-lefty .site-author { display: none; }
