.UIListCompany .company-search {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px 18px;
  align-items: end;
  margin-bottom: 30px;
  margin-top: 30px;
}
.UIListCompany .company-search .field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #333;
}
.UIListCompany .company-search .field input {
  width: 100%;
  height: 34px;
  padding: 6px 10px;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  outline: none;
}
.UIListCompany .company-search .field input:focus {
  border-color: #9bb8e8;
  box-shadow: 0 0 0 2px rgba(25,118,210,.1);
}
.UIListCompany .company-search .btn {
  display: inline-block;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  background: #d8433e;
  color: #fff;
  cursor: pointer;
  line-height: 1;
}
.UIListCompany .company-search .btn:hover { opacity:.9 }

@media (max-width: 768px){
  .UIListCompany .company-search {
    grid-template-columns: 1fr;
  }
}

/* ==== DANH SÁCH DOANH NGHIỆP ==== */
.UIListCompany .CompanyList {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.UIListCompany .CompanyList .listItem {
      box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .25s ease, transform .12s ease;
}
.UIListCompany .CompanyList .listItem:hover {
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}
.UIListCompany .CompanyList .listItem a {
  display: block;
  position: relative;
  text-decoration: none;
  color: inherit;
  padding: 7px 7px 0 7px;
}

.UIListCompany .company-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  background: #f5f7fa;
        border-radius:10px;
}

.UIListCompany .logo {
  position: absolute;
  left: 14px;
  top: 170px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  border: 1px solid #eee;
  padding: 2px;
  box-shadow:  0px 0px 4px 0px rgba(0, 0, 0, 0.71);;
}

/* Tiêu đề xanh, căn giữa */
.UIListCompany .company-title {
  font-weight: 800;
  font-size: 16px;
  text-align: center;
  margin: 48px 12px 6px;
  color: #18a058;
}
.UIListCompany .CompanyList .listItem:hover .company-title {
  color: #108a47;
}

.UIListCompany .industry {
  font-size: 14px;
  text-align: center;
  margin: 0 10px 14px;
}
.UIListCompany .industry span:first-child { color:#00914b }
.UIListCompany .industry span:last-child  {color: #d11311;font-weight:600}

@media (max-width: 1200px){
  .UIListCompany .CompanyList { grid-template-columns: repeat(3,1fr) }
}
@media (max-width: 992px){
  .UIListCompany .CompanyList { grid-template-columns: repeat(2,1fr) }
}
@media (max-width: 576px){
  .UIListCompany .CompanyList { grid-template-columns: 1fr }
  .UIListCompany .logo {
    top: 132px;
    left: 10px;
    width: 58px;
    height: 58px;
  }
}

.UIListCompany .page {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 18px 0;
}
.UIListCompany .page .CurrentPage,
.UIListCompany .page a.ButtonPage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid #18a058;
  background: #18a058;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.UIListCompany .page a.ButtonPage {
  background: #fff;
  color: #18a058;
}
.UIListCompany .page a.ButtonPage:hover {
  background: #e9f7ee;
}

.UIListCompany .page span.ButtonPage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: 8px;
  border: 1px solid #18a058;
  background: #18a058;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
.UIListCompany .page span.ButtonPage {
  background: #eee;
  color: #18a058;
}
.UIListCompany .page > span > a:not(.ButtonPage) {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 text-decoration: none;
 font-weight: 700;
 padding: 0 5px;
 font-size: 16px;
}
