.elementor-4833 .elementor-element.elementor-element-9d68bcb{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:1vw;--margin-bottom:0vw;--margin-left:0vw;--margin-right:0vw;}/* Start custom CSS for html, class: .elementor-element-7ab0c4b */@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

    #body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      padding: 30px;
      background-color: #ffffff;
    }

    .event-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      max-width: 80vw;
      margin: auto;
    }

    .event-card {
    background-color: #fff;
      border: 0px solid #f2debd;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease,background-color 0.3s ease;
      position: relative;
    }
.event-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    
    }
    .event-gradient-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: radial-gradient(
    ellipse at bottom right,
    rgba(242, 222, 189, 0.45) 0%,
    rgba(242, 222, 189, 0.2) 40%,
    transparent 80%
  );
  pointer-events: none;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  z-index: 1;
  transition: background 0.3s ease;
}


    .event-image img {
      width: 100%;
      height: 230px;
       z-index: 2;
      object-fit: cover;
    }

    .event-info {
      background-color: #ffffff;
      padding: 20px;
      z-index: 2;
    }

    .event-title {
      font-size: 20px;
      font-weight: 600;
      color: #820000;
      z-index: 2;
      margin-bottom: 10px;
    }

    .event-dates {
        z-index: 2;
      font-size: 14px;
      color: #a22729;
      margin-bottom: 18px;
      padding-left:5px;
    }

    .see-more-badge {
      display: inline-flex;
      background-color: #f2debd;
      color: #820000;
      padding: 8px 18px;
      font-size: 13px;
      font-weight: 500;
      text-decoration: none;
      border-radius: 50px;
      transition: 0.3s ease;
      border: 1px solid #820000;
      gap: 10px;
      align-items: center;
    }
    

    .see-more-badge:hover {
      background-color: #820000;
      color: #f2debd;
    }

    @media (max-width: 767px) {
      .event-title {
        font-size: 18px;
      }

      .see-more-badge {
        padding: 7px 16px;
        font-size: 12px;
      }
    }/* End custom CSS */