/* footer-sticky.css — mantém o footer no fim da viewport em páginas curtas */
html, body{height:100%}
body{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}
.topbar, .site-header{flex:0 0 auto}
main{flex:1 0 auto; display:block}
.site-footer{flex-shrink:0; margin-top:0}
