.featured-schools {
  padding: 0;
  background-color: #f9f9f9;
  text-align: center;
  margin-block: 50px;
}

.section-title {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  background-color: #E33F36;
  padding: 10px 20px;
  border-radius: 8px 8px 0 0;
  margin: 0;
}

.school-logos {
  display: flex;
  padding: 40px 20px;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  border: 1px solid #e0e0e0;
  border-radius: 0 0 8px 8px;
}

.school-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 150px;
}

.school-logos a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.school-logos a:hover {
  transform: scale(1.05);
}

.school-logos img {
  max-height: 60px;
  width: 100%;
  object-fit: contain;
}

.view-link {
  padding: 4px 12px;
  line-height: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background-color: #666;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  width: 100%;
}

.view-link:hover {
  background-color: #6b6b6b;
}