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

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

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

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

  .state-heading {
    color: var(--main-color);
    font-size: var(--fs-heading);
    font-weight: 600;
    padding: 0.5rem 0;
    padding-bottom: 1.5rem;
  }
  
  .events-container {
    padding: 0 8px;
  }
  
  .event-card {
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 24px;
    color: var(--secondary-text-color);
    position: relative;
  }
  
  .event-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
  }
  
  .event-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1rem 1.3rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    width: 100%;
  }
  
  .event-title {
    color: #fdd835; /* Yellow color */
    font-size: 1.3rem;
    margin: 0;
    width: 90%;
    font-weight: 400;
  }
  
  .event-date {
    font-size: 1rem;
    color: #ccc;
  }

  .custom-line {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 20px 0;
  }
  
  