.text-with-parentheses {
    background: var(--white);
}

.text-with-parentheses__wrapper {
    display: flex;
    flex-direction: column;
    gap: clamp(32px, 3.33vw, 64px);
    justify-content: center;
    align-items: center;
}

.text-with-parentheses-title {
    font-family: PP Neue Montreal, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: clamp(32px, 2.92vw, 56px);
    leading-trim: NONE;
    line-height: 130%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: var(--gray-100);
}

.text-with-parentheses__wrapper .items-wrapper {
    display: flex;
    margin: 0 auto;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: clamp(16px, 1.25vw, 24px) clamp(20px, 1.67vw, 32px);
    max-width: clamp(550px, 46.8vw, 900px);
}

.text-with-parentheses__wrapper .items-wrapper .item {
    display: flex;
    flex-direction: row;
    position: relative;
    gap: clamp(6px, 0.52vw, 10px);
    font-family: PP Neue Montreal, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: clamp(18px, 1.25vw, 24px);
    leading-trim: NONE;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
    align-items: center;
    color: var(--gray-100);
}

.text-with-parentheses__wrapper .items-wrapper .item::before {
    content: "(";
    font-family: Nib Pro, serif;
    font-weight: 500;
    font-style: Italic;
    font-size: clamp(32px, 2.5vw, 48px);
    leading-trim: CAP_HEIGHT;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--gray-100);
}
.text-with-parentheses__wrapper .items-wrapper .item::after {
    content: ")";
    font-family: Nib Pro, serif;
    font-weight: 500;
    font-style: Italic;
    font-size: clamp(32px, 2.5vw, 48px);
    leading-trim: CAP_HEIGHT;
    line-height: 130%;
    letter-spacing: 0%;
    text-align: center;
    color: var(--gray-100);
}

@media (max-width: 1024px) {
    .text-with-parentheses {
        padding: clamp(48px, 10vw, 80px) 0;
    }

    .text-with-parentheses__wrapper {
        gap: clamp(24px, 6vw, 40px);
    }

    .text-with-parentheses-title {
        font-size: clamp(28px, 7vw, 40px);
        text-align: center;
    }

    .text-with-parentheses__wrapper .items-wrapper {
        gap: clamp(10px, 2.5vw, 16px) clamp(12px, 3.5vw, 24px);
        max-width: 100%;
        justify-content: center;
    }

    .text-with-parentheses__wrapper .items-wrapper .item {
        font-size: clamp(14px, 3.8vw, 18px);
        gap: 4px;
    }

    .text-with-parentheses__wrapper .items-wrapper .item::before,
    .text-with-parentheses__wrapper .items-wrapper .item::after {
        font-size: clamp(24px, 6vw, 36px);
    }
}