/* =========================================================
   Go Ads India - Shared Grid Alignment
   Keeps the modern inner-page content aligned to the same
   centered 1280px desktop grid used across the site.
   Updated: 2026-09-02
   ========================================================= */

@media (min-width: 901px) {
  .wrap {
    width: min(1280px, calc(100% - 44px)) !important;
    max-width: 1280px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* Client-logo / experience strip:
     keep the entire "17+ years..." section on the same 1280px grid. */
  .logo-marquee {
    width: min(1280px, calc(100% - 44px)) !important;
    max-width: 1280px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  /* Why Choose Go Ads India:
     four reason cards in one row on desktop. */
  #why-us .awareness {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 900px) {
  .wrap {
    width: calc(100% - 36px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .logo-marquee {
    width: calc(100% - 36px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  #why-us .awareness {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .wrap,
  .logo-marquee {
    width: calc(100% - 30px) !important;
  }

  #why-us .awareness {
    grid-template-columns: 1fr !important;
  }
}
