.employee-list{
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 40px 8px 8px 8px !important;
  padding: 0;
}

.employee-card {
  display: flex;
  flex-wrap: wrap;
  /* margin: 8px 0; */
  background: #f9f9f9;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 6px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.employee-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.employee-image img {
  width: 100%;
  height: auto;
  display: block;
}

.employee-info {
  padding: 20px;
  flex: 1 1 300px;
}

.employee-info h3 {
  margin: 0 0 5px;
  font-size: 20px;
  /* text-align: center; */
}

.employee-title {
  font-style: italic;
  margin-bottom: 15px;
}

.employee-contact {
  list-style: none;
  padding: 0 !important;
  margin: 0;
}

.employee-contact li {
  margin-bottom: 8px;
}

.employee-contact i {
  margin-right: 6px;
  color: #527170;
}

.employee-contact a
{
  text-decoration: none !important;
}

@media (min-width: 768px) {
  .employee-list {
    grid-template-columns: repeat(4, 1fr);
  }
}