.SpecialListItem {
  position: relative;
  background-color: #fff;
  box-shadow: 0 0 7px rgba(158, 165, 171, 0.7);
  padding: 0 0 calc(125px + 37%);
  overflow: hidden;
  margin-bottom: 2em;
}
.SpecialListItem a {
  color: inherit;
}

.SpecialListItem__photo {
  position: absolute;
  width: 100%;
}
.SpecialListItem__photo__img {
  width: 100%;
  height: auto;
}

.SpecialListItem__overlay {
  position: absolute;
  bottom: 0;
  background-color: #fff;
  padding: 1em 1.5em;
  box-sizing: border-box;
  width: 100%;
}
.SpecialListItem__overlay__title {
  /*margin: 0 90px 0 0;
  font-size: 2em;*/
  margin: 0;
  font-size: 1.6em;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
.SpecialListItem__overlay__location {
  font-size: 1.1em;
  margin: 0 6em 0 0;
}
.SpecialListItem__overlay__price {
  position: relative;
  float: right;
  color: #9ea5ab;
  line-height: 2em;
  margin-left: 1em;
}
.SpecialListItem__overlay__price__old {
  position: absolute;
  top: -1.7em;
  right: 0;
}
.SpecialListItem__overlay__price__old__number {
  color: #7b858e;
  text-decoration: line-through;
}
.SpecialListItem__overlay__price__old__number::before {
  font-family: Open Sans, Arial, Helvetica Neue, Helvetica, sans-serif;
  content: '€';
  margin: 0 .3em 0 0;
}
.SpecialListItem__overlay__price__number {
  font-weight: bold;
  font-size: 1.6em;
  color: #79CAD9;
}
.SpecialListItem__overlay__price__number::before {
  font-family: Open Sans, Arial, Helvetica Neue, Helvetica, sans-serif;
  content: '€';
  margin: 0 .3em 0 .1em;
}
.SpecialListItem__overlay__price__number a {
  text-decoration: none;
}
.SpecialListItem__overlay__date {
  font-size: .9em;
  line-height: 1.8em;
  margin: .5em 0;
}
.SpecialListItem__overlay__date:before {
  float: left;
  font-family: 'ardoer';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.6em;
  content: "\e802";
  margin-right: .3em;
}
.SpecialListItem__overlay__description {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-in;
}
.SpecialListItem:hover .SpecialListItem__overlay__description {
  max-height: 4.2em; /* 3x 1.4em */
}
.SpecialListItem__overlay__description p {
  margin: 0;
}
.SpecialListItem__overlay__button {
  display: none;
  position: absolute;
  right: 1em;
  top: -3em;
  font-size: 1.1em;
}
a.SpecialListItem__overlay__button {
  color: #fff;
}
body.specials .SpecialListItem__overlay__button {
  display: block;
}






@media (max-width: 500px) {
  .SpecialListItem {
    padding: 0 0 calc(170px + 37%);
  }
  .SpecialListItem__overlay {
    padding: 1em .5em;
  }
  .SpecialListItem__overlay__title {
    font-size: 1.8em;
    margin-right: 0;
  }
  .SpecialListItem__photo {
    margin-bottom: 9em;
  }
  .SpecialListItem__overlay__location {
    margin: 0;
  }
  .SpecialListItem__overlay__price {
    float: none;
    text-align: right;
    margin: 0;
  }
  .SpecialListItem__overlay__price__old {
    position: relative;
    float: left;
    right: inherit;
    top: .5em;
  }
  .SpecialListItem__overlay__button {
    position: relative;
    right: inherit;
    top: inherit;
    font-size: inherit;
    margin-top: .5em;
  }


  body.specials .SpecialListItem {
    padding: 0;
  }
  body.specials .SpecialListItem__overlay {
    position: relative;
  }
  body.specials .SpecialListItem__photo {
    position: relative;
    margin-bottom: 0;
  }
  body.specials .SpecialListItem__overlay__description {
    max-height: 4.2em; /* 3x 1.4em */
  }
}