/* Football Kit Encyclopedia v3.7.10.7
 * Shared mobile header compaction.
 * Mobile already has the fixed bottom navigation, so Search/Menu are not repeated in the top bar.
 */
@media (max-width:700px){
  .fke-header{
    position:sticky;
    top:0;
    z-index:60;
    border-bottom:2px solid var(--fke-gold,#c89b35);
    box-shadow:0 4px 14px rgba(2,17,36,.12);
  }
  .fke-header__inner{
    width:100%!important;
    min-height:56px!important;
    padding:9px 14px!important;
    display:flex!important;
    flex-direction:row!important;
    align-items:center!important;
    justify-content:center!important;
    gap:8px!important;
  }
  .fke-identity{
    width:auto!important;
    min-width:0!important;
    max-width:100%!important;
    flex:0 1 auto!important;
    display:flex!important;
    align-items:center!important;
    justify-content:center!important;
    gap:8px!important;
    text-align:center;
  }
  .fke-identity__logo{
    width:30px!important;
    height:30px!important;
    flex:0 0 30px!important;
  }
  .fke-identity>span{min-width:0!important}
  .fke-identity strong{
    display:block!important;
    max-width:calc(100vw - 76px);
    margin:0!important;
    font-family:Georgia,'Times New Roman',serif;
    font-size:17px!important;
    line-height:1.15!important;
    letter-spacing:.01em!important;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }
  .fke-identity small,
  .fke-nav,
  .fke-search,
  .fke-subnav,
  .fke-header__mobile-tools{
    display:none!important;
  }
}

@media (max-width:380px){
  .fke-header__inner{min-height:52px!important;padding:8px 12px!important}
  .fke-identity strong{font-size:15px!important;max-width:calc(100vw - 52px)}
  .fke-identity__logo{width:27px!important;height:27px!important;flex-basis:27px!important}
}

@media (min-width:601px) and (max-width:700px){body.admin-bar .fke-header{top:46px}}
