/* Mobile (base) - styles outside media queries */

/* Tablet */
@media screen and (min-width: 768px) {
  /* Add tablet-specific styles here */
}

/* Desktop */
@media screen and (min-width: 1024px) {
  /* Add desktop-specific styles here */
}

/* Large Desktop */
@media screen and (min-width: 1440px) {
  /* Add large-desktop-specific styles here */
} 