.detail-navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.detail-navigation .back {
  margin-bottom: 0;
}

.next-candidate {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 15px;
  border-radius: 9px;
  background: var(--nav);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.18s;
}

.next-candidate:hover {
  background: #263140;
  transform: translateX(2px);
}

.next-candidate span {
  color: var(--accent);
  font-size: 17px;
}
