/* 
 * Landscape Orientation Styles
 * For tablets and mobile devices in landscape mode
 */

@media (orientation: landscape) {
  /* Add landscape-specific styles here */
}

@media (orientation: landscape) and (max-width: 896px) {
  /* Mobile landscape (iPhone, small Android) */
}

@media (orientation: landscape) and (min-width: 897px) and (max-width: 1366px) {
  /* Tablet landscape (iPad) */
}
