Custom property can be used for this, here is the example:
@property --breakpoint-lg {
syntax: "<length>";
initial-value: 1024px;
inherits: true;
}
.container {
// some styles
@media (min-width: --breakpoint-lg) {
// some styles
}
}