.stories-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 var(--side-padding);
}

.stories-item {
  width: calc(50% - 6px);
  margin: 0 0 48px;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 769px) {
  .stories-item {
    opacity: 1;
  }
}
.stories-item:hover {
  opacity: 0.5;
}

@media only screen and (max-width: 769px) {
  .stories-item {
    width: 100%;
  }
}
.stories-item__heading {
  display: flex;
  justify-content: space-between;
  margin: 0 0 16px;
  font-size: 13px;
}

.stories-item__title {
  display: flex;
  padding: 6px 0 0;
  width: calc(33.333% - 2px);
  border-top: 1px solid #9e9e9e;
  min-width: 160px;
  margin-right: 10px;
}

@media only screen and (max-width: 769px) {
  .stories-item__title {
    line-height: 1.2;
  }
}
.stories-item__title .number {
  width: 40px;
}

.stories-item__title .title {
  width: calc(100% - 40px);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

.stories-item__excerpt {
  width: calc(66.667% - 2px);
  min-height: 66px;
  padding: 6px 0 0;
  border-top: 1px solid #9e9e9e;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}

@media only screen and (max-width: 769px) {
  .stories-item__excerpt {
    line-height: 1.3;
    min-height: 56px;
  }
}
.stories-item__img {
  display: flex;
  justify-content: space-between;
}
.stories-item__img .img-holder {
  position: relative;
  font-size: 0;
  display: block;
  padding: 0;
  height: auto;
}
.stories-item__img .img-holder .inner-holder {
  position: relative;
  height: auto;
  width: 100%;
}
.stories-item__img .img-holder .inner-holder picture,
.stories-item__img .img-holder .inner-holder img {
  transition: all 0.3s ease-in-out;
  position: absolute;
  object-fit: cover;
  object-position: center;
}
.stories-item__img .story-img {
  width: calc(70% - 2px);
}
.stories-item__img .story-img .inner-holder::before {
  content: "";
  display: block;
  padding-top: 57%;
}
.stories-item__img .story-img .inner-holder picture,
.stories-item__img .story-img .inner-holder img {
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.stories-item__img .watch-img {
  width: calc(30% - 2px);
  background-color: #f1f1f1;
}
.stories-item__img .watch-img .inner-holder::before {
  content: "";
  display: block;
  padding-top: 133.8%;
}
.stories-item__img .watch-img .inner-holder picture,
.stories-item__img .watch-img .inner-holder img {
  position: absolute;
  top: 10%;
  height: 80%;
  left: 4%;
  width: 92%;
}

@media only screen and (min-width: 1921px) {
  .custom-h2 {
    font-size: 20px !important;
  }
  .stories-item__title .title {
    overflow: unset;
  }
  .stories-item__heading {
    font-size: 16px;
  }
}

/*# sourceMappingURL=stories.css.map */
