.grow-nebraska-fixed {
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 1030;
    font-family: inherit;
}

.grow-nebraska-trigger {
    display: none;
}

.grow-nebraska-panel {
    width: 132px;
    min-height: 128px;
    padding: 14px 10px 12px;
    background: rgba(226, 216, 197, .94);
    border: 1px solid rgba(90, 58, 32, .22);
    border-radius: 18px;
    box-shadow: 0 16px 38px rgba(0, 0, 0, .16);
    text-align: center;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.grow-nebraska-copy {
    margin-bottom: 6px;
    font-family: "Cinzel", serif;
    font-size: .54rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(70, 43, 24, .72);
}

.grow-nebraska-close {
    display: none;
}

.grow-nebraska-fixed .mn-widget-member-logo {
    max-width: 88px !important;
    height: auto !important;
    margin: 0 auto !important;
}

.grow-nebraska-fixed .mn-widget-member-name {
    font-size: 11px !important;
    line-height: 1.15 !important;
    color: #2a2119 !important;
}

@media (max-width: 768px) {
    .grow-nebraska-fixed {
        right: 10px;
        bottom: calc(env(safe-area-inset-bottom, 0px) + 10px);
    }

    .grow-nebraska-trigger {
        position: relative;
        display: flex;
        align-items: center;
        gap: 7px;
        min-width: 106px;
        height: 48px;
        padding: 0 12px 0 8px;
        border: 1px solid rgba(90, 58, 32, .24);
        border-radius: 999px;
        background: rgba(238, 228, 208, .96);
        box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
        cursor: pointer;
        color: #5a351e;
        backdrop-filter: blur(10px);
    }

    .grow-nebraska-trigger::after {
        content: "";
        position: absolute;
        inset: -4px;
        border-radius: inherit;
        border: 1px solid rgba(127, 58, 31, .24);
        opacity: 0;
        animation: growBadgePulse 2.8s ease-out infinite;
        pointer-events: none;
    }

    .grow-nebraska-triggerMark {
        width: 32px;
        height: 32px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: #a6cc3d;
        color: #145f8d;
        font-size: .62rem;
        font-weight: 800;
        letter-spacing: -.04em;
        box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .42);
    }

    .grow-nebraska-triggerText {
        font-family: "Cinzel", serif;
        font-size: .58rem;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: #5a351e;
    }

    .grow-nebraska-panel {
        position: absolute;
        right: 0;
        bottom: 58px;
        width: 176px;
        min-height: auto;
        padding: 16px 12px 13px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px) scale(.96);
        pointer-events: none;
        transition:
            opacity .25s ease,
            transform .25s ease,
            visibility .25s ease;
    }

    .grow-nebraska-fixed.is-open .grow-nebraska-panel {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    .grow-nebraska-close {
        position: absolute;
        top: 5px;
        right: 8px;
        display: grid;
        place-items: center;
        width: 22px;
        height: 22px;
        border: 0;
        background: transparent;
        color: rgba(70, 43, 24, .72);
        font-size: 18px;
        line-height: 1;
        cursor: pointer;
    }

    .grow-nebraska-fixed .mn-widget-member-logo {
        max-width: 82px !important;
    }

    .grow-nebraska-fixed .mn-widget-member-name {
        font-size: 11px !important;
    }
}

@keyframes growBadgePulse {
    0% {
        opacity: .45;
        transform: scale(.98);
    }

    70% {
        opacity: 0;
        transform: scale(1.16);
    }

    100% {
        opacity: 0;
        transform: scale(1.16);
    }
}

@media (prefers-reduced-motion: reduce) {
    .grow-nebraska-trigger::after {
        animation: none;
    }
}