/*!***************************************************************************************************************************************************************************************************!*\
  !*** 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/project-card.scss ***!
  \***************************************************************************************************************************************************************************************************/
.project-card {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(var(--grey-light), 0.3);
  border-radius: 2px;
  background-color: rgb(var(--white));
  box-shadow: 0 1px 0 rgba(var(--grey-light), 0.3);
}
.project-card--sold-out::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(0deg, rgba(var(--background-color-grey), 0.3) 0%, rgba(var(--background-color-grey), 0.5) 60%, rgba(var(--background-color-grey), 0.75) 80%, rgba(var(--background-color-grey), 0.8) 100%);
  z-index: 50;
  pointer-events: none;
}
.project-card a,
.project-card a:hover,
.project-card a:visited,
.project-card a:active {
  text-decoration: none;
  color: rgb(var(--black));
}
.project-card__label {
  position: absolute;
  width: auto;
  max-width: 90%;
  top: 2rem;
  right: 0;
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  color: rgb(var(--white)) !important;
  z-index: 5;
}
.project-card__label span {
  padding: 0.5rem;
  display: block;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1;
  background: rgb(var(--primary-color));
}
.project-card__image {
  width: 100%;
  background-image: url(../../images/icon-no-image.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 5rem;
  background-color: rgb(var(--background-color-grey));
}
.project-card__image figure {
  position: relative;
  padding-top: 60%;
  display: block;
  overflow: hidden;
}
.project-card__image figure img {
  position: absolute;
  width: 100%;
  top: 0;
}
.project-card__slide {
  display: none;
}
.project-card__slide img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  aspect-ratio: 5/3;
}
.project-card__slide:first-child {
  display: block;
}
.project-card__slides {
  height: 100%;
}
.project-card__slides .slick-list {
  height: 100%;
}
.project-card__slides .slick-list .slick-track {
  height: 100%;
}
.project-card__slides:hover .project-card__button-next, .project-card__slides:hover .project-card__button-prev {
  opacity: 0.5;
}
.project-card__slides:hover .project-card__button-next:hover, .project-card__slides:hover .project-card__button-prev:hover {
  opacity: 1 !important;
}
.project-card__content {
  padding-top: 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
}
.project-card__body {
  padding-bottom: 0.8rem;
  margin-bottom: auto;
  flex: 1 0 auto;
}
.project-card__list {
  padding: 0 1.6rem;
  margin-bottom: 0.8rem;
}
.project-card__meta {
  padding-top: 0.8rem;
  margin-top: auto;
  border-top: 1px solid rgba(var(--grey-light), 0.3);
}
.project-card__criteria {
  min-height: 3.7rem;
  padding: 0.8rem 1.6rem;
  font-size: 1.4rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  border-top: 1px solid rgba(var(--grey-light), 0.3);
  overflow: hidden;
}
.project-card__criteria-units {
  padding: 0 0.8rem 0 0.3rem;
}
.project-card__criteria-label {
  padding: 0.16rem 0.64rem;
  margin-right: 0.8rem;
  font-weight: 700;
  border-radius: 2px;
  color: rgb(var(--white));
  background-color: rgb(var(--primary-color-selection));
}
.project-card__criteria-label--sold-out {
  background-color: rgb(var(--black));
}
.project-card__placeholder {
  font-size: 1rem;
  color: rgb(var(--background-color-grey));
  background: rgb(var(--background-color-grey));
}
.project-card__button-next, .project-card__button-prev {
  position: absolute;
  width: 4rem;
  top: 0;
  bottom: 0;
  padding: 0;
  font: 0/0 a;
  text-shadow: none;
  border: 0;
  color: transparent;
  background-color: transparent;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
.project-card__button-next::after, .project-card__button-prev::after {
  content: "";
  position: absolute;
  width: 4rem;
  height: 4rem;
  top: calc(50% - 2rem);
  display: block;
  background-repeat: no-repeat;
  background-size: 70%;
  background-position: center;
  background-image: url(../../images/icon-chevron-down-white.svg);
  z-index: 100;
}
.project-card__button-next {
  right: 0;
}
.project-card__button-next::after {
  transform: rotate(-90deg);
}
.project-card__button-prev {
  left: 0;
}
.project-card__button-prev::after {
  transform: rotate(90deg);
}
