#Media_Queries Range Syntax
▻https://ishadeed.com/article/range-syntax
/* Before */
.section {
@media (min-width: 300px) and (max-width: 500px) {
/* styles for the card */
}
}
/* After */
.section {
@media (300px <= width <= 500px) {
/* styles for the card */
}
}
#css