.industry-pill{
  display:inline-flex;
  align-items:center;
  gap:12px;
  margin: 0px 15px 23px 0px;
  padding: 5px 19px 5px 5px;
  border-radius:100px;
  background:#f6f6f6;
  border-radius:100px;
  color:#0B1F33;
  font-size:15px;
  font-weight:500;
}

.industry-img{
  width:44px;
  height:44px;
  border-radius:50%;
  overflow:hidden;
  flex-shrink:0;   /* image shrink na thay */
}

.industry-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.industry-text{
  line-height:1.3;
  word-break:break-word;
  white-space:normal; 
}
.industry-pill{
  transition: transform .25s ease, box-shadow .25s ease;
}

.industry-pill:hover{
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
}
