/* Additional responsive helpers for the theme and Elementor sections */
.elementor-section {
  box-sizing: border-box;
}

/* Responsive breakpoints aligned with Elementor defaults */
@media (min-width: 1025px) {
  /* Desktop styles */
}
@media (max-width: 1024px) and (min-width: 769px) {
  /* Tablet styles */
}
@media (max-width: 768px) {
  /* Mobile styles */
  .sunway-container { padding-left: 16px; padding-right: 16px; }
  .sunway-logo img { width: 140px !important; }
  .sunway-primary-nav { display: none; } /* Hide menu for simpler mobile layouts; Elementor can add mobile nav */
}

/* Helpers to create entirely different layouts inside one page */
.sunway-layout-desktop { display: block; }
.sunway-layout-mobile { display: none; }
@media (max-width: 768px) {
  .sunway-layout-desktop { display: none; }
  .sunway-layout-mobile { display: block; }
}
