.facility-nav{
  width:100%;
  max-width:1880px;
  margin:0 auto 28px;
  display:flex;
  justify-content:center;
  gap:8px;
  background:transparent;
  padding:0;
  box-sizing:border-box;
}

.facility-nav a{
  min-width:110px;
  text-align:center;
  text-decoration:none;
  padding:12px 18px;
  border-radius:14px;
  background:#eef2f7;
  color:#334155;
  font-size:15px;
  font-weight:700;
  transition:.18s ease;
}

.facility-nav a:hover{
  background:#e2e8f0;
  transform:translateY(-1px);
}

.facility-nav .active,
.facility-nav .active:hover{
  background:#2563eb;
  color:#fff;
  box-shadow:0 10px 20px rgba(37,99,235,.25);
}

.facility-nav .new{
  background:#16a34a;
  color:#fff;
}

