La proprietà CSS min-height non si resetta con il valore auto (come per la proprietà height).
Si resetta invece con il valore initial:
#test {
min-height: 200px;
}
@media screen and (max-width: 1024px) {
#test {
min-height: initial;
}
}