/**
 * Career and job chip components.
 */

/* Career */
.job-chips {
  display: flex;
  flex-wrap: wrap;
   gap: 10px;
  align-items: flex-start;
}

.job-chip {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 5px 7px;
  border-radius: 4px;
  background: #A9A9A9;
  color: #fff;
  font-size: 20px!important;
  line-height: 1.1;
  font-weight: 700;
  text-decoration: none;
}

.job-chip:hover {
  background: #8f8f8f;
  color: #fff;
}
