The #CSSWG just resolved to allow `var()` references in #CSS container queries:
```css
@container (inline-size > var(--small)) {
.card { padding: 2em; }
}
```
The custom property is resolved on the container – so we're querying if the computed value of `--small` on our container:
1. is valid in context (a `<length>` value), and
2. is less-than the container `inline-size`
It's not "custom media queries" feature, but it is Damn Close™️ – and maybe more powerful. I'm excited to play with it! 🥳