/* School Card Component */

.school-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  /* Remove transitions to prevent hover effects */
}

/* .school-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
} */

.school-card-image img {
  width: 100%;
  height: auto;
  display: block;
}

.school-card-content {
  padding: 20px;
}

.school-card-content h3 {
  font-size: 32px;
  margin-bottom: 6px;
  color: #2c3e50;
}

.school-card-content p {
  font-size: 17px;
  color: #555;
  line-height: 1.7;
  margin: 0 0 10px 0;
}

.school-card-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  background: #ffb415;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.school-card-button:hover {
  background: #e6a012;
  color: white;
}

/* School Grid Container */
.school-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Responsive */
@media (max-width: 900px) {
  .school-grid {
    grid-template-columns: 1fr;
  }
}
