/* ====================================
   Custom Explore Button
==================================== */

.mew-button-wrapper {
    display: inline-block;
}

.mew-explore-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    gap: 18px;

    /* min-height: 56px; */

    padding: 5px 5px 5px 30px;

    background: #c8f52b;

    border-radius: 100px;

    text-decoration: none;

    font-family: 'Plus Jakarta Sans', sans-serif;

    font-size: 16px;
    font-weight: 700;

    line-height: 1;

    color: #111;

    transition: all 0.3s ease;
}


/* Button Text */

.mew-button-text {
    display: inline-block;
    white-space: nowrap;
}


/* Circle Icon */

.mew-button-icon {

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #242424;

    color: #fff;

    font-size: 22px;
    font-weight: 400;

    line-height: 1;

    transition: all 0.3s ease;
}


/* Hover */

.mew-explore-button:hover {
    background: #b9e921;
    color: #111;
}


/* Arrow Hover */

.mew-explore-button:hover .mew-button-icon {
    transform: rotate(45deg);
}