:root {
    --cells-num-row: 6;
}

/* 1 x # */
.proj-item-container,
.proj-item-container--1-high {
    height: calc(100% / var(--cells-num-row));
}

/* 2 x # */
.proj-item-container--2-high {
    height: calc((100% / var(--cells-num-row)) * 2);
}

/* 3 x # */
.proj-item-container--3-high {
    height: calc((100% / var(--cells-num-row)) * 3);
}

/* 4 x # */
.proj-item-container--4-high {
    height: calc((100% / var(--cells-num-row)) * 4);
}

/* 5 x # */
.proj-item-container--5-high {
    height: calc((100% / var(--cells-num-row)) * 5);
}

/* 6 x # */
.proj-item-container--6-high {
    height: calc((100% / var(--cells-num-row)) * 6);
}