.controller {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8rem 0;
  gap: 2rem;
}

.controller-item {
  padding: 5px 15px;
  cursor: pointer;
  position: relative;
}

.controller-item::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #e6e6e6;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: background 0.3s ease-in-out;
}

.controller-item::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: #00a0e9;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: width 0.3s ease-in-out;
}

.controller-item:hover::after {
  width: 100%;
}

.controller-item.active {
  color: #00a0e9;
}

.controller-item.active::before {
  background: #00a0e9;
}

.recruit-item {
  display: none;

  &.visible {
    display: block;
  }

  .no-recruit {
    margin: 5rem 0 15rem;
  }
}