.new-vacancies__items {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0;
  gap: 20px;
}

.new-vacancies__item {
  padding-left: 0;
}

.new-vacancies__item::before {
  display: none;
}


/* new-vacancies-card  */

.new-vacancies-card {
  position: relative;
  z-index: 100;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 30px 32px;
  transition: 0.2s;
  border-radius: 20px;
  background-color: #ffffff;
}

.new-vacancies-card:hover {
}

.new-vacancies-card > a {
  display: flex;
  align-items: center;
  width: 100%;
  height: auto;
  transition: all 300ms;
  text-decoration: none;
}

.new-vacancies-card__link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  gap: 4px;
}

.new-vacancies-card__image-wrap {
  align-self: flex-end;
}

.new-vacancies-card__content {
  width: 100%;
  height: auto;
}

.new-vacancies-card__content--top {
  display: flex;
  justify-content: space-between;
}

.new-vacancies-card__title {
  font-size: 24px;
  font-weight: 400;
  line-height: 22px;
  align-items: center;
  margin-bottom: 0;
  color: #000000;
}

.new-vacancies-card__salary {
  font-size: 22px;
  line-height: 110%;
  color: #AAB4B6
}

a:visited .new-vacancies-card__title {
  color: #ACB4B6;
}

.new-vacancies-card__viewed {
  font-size: 12px;
  text-align: right;
  color: #FFFFFF;
}

a:visited .new-vacancies-card__viewed {
  color: #ACB4B6;
}

.new-vacancies-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 20px;
}

.new-vacancies-card__bottom > a {
  height: 17px;
}

.new-vacancies-card__breadcrumbs {
  display: flex;
  flex-flow: row wrap;
  padding-right: 40px;
  row-gap: 10px;
  gap: 8px;
}

.new-vacancies-card__breadcrumbs--absolute {
  position: absolute;
  bottom: 20px;
}

.new-vacancies-card__breadcrumb--absolute {
  padding: 10px !important;
}

.new-vacancies-card__breadcrumb a {
  text-decoration: none;
}

.new-vacancies-card__breadcrumb:first-of-type::after {
  display: none;
}

.new-vacancies-card__breadcrumb::before {
  display: none;
}

@media (max-width: 576px) {
  .new-vacancies-card__content {
    order: 2;
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .vacancies-sort__menus-wrapper .vacancies-filter__reset {
    display: none;
  }
}

.new-vacancies-card__breadcrumb.company-certificated {
  border-color: rgba(189, 12, 30, 0.3);
}

.new-vacancies-card__breadcrumb {
  font-size: 14px;
  font-weight: 300;
  line-height: 110%;
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 8px 12px;
  color: #121217;
  border: solid 1px #F2F2F2;
  border-radius: 15px;
  background: #ffffff;
}

.new-vacancies-card__breadcrumb.new-vacancies-card__breadcrumb--recommend {
  display: flex;
  color: #ffffff;
  background: linear-gradient(169.76deg, rgba(189, 12, 30, 0.68) 32.45%, rgba(209, 30, 159, 0.85) 52.46%, rgba(189, 12, 30, 0.697) 82.46%, rgba(189, 12, 30, 0.85) 86.52%);
  gap: 4px;
}

.new-vacancies-card__breadcrumb.new-vacancies-card__breadcrumb--recommend a {
  color: #ffffff;
}

.new-vacancies-card__breadcrumb.new-vacancies-card__breadcrumb--recommend::after {
  width: 12px;
  height: 8px;
  content: '';
  background: url(./images/double-arrow.svg) no-repeat center;
  background-size: contain;
}

.new-vacancies-card__image {
  width: 100%;
  max-width: 120px;
  max-height: 39px;
  object-fit: contain;
}

.new-vacancies-card__logo-wrapper {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  max-width: 120px;
  height: auto;
}

.new-vacancies-card__wrap {
  display: flex;
  align-items: stretch;
  flex-direction: row;
  justify-content: stretch;
  gap: 5px;
}

.vacancy__favorite {
  position: absolute;
  right: 32px;
  bottom: 32px;
}

@media (max-width: 576px) {
  .new-vacancies__items {
    gap: 10px;
  }

  .new-vacancies-card__breadcrumb {
    font-size: 12px;
    padding: 3px 8px;
  }

  .new-vacancies-card__logo-wrapper {
    align-items: stretch;
    justify-content: space-between;
    order: 1;
    width: 100%;
    max-width: none;
  }

  .new-vacancies-card__image-wrap {
    display: flex;
    overflow: hidden;
    align-items: center;
    width: 80px;
    height: 45px;
    padding: 6px;
    border-radius: 8px;
    background-color: #F3F3F3;
  }

  .new-vacancies-card__image-wrap .new-vacancies-card__image {
    width: 100%;
    height: 100%;
  }

  .new-vacancies-card__wrap {
    flex-direction: column;
    gap: 16px;
  }

  .new-vacancies-card {
    padding: 33px 16px 16px 16px;
  }

  .new-vacancies-card__salary {
    font-size: 14px;
  }

  .vacancy__favorite {
    right: 16px;
    bottom: 16px;
  }

  .new-vacancies-card__breadcrumbs {
    padding-right: 30px;
  }
}

