Hey @Ashutosh_Vyas . Thanks for flagging this. Looking at your responsive grid setup, I think the issue could potentially be with how the container query syntax is being parsed. The responsive value syntax works as a binary if-else statement, so when you have multiple breakpoints you need to nest them or use compound conditions with ranges. Can you try using compound conditions like this:
This should create an if-else-if-else chain where the middle condition explicitly defines the range between sm and md breakpoints. To help isolate whether it’s a syntax issue or a token value issue, could you also test with hardcoded pixel values like this:
Let me know if that behaves correctly. If the issue persists, could you also check your browser’s DevTools console and share any errors or warnings that might be appearing? That would help us dig deeper into what might be going on with the parsing. Hope this helps!