/* =========================================================
   ACCESSIBILITY — FONT SIZE CONTROLS
   ========================================================= */
.font-size-controls{
  display:inline-flex;
  align-items:center;
  gap:4px;
  margin-left:8px;
  padding:3px 5px;
  border-radius:9px;
  background:rgba(255,255,255,.075);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
}
.font-size-label{
  margin:0 3px 0 1px;
  color:#cfe0e9;
  font-size:8.5px;
  font-weight:700;
  white-space:nowrap;
}
.font-size-controls button{
  min-width:29px;
  height:24px;
  display:grid;
  place-items:center;
  padding:0 6px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:7px;
  background:rgba(255,255,255,.07);
  color:#f4fbff;
  font-family:Inter,"Noto Sans Devanagari",sans-serif;
  font-size:10px;
  font-weight:800;
  line-height:1;
  cursor:pointer;
  transition:background .16s ease,border-color .16s ease,transform .16s ease,box-shadow .16s ease;
}
.font-size-controls button:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.14);
  border-color:rgba(255,255,255,.26);
}
.font-size-controls button[aria-pressed="true"]{
  color:#102a43;
  background:linear-gradient(180deg,#fff,#eaf4ff);
  border-color:#fff;
  box-shadow:0 4px 10px rgba(0,17,34,.15);
}
.font-size-controls button:focus-visible{
  outline:2px solid #fbbf24;
  outline-offset:2px;
}

@media(max-width:900px){
  .font-size-label{display:none}
  .font-size-controls{margin-left:4px}
}
@media(max-width:760px){
  .gov-strip-inner{
    justify-content:space-between!important;
    gap:8px!important;
  }
  .gov-strip-right{
    display:flex!important;
  }
  .gov-strip-right>span{
    display:none!important;
  }
  .font-size-controls{
    margin-left:0;
  }
}
@media(max-width:520px){
  .gov-strip-left strong{
    font-size:8.5px;
  }
  .font-size-controls button{
    min-width:27px;
    height:23px;
    padding:0 5px;
    font-size:9px;
  }
}
