.team-employers__controls {
  display: flex;
  gap: 16px;
  margin-bottom: 53px;
}

.team-employers__control {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 106px;
  height: 106px;
  color: var(--color-coral);
  background-color: transparent;
  border: 1px solid var(--color-coral);
  border-radius: 50%;
  cursor: pointer;
  transition:
    color 0.15s linear,
    background-color 0.15s linear,
    border-color 0.15s linear;
}

.team-employers__control:hover {
  color: var(--color-gm-dark-blue);
  background-color: var(--color-coral);
}

.team-employers__control:disabled,
.team-employers__control:disabled:hover {
  color: var(--color-black);
  background-color: transparent;
  border-color: var(--color-black);
  cursor: not-allowed;
}

.team-employers__control svg {
  width: 50px;
  height: 15px;
}

.team-employers__content {
  position: relative;
}

.team-employers__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.team-employers__info {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 18px;
  font-family: var(--font-family-manrope);
  font-size: 18px;
  line-height: 119%;
  color: #d9d9d9;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.team-employers__content:hover .team-employers__info {
  opacity: 1;
}

.team-employers__name {
  margin-top: 0;
  margin-bottom: 0;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

@media (prefers-reduced-motion: reduce) {
  .team-employers__control,
  .team-employers__info {
    transition: none;
  }
}
