.partnership {
    background: #f4f3ed;
    padding-bottom: 110px;
    position: relative;
}

.partnership__card {
    position: relative;
    display: flex;
    background: #fff;
    border: 1px solid #e0e2eb;
    border-radius: 28px;
    box-shadow: 0 16px 40px rgba(11, 11, 20, 0.02);
    max-width: 920px;
    margin-left: auto;
    margin-right: auto;
}

.partnership__content {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.partnership__title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 1.12;
    letter-spacing: -0.42px;
    color: #111110;
}

.partnership__text {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #3a3a36;
}

.partnership__text--bold {
    font-weight: 700;
}

.partnership__visual {
    width: 240px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partnership__visual-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 28px 28px 0;
}

.partnership__visual-img.mobile {
    display: none;
}

.partnership__visual-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.partnership__logos {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.partnership__logo {
    height: 30px;
    width: auto;
}

.partnership__logo--mipt {
    height: 53px;
}

.partnership__logo--techpred {
    height: 33px;
}

.partnership__logox {
    font-family: 'Unbounded', sans-serif;
    font-weight: 400;
    font-size: 21.92px;
    line-height: 1;
    color: #8f8e85;
}


.partnership__decor {
    position: absolute;
    pointer-events: none;
}

.partnership__decor.top {
    height: 300px;
    width: auto;
    position: absolute;
    z-index: 1;
    top: -100px;
    left: -160px;
}

.partnership__decor.bottom {
    height: 300px;
    width: auto;
    position: absolute;
    z-index: 1;
    bottom: -210px;
    right: -120px;
}

@media (max-width: 1024px) {
    .partnership {
        padding-bottom: 80px;
    }

    .partnership__title {
        font-size: 32px;
    }

    .partnership__content {
        padding: 32px;
    }

    .partnership__visual {
        width: 180px;
    }

    .partnership__decor.top {
        height: 200px;
        top: -60px;
        left: -100px;
    }

    .partnership__decor.bottom {
        height: 200px;
        bottom: -120px;
        right: -80px;
    }
}

@media (max-width: 768px) {
    .partnership__visual-img.mobile {
        display: block;
    }

    .partnership__visual-img.desktop {
        display: none;
    }


    .partnership {
        padding-bottom: 60px;
    }

    .partnership__card {
        flex-direction: column;
        max-width: 100%;
    }

    .partnership__content {
        padding: 24px;
    }

    .partnership__title {
        font-size: 24px;
    }

    .partnership__text {
        font-size: 14px;
    }

    .partnership__visual {
        width: 100%;
        height: 120px;
        order: -1;
    }

    .partnership__visual-img {
        border-radius: 28px 28px 0 0;
    }

    .partnership__logo {
        height: 24px;
    }

    .partnership__logo--mipt {
        height: 40px;
    }

    .partnership__logo--techpred {
        height: 26px;
    }

    .partnership__decor.top {
        height: 140px;
        top: -40px;
        left: -60px;
    }

    .partnership__decor.bottom {
        height: 140px;
        bottom: -80px;
        right: -50px;
    }
}

