/* KAZAVTO icon scale — keep sizes consistent across the homepage
   xs  12  · rating star, footer meta, check glyph in badge
   sm  16  · nav, tabs, news arrow, fav, social, contact
   md  20  · search CTA, stats glyph, biz slot glyph
   Container circles/squares are separate from glyph size.
*/
.icon {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.icon-xs { width: 12px; height: 12px; }
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }

/* Legacy aliases → map to scale */
.icon-12 { width: 12px; height: 12px; }
.icon-14 { width: 12px; height: 12px; }
.icon-16 { width: 16px; height: 16px; }
.icon-18 { width: 16px; height: 16px; }
.icon-20 { width: 20px; height: 20px; }
.icon-24 { width: 20px; height: 20px; }

.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
}
.icon-badge .icon {
  width: 10px;
  height: 10px;
}
.icon-badge-sm,
.icon-badge-md {
  width: 16px;
  height: 16px;
}
.icon-badge-blue {
  background: #2563eb;
  color: #fff;
}
.icon-badge-green {
  background: #0d9488;
  color: #fff;
}

.icon-inline {
  display: inline-block;
  vertical-align: -2px;
}
