.mobile-topbar{ display:none; }

@media (max-width: 768px){

  .mobile-topbar{
    display:flex;
    align-items:center;
    justify-content:center;
    position:sticky;
    top:0;
    z-index:200;
    background:#fff;
    padding:10px 14px;
    border-bottom:1px solid #eee;
  }

  .mtb-pill{
    display:inline-block;
    background:#fff;
    color:#0f2149;
    font-size:13.5px;
    font-weight:700;
    letter-spacing:0.02em;
    padding:8px 22px;
    border-radius:999px;
    text-decoration:none;
    border:2px solid transparent;
    background-image:
      linear-gradient(#fff, #fff),
      linear-gradient(90deg, #16a34a, #2563eb);
    background-origin:border-box;
    background-clip:padding-box, border-box;
  }

  body{padding-bottom:70px;}
}