.lsc-eye-icon-stats {
    --lsc-eye-text: #182c3f;
    --lsc-eye-muted: #557083;
    --lsc-eye-line: #d9e5ec;
    --lsc-eye-accent: #1f8fa3;
    --lsc-eye-accent-soft: #e6f5f7;
    --lsc-eye-title-size: 22px;
    --lsc-eye-subtitle-size: 16px;
    padding: 48px 0;
}

.lsc-eye-icon-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.lsc-eye-icon-stats__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    padding: 18px 24px;
    text-align: center;
}

.lsc-eye-icon-stats__item + .lsc-eye-icon-stats__item {
  
}

.lsc-eye-icon-stats__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: var(--lsc-eye-accent);
    background: var(--lsc-eye-accent-soft);
}

.lsc-eye-icon-stats__icon svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: currentColor;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.lsc-eye-icon-stats h2.lsc-eye-icon-stats__title,
.lsc-eye-icon-stats .lsc-eye-icon-stats__title {
    max-width: 270px;
    margin: 0 !important;
    padding: 0 !important;
    color: var(--lsc-eye-text) !important;
    font-family: inherit;
    font-size: var(--lsc-eye-title-size) !important;
    font-style: normal !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}

.lsc-eye-icon-stats h2.lsc-eye-icon-stats__title span,
.lsc-eye-icon-stats .lsc-eye-icon-stats__title span {
    display: block;
}

.lsc-eye-icon-stats h2.lsc-eye-icon-stats__title span + span,
.lsc-eye-icon-stats .lsc-eye-icon-stats__title span + span {
    margin-top: 5px;
    color: var(--lsc-eye-muted) !important;
    font-size: var(--lsc-eye-subtitle-size) !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
}

@media (max-width: 991px) {
    .lsc-eye-icon-stats__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 28px;
    }

    .lsc-eye-icon-stats__item:nth-child(odd) {
        border-left: 0;
    }

    .lsc-eye-icon-stats__item:nth-child(n+3) {
        border-top: 1px solid var(--lsc-eye-line);
        padding-top: 32px;
    }
}

@media (max-width: 575px) {
    .lsc-eye-icon-stats {
        padding: 34px 0;
    }

    .lsc-eye-icon-stats__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0;
        padding: 0 14px;
    }

    .lsc-eye-icon-stats__item {
        padding: 22px 12px;
        border-left: 0;
    }

    .lsc-eye-icon-stats__item:nth-child(even) {
        border-left: 1px solid var(--lsc-eye-line);
    }

    .lsc-eye-icon-stats__item:nth-child(n+3) {
        border-top: 1px solid var(--lsc-eye-line);
    }

    .lsc-eye-icon-stats {
        --lsc-eye-title-size: 21px;
    }

    .lsc-eye-icon-stats__icon {
        width: 62px;
        height: 62px;
        margin-bottom: 14px;
    }

    .lsc-eye-icon-stats__icon svg {
        width: 36px;
        height: 36px;
    }
}
