.event-wishlist-section {
    padding-top: 55px;
    padding-bottom: 120px;
}
.event-wishlist-section .page-title {
    font-weight: 700;
    font-size: 27px;
    line-height: 30px;
}
.event-wishlist-section .page-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.event-wishlist-section .page-title-wrap .delete-wishlist {
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    transition: 0.3s all ease;
    cursor: pointer;
    background-image: url(../assets/icons/Trash.svg);
    background-size: 20px 20px;
    background-repeat: no-repeat;
    padding-left: 30px;
    background-position: left center;
}
.event-wishlist-section .page-title-wrap .delete-wishlist:hover {
    color:#A22A7D;
}
.event-wishlist-section .events-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;
    margin-top: 35px;
}
@media (max-width: 768px) {
    .event-wishlist-section {
        padding-top: 32px;
        padding-bottom: 80px;
    }
    .event-wishlist-section .page-title {
        font-weight: 700;
        font-size: 20px;
        line-height: 24px;
    }
    .event-wishlist-section .events-grid {
        display: grid;
        gap: 10px;
        grid-template-columns: 1fr;
        margin-top: 24px;
    }
}