.finance-focus {
    max-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden
}

.focus-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.focus-container {
    position: relative;
    display: inline-block;
    overflow: visible;
}

.focused-text {
    font-size: 2rem;
    font-weight: 500;
    text-transform: uppercase;
}

.focus-blur-text {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
}

.blurred-text {
    filter: blur(3px);
    position: relative;
    overflow: visible;
}

.glass-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: visible;
}

.glass {
    position: absolute;
    width: 40px;
    height: 100%;
    pointer-events: none;
    background: rgba(24, 24, 27, 0.5);
    border-radius: 10px;
    /* border: 2px solid rgba(9, 9, 11, 0.5); */
}

.clear-text {
    position: absolute;
    top: 0;
    left: 0;
}

.hide-blur {
    display: none;
}

@media (max-width: 450px) {
    .focused-text {
        font-size: 1.5rem;
    }

    .focus-blur-text {
        font-size: 1.5rem;
    }
}
