 .story {
   padding: 40px 0;
}
 .story__title {
  margin-top: 12px;
   text-align: center;
}
 .story__desc {
   text-align: center;
   margin-top: 12px;
}
 .story__grid {
   display: flex;
   gap: 24px;
   overflow-y: auto;
   margin-top: 20px;
}
 .story__btn {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 8px;
   color: #000;
   font-size: 16px;
   font-weight: 500;
   line-height: 24px;
   padding: 12px 24px;
   border-radius: 12px;
   background-color: transparent;
   border: 1px solid #000;
   margin-top: 20px;
   transition: 0.3s color, 0.3s background-color, 0.3s border;
}
 .story__btn svg {
   width: 24px;
   height: 24px;
   fill: #000;
   transition: 0.3s fill;
}
 .story__btn:hover {
   background-color: #275894;
   color: #fff;
   border: 1px solid #275894;
}
 .story__btn:hover svg {
   fill: #fff;
}
 @media screen and (min-width: 992px) {
   .story {
     padding: 64px 0;
  }
   .story__desc {
     margin-top: 16px;
  }
   .story__grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     overflow-y: unset;
     margin-top: 48px;
  }
   .story__btn {
     width: fit-content;
     margin: 48px auto 0;
  }
}
 
.story-card {
  min-width: 294px;
}


.story-card__picture {
  display: block;
}

.story-card .story-card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  filter: grayscale(100%);
}
.story-card:hover .story-card__img {
  filter: grayscale(0%);
}
.story-card__title {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  margin-top: 16px;
}

.story-card__date {
  color: #757575;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: -0.14px;
  margin-top: 8px;
}