.actions-footer__candidate-phone {
  margin-top: 1.25rem;
}

.candidate-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.875rem;
  background-color: #fff;
  border-left: 3px solid #f39314;
  border-radius: 2px;
  box-shadow: 0 2px 10px rgba(43, 42, 41, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.candidate-phone__icon {
  flex: 0 0 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f39314;
  color: #fff;
  font-size: 1.25rem;
}

.candidate-phone__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.25;
}

.candidate-phone__label {
  color: #737373;
  font-size: 0.75rem;
}

.candidate-phone__number {
  margin-top: 0.125rem;
  color: #2b2a29;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

@media (any-hover: hover) {
  .candidate-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(43, 42, 41, 0.18);
  }

  .candidate-phone:hover .candidate-phone__number {
    color: #f39314;
  }
}
