.management {
  display: grid;
  grid-template-columns: repeat(6,1fr); 
}

.management__fio {
  word-spacing: 1000px;
}

.employees {
  gap: 48px 32px;
  margin-top: 48px;
}

.employees:first-child {
  margin-top: 0;
}

.employee {
  width: calc((100% + 32px) / 3 - 32px);
}

.employee:first-child:last-child {
  width: 100%;
}

.employee:nth-child(2):last-child {
  width: calc(50% - 16px);
}

.employee:nth-last-child(2):first-child {
  width: calc(50% - 16px);
}

.management .speakers__image,
.employees .speakers__image {
	width: 140px;
	height: 140px;
}

@media (max-width: 1900px){
  .management {
    grid-template-columns: repeat(5,1fr); 
  }
}
@media (max-width: 1640px) {
  .management {
    grid-template-columns: repeat(4,1fr); 
  }
}

@media (max-width: 1200px) {
  .management {
    grid-template-columns: repeat(3,1fr); 
  }
}

@media (max-width: 770px){
  .management {
    grid-template-columns: repeat(2,1fr); 
  }
}

@media (max-width: 680px) {
  .management__fio {
    word-spacing: inherit;
  }
  .employee {
    width: calc(50% - 16px);
  }
}

@media (max-width: 480px){
  .management {
    grid-template-columns: 100%; 
  }
}

@media (max-width: 440px){
  .employee {
    width: 100%;
  }
}