.cw-lfo {
    --cw-lfo-stage-pad: 24px;
    --cw-lfo-item-gap: 18px;
    --cw-lfo-edge-overlap: 48px;
    position: relative;
    width: 100%;
    min-height: 620px;
    overflow: hidden;
    isolation: isolate;
    font-family: inherit;
}

.cw-lfo *,
.cw-lfo *::before,
.cw-lfo *::after {
    box-sizing: border-box;
}

.cw-lfo__central {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    width: 52%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.cw-lfo__central img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: contain;
}

.cw-lfo__items {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.cw-lfo__item {
    position: absolute;
    top: 0;
    left: 0;
    width: 170px;
    min-height: 132px;
    padding: 18px 16px;
    --cw-lfo-glass-tint: rgba(255, 255, 255, 0.30);
    --cw-lfo-glass-border: rgba(255, 255, 255, 0.62);
    --cw-lfo-glass-blur: 18px;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid var(--cw-lfo-glass-border);
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.08) 47%, rgba(218, 231, 255, 0.14) 100%),
        var(--cw-lfo-glass-tint);
    -webkit-backdrop-filter: blur(var(--cw-lfo-glass-blur)) saturate(150%) contrast(103%);
    backdrop-filter: blur(var(--cw-lfo-glass-blur)) saturate(150%) contrast(103%);
    box-shadow:
        0 18px 42px rgba(31, 70, 150, 0.14),
        0 4px 12px rgba(31, 70, 150, 0.08),
        inset 1px 1px 0 rgba(255, 255, 255, 0.80),
        inset -1px -1px 0 rgba(93, 130, 207, 0.10);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transform: translate3d(0, 0, 0);
    transition: left 420ms cubic-bezier(.2, .7, .2, 1), top 420ms cubic-bezier(.2, .7, .2, 1), opacity 180ms ease;
    pointer-events: auto;
    will-change: left, top;
}

.cw-lfo.is-laid-out .cw-lfo__item {
    opacity: 1;
}

.cw-lfo__item::before,
.cw-lfo__item::after {
    content: "";
    position: absolute;
    pointer-events: none;
}

.cw-lfo__item::before {
    inset: 0;
    z-index: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 16% 10%, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.22) 24%, transparent 46%),
        linear-gradient(118deg, rgba(255, 255, 255, 0.26) 0%, transparent 34%, rgba(255, 255, 255, 0.07) 60%, transparent 82%);
    opacity: 0.78;
}

.cw-lfo__item::after {
    right: 12%;
    bottom: -8px;
    left: 12%;
    z-index: 0;
    height: 24px;
    border-radius: 50%;
    background: rgba(130, 166, 230, 0.18);
    filter: blur(10px);
}

.cw-lfo__graphic,
.cw-lfo__title {
    position: relative;
    z-index: 1;
}

.cw-lfo__graphic {
    --cw-lfo-graphic-size: 42px;
    width: var(--cw-lfo-graphic-size);
    height: var(--cw-lfo-graphic-size);
    flex: 0 0 var(--cw-lfo-graphic-size);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.cw-lfo__graphic--icon {
    color: #00bfae;
    font-size: var(--cw-lfo-graphic-size);
}

.cw-lfo__graphic--icon i,
.cw-lfo__graphic--icon svg {
    display: block;
    width: var(--cw-lfo-graphic-size);
    height: var(--cw-lfo-graphic-size);
    font-size: var(--cw-lfo-graphic-size);
    fill: currentColor;
}

.cw-lfo__graphic--image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cw-lfo__title {
    width: 100%;
    margin: 0;
    color: #102463;
    font-family: inherit;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.65;
    text-align: center;
    overflow-wrap: anywhere;
}

.elementor-editor-active .cw-lfo,
.elementor-editor-preview .cw-lfo {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .cw-lfo {
        --cw-lfo-stage-pad: 18px;
        min-height: 560px;
    }

    .cw-lfo__central {
        width: 55%;
    }

    .cw-lfo__central img {
        max-height: 360px;
    }

    .cw-lfo__item {
        width: 155px;
        min-height: 120px;
    }

    .cw-lfo__title {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .cw-lfo {
        --cw-lfo-stage-pad: 10px;
        min-height: 640px;
    }

    .cw-lfo__central {
        width: 62%;
    }

    .cw-lfo__central img {
        max-height: 300px;
    }

    .cw-lfo__item {
        width: 138px;
        min-height: 112px;
        padding: 14px 10px;
        border-radius: 16px;
    }

    .cw-lfo__title {
        font-size: 14px;
        line-height: 1.55;
    }
}

@media (prefers-reduced-motion: reduce) {
    .cw-lfo__item {
        transition: none;
    }
}
