/* Base styles */
.browse.container {
  max-width: 1200px;
  margin: 0 auto;
}

.schools {
  margin-top: 30px;
}

/* School card styling */
.school {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
}

.school:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.school > .card-header {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.school > .card-header:hover {
  background-color: var(--main-color);
}

.card-title {
  font-weight: 500;
  font-size: 1.25rem;
}

.school-body {
  padding: 1.5rem;
  background-color: white;
}

/* Department list styling */
.department-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.department-list li {
  padding: 0.5rem 0;
  transition: all 0.3s ease;
}

.department-list li:hover {
  transform: translateX(5px);
}

.department-list a {
  color: var(--dark-color);
  text-decoration: none;
  display: inline-block;
  font-weight: 400;
  transition: all 0.3s ease;
}

.department-list a:hover {
  color: var(--accent-color);
  font-weight: 500;
}

.font-weight-bold {
  margin-top: 20px;
}

/* Chevron icon styling */
.fa-chevron-down-white, .fa-chevron-up-white {
  transition: all 0.3s ease;
}

/* Responsive columns */
@media (min-width: 768px) {
  .department-list {
    columns: 2;
    column-gap: 2rem;
  }
}

@media (min-width: 992px) {
  .department-list {
    columns: 3;
  }
}
