.nase-btn-wrapper-d27d272d {
    display: inline-block;
}

.nase-btn-d27d272d {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    cursor: pointer;
    padding: 1rem 2.5rem;
    background-color: #2d2a26;
    color: #fff;
    font-weight: 500;
}

.nase-btn-text-container-d27d272d {
    display: flex;
    flex-direction: column;
    /* Adjusted speed slightly given the longer travel distance */
    transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
    will-change: transform;
}

.nase-btn-text-d27d272d {
    display: block;
    line-height: 1.2;
}

.nase-btn-text-clone-d27d272d {
    position: absolute;
    /* Increased distance to fully hide descenders like 'p', 'g' */
    top: calc(100% + 15px);
    left: 0;
    width: 100%;
    text-align: inherit;
}

.nase-btn-d27d272d:hover .nase-btn-text-container-d27d272d {
    /* Transform completely considering the added 15px gap */
    transform: translateY(calc(-100% - 15px));
}