.textAdvList {
  /* width: 300px; */
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 12px;
  /* display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px; */
  padding: 0 16px;
  box-sizing: border-box;
}
.textAdvList .advItem {
  /* width: 79px; */
  /* height: 34px; */
  border-radius: 3px;
  border: 1px solid  #757575;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  padding: 9px 0;
  color: #BDBDBD;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

@media screen and (min-width: 768px) {
  .textAdvList .advItem {
    font-size: 16px;
  }
}