/* SERVICES-MOBILE-r2
   Refines #services to be closer to the provided light mobile reference.
   - replace emoji look with monochrome outline SVG icons
   - cleaner search button/icon
   - lighter, flatter cards
   - less visual noise on counts
*/
.services-lite-shell{
  width:min(420px, 100%);
  padding:14px 14px 18px;
}
.services-lite-head{
  padding:2px 0 8px;
}
.services-lite-logo{
  margin-bottom:16px;
  font-size:19px;
}
.services-lite-head h1{
  font-size:20px;
  line-height:1.1;
}
.services-lite-search{
  grid-template-columns:minmax(0,1fr) 40px;
  gap:7px;
  margin:10px 0 18px;
}
.services-lite-search input,
.services-lite-search button{
  height:36px;
  border-radius:6px;
}
.services-lite-search::before{
  line-height:36px;
}
.services-lite-search button{
  box-shadow:none;
  background:#f2c200;
}
.services-lite-search button svg{
  width:17px;
  height:17px;
  stroke:#111827;
  stroke-width:2.1;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.services-lite-grid{
  gap:10px;
}
.services-lite-card{
  min-height:74px;
  border-radius:7px;
  background:#f3f3f3;
  box-shadow:none;
  gap:6px;
  padding:10px 5px 8px;
}
.services-lite-card:hover{
  background:#ededed;
  box-shadow:none;
  transform:none;
}
.services-lite-card__icon{
  width:26px;
  height:26px;
}
.services-lite-card__icon svg{
  width:24px;
  height:24px;
  display:block;
  stroke:#111827;
  stroke-width:1.8;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.services-lite-card__label{
  font-size:10.5px;
  line-height:1.15;
  font-weight:700;
  white-space:normal;
  text-overflow:clip;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  min-height:24px;
}
.services-lite-card__count{
  display:none;
}
@media (min-width:768px){
  .services-lite-shell{
    width:min(460px, 100%);
    padding:20px 20px 24px;
  }
}
