.edu-space {
    position: relative;
    background-color: #F5AC37; /* цвет фона */
    padding: 6vh 4vw 8vh;
    overflow: hidden;
    color: #111;
    font-family: 'Inter', sans-serif;
    z-index: 1;
    margin-top: -10px;
}

.edu-space__container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 4vw;
}

.edu-space__title {
    font-weight: 700;
    font-size: 4.5vw;
    margin-bottom: 1vh;
    color: #231f20;
}

.edu-space__subtitle {
    font-size: 2.6vw;
    margin: 2.5vw auto 4vh auto;
    color: #231f20;
    max-width: 70vw;
}

.edu-space__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3vw;
    margin-top: 6vw;
}

.edu-space__item {
    background: #f9eedc;
    border-radius: 12px;
    padding: 2.5vw 2vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.3vw;
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.07);
    cursor: default;
    user-select: none;
    transition: transform 0.3s ease;
    aspect-ratio: 5 / 3;
}

.edu-space__item:hover {
    transform: translateY(-6px);
}

.edu-space__icon {
    width: 4vw;
    height: 4vw;
    fill: #231f20;
    flex-shrink: 0;
}

.edu-space__icon img {
    width: 100%;
    height: 100%;
}

.edu-space__item p {
    font-size: 1.4vw;
    line-height: 1.4;
    color: #231f20;
    margin: 0;
}

/* SVG фон */

.edu-space__bg-svg {
    position: absolute;
    top: 6vw;
    right: 0;
    width: 86vw;
    height: auto;
    opacity: 1;
    pointer-events: none;
    user-select: none;
    z-index: 1;
}

/* ========== MOBILE ========== */

@media (max-width: 768px) {

    .edu-space__title {
        font-size: 8vw;
    }

    .edu-space__subtitle {
        font-size: 4vw;
        max-width: 90vw;
        margin-bottom: 6vw;
    }

    .edu-space__grid {
        grid-template-columns: 1fr;
        gap: 6vw 5vw;
    }

    .edu-space__item {
        padding: 5vw 3vw;
        gap: 4vw;
    }

    .edu-space__icon {
        width: 10vw;
        height: 10vw;
    }

    .edu-space__item p {
        font-size: 4vw;
    }

    .edu-space__bg-svg {
        width: 120vw;
        top: -20%;
        right: -40%;
        opacity: 0.07;
    }

    .edu-space__item {
        aspect-ratio: initial;
    }
}
