.UINganhNghe {
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 30px;
}

.UINganhNghe .Title {
  text-align: center;
  font-weight: 800;
  font-size: 20px;
  color: #008f4a;
  text-transform: uppercase;
  margin: 8px 0 16px;
  letter-spacing: .3px;
}

.UINganhNghe .Content .nav {
  display: grid !important;              /* ghi đè inline style column-count */
  grid-template-columns: repeat(4, 1fr); /* 4 cột */
  gap: 10px 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.UINganhNghe .Content .nav li {
  break-inside: avoid;
}

.UINganhNghe .Content .nav a.item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 6px;
  background: #008f4a;
  color: #ffffff;
  border: 1px solid #008f4a;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
  transition: transform .12s ease, background .12s ease, box-shadow .12s ease;
  white-space: nowrap;
}

.UINganhNghe .Content .nav a.item:hover {
  background: #005830;
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
  transform: translateY(-1px);
}

.UINganhNghe .Content .nav .icon {
  width: 18px;
  display: inline-flex;
  justify-content: center;
        display:none;
}
.UINganhNghe .Content .nav .icon i {
  color: #ffffff;
  font-size: 16px;
  line-height: 1;
}
.UINganhNghe .Content .nav .name {
  font-weight: 600;
  font-size: 15px;
  color: #ffffff;
}

@media (max-width: 1200px) {
  .UINganhNghe .Content .nav {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .UINganhNghe .Content .nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .UINganhNghe .Content .nav {
    grid-template-columns: 1fr;
  }
}
