.we-work-with {
    padding: 16px 0 20px;
}

.we-work-with .container {
    display: flex;
    justify-content: space-between;
    gap: 160px;
}

.we-work-with .heading .heading__title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 400;
    color: black;
}

.we-work-with .content {
    display: flex;
    flex-direction: column;
    gap: 72px;
}

.we-work-with .content .content__text {
    font-size: 20px;
    line-height: 1.2;
    color: black;
}

.we-work-with .content .content__list {
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0;
    column-gap: 42px;
    row-gap: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-auto-flow: column;
}

.we-work-with .content .content__list li {
    font-size: 18px;
    line-height: 1.2;
    color: black;
    position: relative;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.we-work-with .content .content__list li.last {
    font-family: 'Instrument Serif', serif;
    line-height: 1.2;
    color: var(--soft-blue);
    border-bottom: none;
    padding: 0;
    font-style: italic;
    position: absolute;
    bottom: 0;
    right: 0;
    text-align: right;
}

@media (max-width:968px) {
    .we-work-with {
        padding: 24px 0;
    }

    .we-work-with .container {
        flex-direction: column;
        gap: 24px;
    }

    .we-work-with .heading .heading__title {
        font-size: 32px;
    }

    .we-work-with .content {
        gap: 40px;
    }

    .we-work-with .content .content__text {
        font-size: 16px;
    }

    .we-work-with .content .content__list {
        padding-left: 18%;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 1fr);
        column-gap: 24px;
    }

    .we-work-with .content .content__list li {
        padding-bottom: 12px;
    }

    .we-work-with .content .content__list li.last {
        font-size: 16px;
    }
}