/*!***************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./slicing/src/scss/wt-components/vacancy-list.scss ***!
  \***************************************************************************************************************************************************************************************************/
.vacancy-list {
  padding: 6.4rem 1.6rem;
}
.vacancy-list img {
  max-width: 100%;
}
.vacancy-list__wrapper {
  max-width: 128rem;
  margin: 0 auto;
}
.vacancy-list__region-title {
  margin-bottom: 3.2rem;
  text-align: center;
}
.vacancy-list__empty {
  padding: 0 0.8rem;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .vacancy-list__empty {
    width: 33.33333%;
  }
}
.vacancy-list__blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
  justify-content: center;
}
.vacancy-list__block {
  width: 100%;
  display: inline-block;
  border: 1px solid rgba(var(--grey-light), 0.2);
  background-color: rgba(var(--white), 0.2);
  transition: all 0.2s ease-in;
}
.vacancy-list__block:hover {
  text-decoration: none;
  background-color: rgba(var(--background-color-grey), 0.75);
  cursor: pointer;
}
@media only screen and (min-width: 768px) {
  .vacancy-list__block {
    width: calc(50% - 0.8rem);
  }
}
@media only screen and (min-width: 992px) {
  .vacancy-list__block {
    width: calc(33.3333% - 1.0667rem);
    /* one item */
    /* two items */
    /* three items */
    /* four items */
    /* five items */
  }
  .vacancy-list__block:first-child:nth-last-child(1) {
    width: calc(50% - 0.8rem);
  }
  .vacancy-list__block:first-child:nth-last-child(2), .vacancy-list__block:first-child:nth-last-child(2) ~ .vacancy-list__block {
    width: calc(50% - 0.8rem);
  }
  .vacancy-list__block:first-child:nth-last-child(3), .vacancy-list__block:first-child:nth-last-child(3) ~ .vacancy-list__block {
    width: calc(33.3333% - 1.0667rem);
  }
  .vacancy-list__block:first-child:nth-last-child(4), .vacancy-list__block:first-child:nth-last-child(4) ~ .vacancy-list__block {
    width: calc(50% - 0.8rem);
  }
  .vacancy-list__block:first-child:nth-last-child(5), .vacancy-list__block:first-child:nth-last-child(5) ~ .vacancy-list__block {
    width: calc(33.3333% - 1.0667rem);
  }
}
.vacancy-list__media {
  background-image: url(../../images/icon-no-image.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50px;
  background-color: rgb(var(--background-color-grey));
}
.vacancy-list__img-mask {
  position: relative;
  padding-top: 60%;
}
.vacancy-list__img-mask img {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  object-fit: cover;
}
.vacancy-list__text {
  padding: 1.6rem;
}
@media only screen and (min-width: 992px) {
  .vacancy-list__text {
    padding: 3.2rem;
  }
}
.vacancy-list__title {
  margin-bottom: 1.2rem;
  color: rgb(var(--grey-dark));
  text-decoration: none;
}
.vacancy-list__summary {
  display: -webkit-box;
  text-decoration: none;
  font-weight: normal;
  color: rgb(var(--black));
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vacancy-list__link {
  margin: 0;
  margin-top: auto;
}
.vacancy-list__link:hover {
  text-decoration: underline;
}
