:root {
    --section-dark-bg-color: #438f7a!important;
}

/* Fix: theme's mobile sticky nav uses width:100vw + padding without
   box-sizing:border-box, making it 8px wider than the viewport and
   causing horizontal scroll on phones. */
@media only screen and (max-width: 1130px) {
    .fixed-nav {
        box-sizing: border-box;
    }
}
