/* Hide extra highlight columns */
.highlights-grid .et_pb_column.hl-is-hidden {
    display: none !important;
}

/* Load More Button Styling */
.hl-loadmore-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
}
.hl-loadmore-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    background: transparent;
    color: #F58232;
    border: 1px solid #F58232;
    border-radius: 50px;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease;
}
.hl-loadmore-btn:hover {
    background: #F58232;
    color: #ffffff;
}
.hl-loadmore-wrap.is-hidden {
    display: none !important;
}