/* About page layout */

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

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

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

