/* stylelint-disable */

/* ============================================================
   Spruce Energy — Ashby Job Board Theme
   ============================================================
   Uploaded via: Admin → Job Boards → Theme (Job Board) → Custom CSS

   Minimal theme: only the brand colours and font.
   Everything else uses Ashby's defaults.

   Brand:
     Pine Green   #10392F   primary / dark
     Light Green  #79DB8F   accent / CTAs
     Manrope      body font

   Note: the logo on the embed is hidden via the URL's
   ?noChrome=true parameter (set in Framer), not in CSS.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

:root {
    --colorPrimary900: #10392F;   /* Pine Green */
    --colorPrimary600: #79DB8F;   /* Light Green */

    --fontFamily: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica", "Arial", sans-serif;
}

/* Hide the "Open Positions (N)" heading — the Framer page has
   its own "Open roles" headline above the embed. */
.ashby-job-board-heading {
    display: none;
}

/* Make the Ashby header logo non-clickable. The logo image is
   still visible, but clicking it no longer navigates the parent
   window to spruce.eco. */
a[class*="navLogoLink"] {
    pointer-events: none !important;
    cursor: default !important;
}
