body {
    background-color: rgb(245, 247, 248) !important;
}
.event-hero {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

/* Blurred background */
.event-hero-bg {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-position: center;
    transform: scale(1.15);
    filter: blur(18px) brightness(.55);
    z-index: 0;
}

/* Dark overlay */
.event-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0,0,0,.65),
        rgba(0,0,0,.45)
    );
    z-index: 1;
}

/* Foreground */
.event-hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Featured image */
.event-hero-image img {
    width: 320px;
    /* height: 420px; */
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 30px 60px rgba(0,0,0,.5);
}

/* Details */
.event-hero-content {
    color: #fff;
    max-width: 520px;
}

.event-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: .5rem;
}

.event-meta {
    opacity: .9;
    margin-bottom: 1.5rem;
}

@media (max-width: 480px) {
    .event-hero-bg {
        transform: scale(5.15);
        filter: blur(18px) brightness(.35);
    }
    .event-hero-image img {
        margin-top: 70px;
    }
}
@media (max-width: 768px) {
    .event-top-banner{
        margin-top: 10px;
    }
    .event-hero {
        padding: 0;
        border-radius: 0;
    }

    .event-hero-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .event-hero-image img {
        width: 100%;
        height: 55vh;
        border-radius: 0;
    }

    /* Blur only behind details */
    .event-hero-bg {
        top: 55vh;
        height: calc(100% - 55vh);
    }

    .event-hero::after {
        top: 55vh;
        height: calc(100% - 55vh);
    }

    .event-hero-content {
        padding: 1.2rem;
        margin-top: -60px;
        background: rgba(0,0,0,.45);
        backdrop-filter: blur(10px);
        border-radius: 16px 16px 0 0;
    }

    .event-title {
        font-size: 1.6rem;
    }
}

@media (min-width:768px)  {
    .event-hero{
        margin-top: 120px;
    }
}
.widget-title .title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  position: relative;
  margin-bottom: 0;
  padding-bottom: 18px;
}
.widget-title .title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: #fabc32 ;
  border-radius: 1.5px;
}

