.endo-about-ecosystem {
    padding: 110px 0 120px;
    background:
        linear-gradient(
            180deg,
            #f8f4f6 0%,
            #f6e5ee 100%
        );
}


/* Intro */

.endo-about-ecosystem__intro {
    display: grid;
    grid-template-columns:
        minmax(0, .85fr)
        minmax(0, 1.15fr);
    gap: clamp(56px, 7vw, 90px);
    width: 100%;
    align-items: start;
}

.endo-about-ecosystem__title {
    margin: 0;
    color: var(--text);
    font-size: 32px;
    line-height: 40px;
    font-weight: 800;
    letter-spacing: -.03em;
}

.endo-about-ecosystem__title span {
    display: block;
    color: var(--blue);
}

.endo-about-ecosystem__description {
    width: 100%;
    max-width: 570px;
    margin: 0;
    color: var(--text);
    font-size: 14px;
    line-height: 20px;
    letter-spacing: .25px;
}


/* Principles */

.endo-about-ecosystem__principles {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin: 64px 0 0;
    padding: 0;
    list-style: none;
}

.endo-about-ecosystem__principle {
    display: flex;
    min-height: 62px;
    gap: 16px;
    padding: 20px 22px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 30px;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .94);
    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, .025);
    transition:
        transform .3s
        cubic-bezier(.22, 1, .36, 1),
        box-shadow .3s ease,
        background-color .3s ease;
}

.endo-about-ecosystem__icon {
    flex: 0 0 auto;
    color: var(--blue);
    font-size: 28px;
}

.endo-about-ecosystem__label {
    color: var(--text);
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    letter-spacing: .1px;
}


/* Hover */

@media (hover: hover) {
    .endo-about-ecosystem__principle:hover {
        background: #fff;
        box-shadow:
            0 18px 44px
            rgba(0, 0, 0, .06);
        transform: translateY(-4px);
    }
}


/* Responsive */

@media (max-width: 800px) {
    .endo-about-ecosystem {
        padding: 86px 0 92px;
    }

    .endo-about-ecosystem__intro {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .endo-about-ecosystem__description {
        max-width: 620px;
    }

    .endo-about-ecosystem__principles {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
        margin-top: 50px;
    }
}

@media (max-width: 520px) {
    .endo-about-ecosystem {
        padding: 68px 0 76px;
    }

    .endo-about-ecosystem__title {
        font-size: 28px;
        line-height: 35px;
    }

    .endo-about-ecosystem__principles {
        gap: 12px;
        margin-top: 40px;
    }

    .endo-about-ecosystem__principle {
        min-height: 72px;
        gap: 10px;
        padding: 14px;
        border-radius: 16px;
    }

    .endo-about-ecosystem__icon {
        font-size: 26px;
    }
}


/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    .endo-about-ecosystem__principle {
        transition: none;
    }
}