.pear_stories {
  width: 100%;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: stretch;
  margin: 0;
  gap: 36px;
}

.pear_stories__item {
  position: relative;
  list-style: none;
}
.pear_stories__item:first-child {
  flex-basis: 100%;
  margin-top: 0;
  max-height: 551px;
}
.pear_stories__item:first-child picture {
  height: 551px;
}
.pear_stories__item:first-child a {
  width: 100%;
}
.pear_stories__item__tile {
  position: relative;
  background-color: #111212;
  display: flex;
  min-height: 314px;
  height: 100%;
  flex-direction: column;
  width: 363px;
  justify-content: flex-end;
  border-radius: 16px;
  text-decoration: unset;
  overflow: hidden;
  z-index: 0;
}
.pear_stories__item__tile:hover .pear_stories__item__description {
  transform: translateY(-10px);
}
.pear_stories__item__tile:hover .pear_stories__item__headline,
.pear_stories__item__tile:hover .pear_stories__item__category {
  transform: translateY(-60px);
}
.pear_stories__item__tile:hover .pear_stories__item__subdesc {
  transform: translateY(0);
  opacity: 1;
}
.pear_stories__item__tile:hover .pear_stories__item__date {
  opacity: 0;
}
.pear_stories__item__tile:hover .pear_stories__item__picture::before {
  height: 100%;
  max-height: 134px;
}
.pear_stories__item__tile:hover img {
  transform: scale(1.03);
}
.pear_stories__item__date {
  font-size: 12px;
  color: #666;
  margin-top: 10px;
  display: block;
  transition: transform 100ms ease, opacity 100ms ease;
}
.pear_stories__item__category {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
  background-color: #ececec;
  padding: 5px 10px;
  border-radius: 5px;
  display: inline-block;
  padding: 2px 6px;
  text-transform: uppercase;
  width: -moz-fit-content;
  width: fit-content;
  transition: transform 400ms ease, opacity 400ms ease;
}
.pear_stories__item__subdesc {
  margin-top: 10px;
  transition: transform 300ms ease, opacity 300ms ease;
  transform: translateY(100%);
  opacity: 0;
  width: 80%;
  position: absolute;
  padding: 24px 0 0 24px;
  bottom: 0;
  left: 0;
}
.pear_stories__item__picture {
  z-index: 0;
  display: flex;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  display: block;
  font-size: 0;
}
.pear_stories__item__picture::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #111212 100%);
  height: 100%;
  bottom: 0;
  z-index: 2;
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  background-size: 100.1% 100.1%;
  max-height: 236px;
  transition: height 300ms ease, max-height 300ms ease;
}
.pear_stories__item__picture img {
  width: 100%;
  transition: transform 300ms ease;
  position: relative;
  z-index: 1;
}
.pear_stories__item__gradient {
  display: flex;
  height: 100%;
  margin-top: calc(100% - 152px);
  width: 100%;
}
.pear_stories__item__description {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  transition: transform 300ms ease;
}
.pear_stories__item__headline, .pear_stories__item__subdesc, .pear_stories__item__category {
  color: #fff;
}
.pear_stories__item__headline {
  font-size: 19px;
  line-height: 1.21053;
  font-weight: 700;
  transition: transform 300ms ease-out;
}

html.light .pear_stories__item__tile {
  background-color: #000;
}
html.light .pear_stories__item__tile:hover .pear_stories__item__picture::before {
  height: 55%;
  max-height: 134px;
}
html.light .pear_stories__item__date {
  color: #fff;
}
html.light .pear_stories__item__picture::before {
  height: 55%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
}
@media screen and (max-width: 900px) {
  .pear_stories__item__tile {
    width: 100%;
  }
  .pear_stories__item {
    width: 100%;
  }
  .pear_stories__item:first-child picture {
    height: unset;
    /* &::before {
        bottom: unset;
        height: 100%;
        max-height: 100% !important;
    } */
  }
}/*# sourceMappingURL=pear-stories.css.map */