/* Pawon Nusantara v7.4.11 - service point number badge refinement */
.service-point{
  grid-template-columns:64px minmax(0,1fr);
  gap:18px;
}
.service-point__icon{
  width:64px;
  height:64px;
  min-width:64px;
  min-height:64px;
  display:grid;
  place-items:center;
  align-self:center;
  justify-self:start;
  border-radius:20px;
  background:linear-gradient(180deg,#fff2eb 0%,#f9e2d7 100%);
  color:var(--primary);
  font-size:26px;
  font-weight:900;
  line-height:1;
  letter-spacing:.04em;
  text-align:center;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.82), 0 10px 24px rgba(180,35,24,.10);
}

@media (max-width:760px){
  .service-point{
    grid-template-columns:56px minmax(0,1fr);
    gap:14px;
  }
  .service-point__icon{
    width:56px;
    height:56px;
    min-width:56px;
    min-height:56px;
    border-radius:18px;
    font-size:22px;
  }
}
