15 lines
268 B
CSS
15 lines
268 B
CSS
.grid {
|
|
display: grid;
|
|
gap: var(--Space-x3);
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.grid {
|
|
grid-template-columns: repeat(2, 1fr);
|
|
}
|
|
|
|
.grid:has(.uspCard:nth-child(3)):not(:has(.uspCard:nth-child(4))) {
|
|
grid-template-columns: repeat(3, 1fr);
|
|
}
|
|
}
|