/* Page styles for faq.html (block 1).
   Moved out of an inline <style> tag on 20 Aug 2026 so the CSP no longer needs
   style-src 'unsafe-inline'. Contents unchanged; the <link> replaces the <style>
   at exactly the same point in the document, so the cascade order is identical. */

.bg-hero-faq {
    background:
      linear-gradient(180deg, rgba(23,21,44,0.58), rgba(23,21,44,0.74)),
      url('images/hero-faq.jpg') center 50% / cover no-repeat,
      url('bg-skyline.svg') center bottom / 100% auto no-repeat,
      linear-gradient(160deg, #242047, #17152c);
  }
  @supports (background: image-set(url('x.webp') type('image/webp'))) {
    .bg-hero-faq {
      background:
        linear-gradient(180deg, rgba(23,21,44,0.58), rgba(23,21,44,0.74)),
        image-set(url('images/hero-faq.webp') type('image/webp'),
                  url('images/hero-faq.jpg')  type('image/jpeg')) center 50% / cover no-repeat,
        url('bg-skyline.svg') center bottom / 100% auto no-repeat,
        linear-gradient(160deg, #242047, #17152c);
    }
  }
