.heading {
    display: flex;
    border-bottom: 1px solid #ccc;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem;
    font-size: var(--fs-heading);
    position: relative;
  }

.search-icon{
  position: absolute;
  right: 26px;
  width: 30px;
  top: 21px;
}

  .subheading {
    /* font-size: var(--fs-heading);
    font-weight: 400; */

    margin: 1rem 0;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 30px;
  }

    .state-section {
    margin-bottom: 3.5rem;
  }

  .state-heading {
      text-align: left;
      font-weight: 400;
      font-size: 1.5rem;
      color: var(--main-color);
      margin: 0.8rem 0rem;
  }





/* Always show scrollbar on body or a specific container */
.container {
  overflow-y: auto;
}

/* Chrome, Edge, Safari (WebKit browsers) */
/* ::-webkit-scrollbar {
  width: 10px;
} */

 /* ::-webkit-scrollbar-track {
  background: #f1f1f1;
} */

/* ::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 6px;
  border: 3px solid #f1f1f1;
} */

/* Optional: when hovering */
/* ::-webkit-scrollbar-thumb:hover {
  background: #555;
}  */




 /* Content */
  .story-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .story-item {
    flex: 0 0 calc(33.333% - 8px); /* Adjust based on gap */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: #000;
    position: relative;
  }
  
  .story-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
  }
  

  .story-caption {
    position: absolute;
    bottom: 0;
    width: -webkit-fill-available;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    color: #ffe44d;
    padding: 0.4rem;
    font-size: 1rem;
    font-weight: 500;    
  }