mixin для сетки в которм calc() странно считает!!!

Я начинающий строго не судите!
Не могу понять что не правильно!!!

@mixin card-set($items: 1, $indentX: 32px, $indentY: $indentX) {
display: flex;
flex-wrap: wrap;
gap: $indentX $indentY;

& > [class*=’__item’] {
flex-basis: calc((100% - $indentY * ($items - 1)) / $items);
}
}

на выходе так:

@media only screen and (min-width: 768px) {
.products__list {
flex-wrap: wrap;
gap: 168px 16px;
display: flex;
}

.products__list>[class*="__item"] {
flex-basis: calc(33.3333% - 10.6667px);
}
}