
.staff-page {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
}

.staff-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.surgeons, .nurses {
  flex: 1 1 45%;
}

.staff-card {
  text-align: center;
  margin-bottom: 2rem;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 200px;
  margin: 0 auto;
}

.image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  transition: opacity 0.3s ease-in-out;
}

.image-wrapper img.hover {
  opacity: 0;
}

.image-wrapper:hover img.hover {
  opacity: 1;
}

.image-wrapper:hover img.normal {
  opacity: 0;
}

@media (max-width: 768px) {
  .staff-columns {
    flex-direction: column;
  }

  .surgeons, .nurses {
    flex: 1 1 100%;
  }

  .image-wrapper {
    max-width: 100%;
  }
}
.colspan-2 {
  display: block;
  grid-column: 1 / -1; /* Spans all columns */
}
.hilight a {
    color: #33a029 !important;
}

.hilight a:hover {
    color: #2a8c24 !important;
}
