@charset "UTF-8";
/**
* @file
* Common dependencies for all theme stylesheets (both global and component specific)
*/
/**
* @file
* Functions
*
* Defines reusable Sass functions that perform calculations or transformations (e.g.,
* color manipulation, scaling values).
*/
/**
 * @file
 * Color functions
 */
/**
* @file
* Tier 1 - Primitive Color Variables
*
* Contains the color design tokens assigned to our aliases.
* These variables are the raw, unchanging values used to define the core visual language of the project.
*/
/**
* @file
* Convert values into rem units.
* Only `px` values are converted to rem.
* ! Use CSS variables whenever possible
* defines the base font size in a way that is understandable by Sass functions
*/
/**
* @file
* Mixins
*
* Contains imports for reusable Sass mixins that encapsulate common patterns or logic, such as
* responsive styles, vendor prefixes, or utility functions.
*/
/**
* @file
* Breakpoints
*
* Defines CSS variables for responsive design breakpoints used throughout the project.
*/
/**
* @file
* Container Mixins
*
* Contains mixins for containers that can be applied on a component level when their associated utility class is applied
*/
/**
* @file
* Container Variables
*/
/**
 * @file
 * Global typography for site
*/
/**
* @file
* Typography
*
* Defines CSS variables and styles related to typography, including font families,
* sizes, weights, line heights, and letter spacing.
*/
/**
* @file
* Type SCSS variables for spacing system
*/
/* === Font Stacks === */
/* === Font Weights === */
/* === Letter Spacing === */
/* === Line Heights === */
/* A single line value will be used for type. The largest value was selected based on comparing between mobile and desktop. */
/* === Font Sizes === */
/* Min / Mobile */
/* Max / Desktop */
/* Font Size / Fluid Units
* Resource: Utopia Clamp Calculator
* @link https://utopia.fyi/clamp/calculator?a=320,1440,92—104|64—88|52—64|48—60|32—40|16—20
*
* viewport values from utopia clamp calculator
* values without clamp are the same for mobile and desktop
*/
/*
 Preset typography
*/
/**
* @file
* Utility Mixins
*/
/**
* @file
* Container Mixins
*
* Contains mixins for containers that can be applied on a component level when their associated utility class is applied
*/
/**
* @file
* Variables
*/
/**
* @file
* Type SCSS variables for transition durations.
*/
/**
* @file
* Typography
*
* Defines CSS variables and styles related to typography, including font families,
* sizes, weights, line heights, and letter spacing.
*/
/**
* @file
* SCSS variables for radii
*/
/**
* @file
* Typography
*
* Defines CSS variables and styles related to typography, including font families,
* sizes, weights, line heights, and letter spacing.
*/
/**
 * @file
 * Global typography for site
*/
/**
* @file
* Z-Index
*
* Source of truth for z-index values used throughout the theme.
*/
/**
* @file
* SCSS variables for miscellaneous items
*/
/**
* @file
* Common dependencies for all theme stylesheets (both global and component specific)
*/
/**
 * Tabs/tab as seen on the search page.
 * Pattern reference: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Roles/tab_role#example
 */
/**
 * Styles for "No Results" message to be displayed when 0 results are returned initiating 
 * a search from the Nav, or when 0 results are returned using filters
 */
/**
* @file
* Utility Mixins
*/
:root {
  --image-hero-block-start-gutter: 4rem;
  --image-hero-block-end-gutter: 4rem;
  --image-hero-block-with-bottom-aligned-gutter: 0;
}

.image-hero {
  block-size: -moz-fit-content;
  block-size: fit-content;
  color: var(--text-primary);
  color-scheme: dark;
  display: grid;
  position: relative;
}
.image-hero + .node__section-header .section-header--overlap {
  margin-block-start: calc(var(--section-overlap-size) * 0.5);
}
.image-hero:not(:has(.image-hero__featured)) {
  min-block-size: 33.9375rem;
  padding-block-start: 5.5rem;
}

.image-hero__background,
.image-hero__container {
  grid-area: 1/1/-1/-1;
}

.image-hero__body,
.image-hero__title,
.image-hero__mini-map,
.image-hero__cta-dropdown {
  grid-column: 1;
  grid-row: 3;
}

.image-hero__background {
  isolation: isolate;
  pointer-events: none;
}
.image-hero__background img {
  block-size: 100%;
  inline-size: 100%;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 0;
}
.image-hero__background .contextual-region {
  position: static;
}

.image-hero__content-wrapper {
  position: relative;
  z-index: 5;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  display: grid;
  grid-template-columns: 1fr min(78rem, 100% - 1rem * 2) 1fr;
}
.image-hero__content-wrapper > * {
  grid-column: 2;
}

.image-hero__content {
  display: grid;
  grid-template-rows: var(--image-hero-block-start-gutter) min-content min-content var(--image-hero-block-end-gutter, var(--image-hero-block-start-gutter));
  z-index: 1;
}
.image-hero__content:has(:nth-child(3)) {
  grid-template-rows: var(--image-hero-block-start-gutter) min-content min-content min-content var(--image-hero-block-end-gutter, var(--image-hero-block-start-gutter));
}
@media (min-width: 1440px) {
  .image-hero__content {
    grid-column: 2;
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1440px) {
  .image-hero__content:has(.image-hero__featured) {
    grid-template-columns: 46.2% 2.8% 51%;
  }
}

.image-hero--bottom-aligned .image-hero__content {
  grid-template-rows: var(--image-hero-block-start-gutter) repeat(2, min-content) var(--image-hero-block-with-bottom-aligned-gutter, var(--image-hero-block-start-gutter));
}
.image-hero--bottom-aligned .image-hero__content:has(.image-hero__cta-dropdown) {
  grid-template-rows: var(--image-hero-block-start-gutter) repeat(3, min-content) var(--image-hero-block-end-gutter, var(--image-hero-block-start-gutter));
}

.image-hero__content-text {
  display: flex;
  flex-direction: column;
  grid-column: 1;
  grid-row: 2;
  justify-content: center;
  min-inline-size: 0;
}

.image-hero__mini-map {
  margin-block-end: 2rem;
}

.image-hero__title {
  align-content: flex-end;
  -webkit-hyphens: auto;
          hyphens: auto;
}
@media (min-width: 1440px) {
  .image-hero__title {
    -webkit-hyphens: initial;
            hyphens: initial;
  }
}
.image-hero__title,
.image-hero__title :is(h2, h3, h4) {
  text-transform: uppercase;
  font-family: Knockout90, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size-adjust: cap-height 0.605;
  font-stretch: condensed;
  font-weight: 900;
  transform: scaleY(1.05);
  font-size: clamp(4rem, 3.5714rem + 2.1429vw, 5.5rem);
  line-height: 0.83;
}
:where(:has(.font-loaded)) .image-hero__title,
:where(:has(.font-loaded)) .image-hero__title :is(h2, h3, h4) {
  font-size-adjust: unset;
  font-stretch: unset;
  font-weight: unset;
  transform: none;
}
:has(.font-timed-out) .image-hero__title,
:has(.font-timed-out) .image-hero__title :is(h2, h3, h4) {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
:has(.font-loaded) .image-hero__title,
:has(.font-loaded) .image-hero__title :is(h2, h3, h4) {
  line-height: 0.875;
}

.image-hero__body {
  padding: 1rem 0 0;
}
.image-hero__body, .image-hero__body p {
  font-family: "DM Sans", "Trebuchet MS", Geneva, system-ui, sans-serif;
  font-size: clamp(1rem, 0.9286rem + 0.3571vw, 1.25rem);
  line-height: 1.5;
  font-weight: 700;
  line-height: 1.5;
}
:has(.font-loaded) .image-hero__body, :has(.font-loaded) .image-hero__body p {
  line-height: 1.5;
}

.image-hero__featured {
  grid-column: 1;
  grid-row: 3;
  justify-self: center;
  margin-block-start: 1.5rem;
  max-inline-size: 39.75rem;
}
.image-hero__featured picture {
  inline-size: 100%;
}
.image-hero__featured img {
  block-size: auto;
  inline-size: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 1440px) {
  .image-hero__featured {
    align-items: center;
    display: flex;
    grid-column: 3;
    grid-row: 2;
    margin-block-start: 0;
  }
}

.image-hero__cta-dropdown {
  grid-column: 1;
  grid-row: 4;
  margin-block-start: 3rem;
}
@media (min-width: 1440px) {
  .image-hero__cta-dropdown {
    grid-column: 1/4;
    grid-row: 3;
  }
}
/*# sourceMappingURL=../maps/image-hero/image-hero.css.map */
