/* curson */
#cursor {
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    pointer-events: none;
    will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
    .cursor__circle {
        background-color: #e07e42;
        width: 15px;
        height: 15px;
        margin-top: -50%;
        margin-left: -50%;
        border-radius: 50%;
        transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1),
            background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
            border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
            width 0.3s cubic-bezier(0.25, 1, 0.5, 1),
            height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    }

    /* Blog Read */
    #cursor.arrow .cursor__circle {
        width: 60px;
        height: 60px;
        background-color: #fff;
    }

    #cursor.arrow::after {
        display: flex;
        color: rgb(0, 0, 0);
        align-items: center;
        justify-content: center;
        font-weight: 600;
        position: absolute;
        left: -50%;
        top: -50%;
        width: 100%;
        height: 100%;
    }


    /* Blog Read */
    #cursor.arrow .cursor__circle {
        width: 20px;
        height: 20px;
        background-color: #fff;
    }



     /* Blog Read */
     #cursor.invertCursor .cursor__circle {
        width: 100px;
        height: 100px;
        background-color: transparent;
        border: 1px solid white;
    }

    #cursor.invertCursor::after {
        display: flex;
        color: rgb(255, 255, 255);
        align-items: center;
        justify-content: center;
        content: 'STORY';
        font-weight: 600;
        position: absolute;
        left: -50%;
        top: -50%;
        width: 100%;
        height: 100%;
    }




    #cursor.subtle .cursor__circle {
        opacity: 0.16;
    }

    #cursor.overlay .cursor__circle {
        width: 48px;
        height: 48px;
        background-color: rgba(227, 222, 193, 0.08);
        border-color: transparent;
    }
}
