
/**--------  TALENTADORE  --------**/

.talentadore-jobs {
  display: grid;
  gap: 3rem;
  list-style-type: none;
}
.talentadore-jobs .talentadore-job {
  display: flex;
  flex-direction: column;
}
.talentadore-job__image {
  aspect-ratio: 9 / 4;
  display: flex;
  position: relative;
  width: 100%;
  z-index: 0;
}
.talentadore-job__image img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
}
*.talentadore-job__title {
  margin-top: 1rem;
}
.talentadore-job__title,
.talentadore-job__title a {
  font-size: 1.375rem;
  line-height: 1.125;
  text-decoration: none;
}
.talentadore-job__apply {
  border: solid 2px;
  padding: 0.625rem 1.25rem 0.75rem;
  margin-top: auto;
  text-decoration: none !important;
  width: fit-content;
}

@media (min-width: 1000px) {
  .talentadore-jobs {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 999px) {
  .talentadore-jobs {
    max-width: 45rem;
    margin-left: auto;
    margin-right: auto;
  }
}
