.nmmb-clientvoice {
    padding: clamp(4rem, 9vw, 7rem) var(--nmmb-rail);
    background: var(--nmmb-paper);
    position: relative;
}

.nmmb-clientvoice__inner {
    max-width: 1280px;
    margin-inline: auto;
}

.nmmb-clientvoice__head {
    max-width: 980px;
    margin: 0 auto clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.nmmb-clientvoice__head h2 {
    font-family: var(--nmmb-display);
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: .98;
    letter-spacing: -.02em;
    margin: 0;
}

.nmmb-clientvoice__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 800px) {
    .nmmb-clientvoice__list:has(li:nth-child(2)) {
        grid-template-columns: repeat(2, 1fr);
    }
}

.nmmb-quote {
    display: block;
    max-width: 960px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    background: var(--nmmb-green);
    color: var(--nmmb-paper-soft);
    padding: clamp(2rem, 5vw, 3.5rem);
    border-radius: 24px;
    transform: rotate(-.5deg);
    box-shadow:
        0 1px 0 rgba(0, 0, 0, .05),
        0 30px 50px -25px rgba(0, 0, 0, .35);
}

.nmmb-quote::before,
.nmmb-quote::after {
    content: "";
    position: absolute;
    width: 18px; height: 18px;
    background: var(--nmmb-paper);
    border-radius: 50%;
}
.nmmb-quote::before { top: 18px; left: 18px; }
.nmmb-quote::after { bottom: 18px; right: 18px; }

.nmmb-quote__mark {
    font-family: var(--nmmb-display);
    font-weight: 800;
    font-style: italic;
    font-size: 6rem;
    line-height: .8;
    color: var(--nmmb-lime);
    display: block;
    margin: -.2em 0 -.2em;
    position: relative;
    top: -40px;
}

.nmmb-quote__text {
    font-family: var(--nmmb-display);
    font-weight: 500;
    font-size: clamp(1.25rem, 2.3vw, 1.85rem);
    line-height: 1.35;
    margin: 0 0 1.5rem;
    max-width: 36ch;
    letter-spacing: -.005em;
}

.nmmb-quote__author {
    display: flex;
    align-items: center;
    gap: .9rem;
    margin-top: 1.5rem;
}

.nmmb-quote__avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--nmmb-green-deep);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.nmmb-quote__avatar svg { width: 36px; height: 38px; color: var(--nmmb-lime); }

.nmmb-quote__photo {
    width: 72px; height: 72px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 22%;
    flex-shrink: 0;
    border: 3px solid var(--nmmb-lime);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .22);
}

@media (min-width: 700px) {
    .nmmb-quote__photo { width: 84px; height: 84px; }
}

.nmmb-quote__name {
    font-family: var(--nmmb-display);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.1;
    display: block;
}

.nmmb-quote__role {
    display: block;
    font-family: var(--nmmb-mono);
    font-size: .72rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--nmmb-lime);
    margin-top: .3rem;
}
