html body .wrapper main.main .container.employee-container {
  order: 2;
  width: 100%;
}
html body .wrapper main.main .container.employee-container h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
}
html body .wrapper main.main .container.employee-container .employees {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
html body .wrapper main.main .container.employee-container .employees .employee-content {
  grid-column: 1/-1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1.5rem;
}
html body .wrapper main.main .container.employee-container .employees .employee-content p {
  color: var(--primary-text);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
}
html body .wrapper main.main .container.employee-container .employees .employee {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  min-width: 20rem;
  height: auto;
  padding: 0;
  gap: 1rem;
  border-radius: 0.5rem;
}
html body .wrapper main.main .container.employee-container .employees .employee:only-of-type {
  grid-column: span 2;
}
html body .wrapper main.main .container.employee-container .employees .employee img {
  aspect-ratio: 3/4;
  min-width: 7rem;
  min-height: 7rem;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0.5rem;
  flex: 0.3;
}
html body .wrapper main.main .container.employee-container .employees .employee .employee__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  flex: 0.7;
  height: 100%;
}
html body .wrapper main.main .container.employee-container .employees .employee .employee__content p {
  color: var(--primary-text);
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1rem;
}
html body .wrapper main.main .container.employee-container .employees .employee .employee__content p:first-of-type {
  color: var(--primary-text);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: underline;
}
@media (max-width: 899px) {
  html body .wrapper main.main .container.employee-container .employees {
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  }
}

/*# sourceMappingURL=employee.css.map */
