/*!*************************************************************************************************************************************************************************************************!*\
  !*** 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/event-card.scss ***!
  \*************************************************************************************************************************************************************************************************/
.event-card__wrapper {
  position: relative;
  min-height: 8.5rem;
  overflow: hidden;
  border: 1px solid rgba(var(--grey-light), 0.3);
  border-radius: 2px;
  box-shadow: 0 1px 0 rgba(var(--grey-light), 0.3);
  background-color: rgb(var(--white));
}
.event-card__corner {
  position: absolute;
  width: 20rem;
  height: 6rem;
  top: -1rem;
  left: -8rem;
  z-index: 5;
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  color: rgb(var(--white));
  background-color: rgb(var(--primary-color));
  transform: rotate(-45deg);
}
.event-card__corner span {
  position: relative;
  width: 10rem;
  top: 70%;
  left: 5rem;
  display: block;
  text-align: center;
  font-size: 1.6rem;
  line-height: 1;
  transform: translateY(-50%);
}
.event-card__inner {
  display: flex;
}
@media only screen and (min-width: 992px) {
  .event-card__inner:hover .event-card__image::after {
    background: transparent;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
}
.event-card__image {
  width: 12.5rem;
  height: 100%;
  min-height: 12rem;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-bottom: 0.5rem solid rgb(var(--primary-color));
}
@media only screen and (min-width: 992px) {
  .event-card__image::after {
    content: "";
    position: absolute;
    width: 12.5rem;
    height: 100%;
    min-height: 12rem;
    background: rgba(var(--white), 0.2);
    transition: all 0.3s ease-out;
  }
}
.event-card__content {
  padding: 1.6rem 0.8rem 0.8rem 1.6rem;
  flex-grow: 1;
}
.event-card__title {
  margin-bottom: 0.8rem;
  font-size: 1.8rem;
  text-transform: uppercase;
  color: rgb(var(--black));
  overflow: hidden;
  text-overflow: ellipsis;
}
.event-card__title a {
  color: rgb(var(--black));
}
.event-card__title a:hover {
  text-decoration: none;
}
.event-card__subtitle {
  margin-bottom: 0;
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: none;
  color: rgb(var(--primary-color));
}
.event-card__date {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(var(--black), 0.8);
}
.event-card__meta {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(var(--grey-light), 0.3);
}
.event-card__address {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0;
  font-size: 90%;
  line-height: 1.6rem;
  color: rgb(var(--black));
}
.event-card__address::before {
  content: "";
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  top: 0.2rem;
  left: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-image: url(../../images/icon-location.svg);
}
.event-card__address a {
  color: rgb(var(--black));
}
.event-card__address a:hover {
  text-decoration: underline;
}
