.employee {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  margin-bottom: 60px;
  align-items: start;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.photo img {
  width: 280px;
  height: 280px;
 
  object-fit: cover;
  border-radius: 8px;
}

.description h2 {
  margin-top: 0;
  color: #222;
}

.description h3 {
  margin: 5px 0 15px 0;
  font-weight: normal;
  color: #555;
}

.description p {
  margin-bottom: 12px;
}

@media (max-width: 900px) {
  .employee {
    grid-template-columns: 1fr;
  }

  .photo img {
    width: 100%;
    height: auto;
  }
}
