.job-teaser {
  display: flex;
  width: 100%;
  height: 100%;
  padding: 32px;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  align-self: stretch;
  transition: ease all 150ms;
  position: relative;

  &:hover{
    text-decoration: none;
  }
}

.job-teaser p {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%; /* 24px */
}

.job-teaser__content {
  display: flex;
  padding: 0;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}
.job-teaser__category{
  width: 100%;
  padding: 4px 0;
  border-bottom: 1px solid var(--color-primary--2);
}
.job-teaser__intitule{
  font-family: var(--font-text);
  font-size: 21px;
  font-style: normal;
  font-weight: 600;
  line-height: 170%; /* 35.7px */
  text-transform: uppercase;
}
.job-teaser__address{
  padding: 8px 0;
}
.job-teaser__region{
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
  align-items: start;
  position: relative;

  &::after {
    content:  '';
    position: relative;
    background-image: url(../../images/icons/arrow--white.svg);
    background-position: center;
    background-repeat: no-repeat;
    transition: ease all 150ms;
    display: flex;
    width: 54px;
    height: 54px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 15px;
    background-color: var(--color-primary--1);
  }
}

