/* Partnering page layout */

/* Hide default page title */
.page-slug-partnering .entry-header {
  display: none;
}

/* Background on full-width container — bg-desktop.svg starts below the hero,
   then solid color-white-100 from 200dvh downwards */
.page-slug-partnering .site-main .site-container {
  background:
    /* Solid white-100 cover from 200dvh to bottom */
    linear-gradient(var(--color-white-100), var(--color-white-100)) center 2400px / 100% 9999px no-repeat,
    /* SVG background starting below the hero */
    url('../images/bg-desktop.svg') center calc(100dvh - 96px - 26px - 2px) / 100% auto no-repeat;
}

@media (min-width: 1600px) {
  .page-slug-partnering .site-main .site-container {
    background:
      linear-gradient(var(--color-white-100), var(--color-white-100)) center 2400px / 100% 9999px no-repeat,
      url('../images/bg-desktop.svg') center 774px / 100% auto no-repeat;
  }
}

/* Hide footer CTA on Partnering page */
.page-slug-partnering .footer-cta__wrapper {
  display: none;
}

