
  .container {
  display: flex !important;
  justify-content: center !important;
  align-items: flex-start !important;
  width: 100% !important;
  margin-top: 20px !important;
}
.gallery {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)) !important;
  gap: 20px !important;
  width: 100% !important;
  max-width: 300px !important;
}
.story-image-block {
  width: 300px !important;
  max-width: 100% !important;
  margin: 20px auto !important;
  text-align: center !important;
  border: 1px solid black !important;
  background-color: white !important;
  border-radius: 12px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
  overflow: hidden !important;
  text-align: center !important;
  padding: 0px !important;
  transition: transform 0.3s !important;
}
.story-image-block:hover {
  transform: scale(1.05) !important;
}

.story-image-block img {
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
  height: auto !important;
  margin: 0 auto !important;
  border-radius: 10px !important;
  border-bottom-right-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}

    .story-image-block .caption {
        font-size: 0.95rem !important;
        color: #bfbf00 !important;
        background-color: #222 !important;
        margin: 0 !important;
        padding: 8px 12px !important;  
        font-style: italic !important;
        border-bottom-left-radius: 9px !important;
        border-bottom-left: 1px solid black !important;
        border-bottom-right-radius: 9px !important;
        border-bottom-right: 1px solid black !important;
    }

    .story-image-block img {
        pointer-events: none !important;
        user-select: none !important;
    }
/*
@media (max-width: 900px) {
    
  .story-image-block img {
    max-width: 900px !important;
    border:2px solid red;
  }

}
*/
/* Small screens (max-width: 576px) */
/*
@media (max-width: 480px) {

  .story-image-block img{
    max-width: 600px !important;
    border:2px solid red;
  }
}
*/

