/******** School Grid ********/
.school-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 30px;
}

.school-item {
  text-align: center;
}

.school-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  padding: 1rem;
}

.school-name {
  margin-top: 10px;
  font-weight: bold;
  font-size: 1.125em;
  color: #141414;
}

.school-pagination {
  margin-top: 80px;
  text-align: left;
}

.school-pagination a {
  margin: 0 10px;
  text-decoration: none;
  padding: 8px 14px;
  background: #eee;
  border-radius: 5px;
  color: #141414;
  transition: background 0.2s;
}

.school-pagination a:hover {
  background: #ddd;
}

.school-pagination .current {
  font-weight: bold;
  background: #bbb;
}

/******** Password Form ********/
.wc-category-password-form {
  max-width: 300px;
  margin: 20px 0;
}
.wc-category-password-form input[type="password"] {
  width: 100%;
  padding: 8px;
  margin-top: 5px;
  margin-bottom: 10px;
  box-sizing: border-box;
}
.wc-category-password-form button {
  background: #0071a1;
  color: #fff;
  border: none;
  padding: 8px 15px;
  cursor: pointer;
}
.wc-category-password-form button:hover {
  background: #005177;
}
