@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
*/
/**
* @file
* CTA Button Component
*/
:root {
  --cta-button-primary-background-color: var(--surface-action);
  --cta-button-primary-border-color: var(--border-action);
  --cta-button-primary-text-color: var(--text-on-action);
  --cta-button-primary-background-color--hover: var(--surface-action-hover);
  --cta-button-primary-border-color--hover: var(--neutral-color-850);
  --cta-button-primary-text-color--hover: var(--text-on-hover);
  --cta-button-primary-background-color--focus: var(--surface-focus);
  --cta-button-primary-border-color--focus: var(--border-focus);
  --cta-button-primary-text-color--focus: var(--text-on-focus);
  --cta-button-primary-background-color--disabled: var(--surface-disabled);
  --cta-button-primary-border-color--disabled: var(--border-disabled);
  --cta-button-primary-text-color--disabled: var(--neutral-color-500);
  --cta-button-secondary-border-color: var(--border-action);
  --cta-button-secondary-text-color: var(--text-on-action-inv);
  --cta-button-secondary-background-color--hover: var(--surface-action-hover-2);
  --cta-button-secondary-border-color--hover: var(--border-action-hover);
  --cta-button-secondary-text-color--hover: var(--text-action-hover);
  --cta-button-secondary-border-color--focus: var(--border-focus);
  --cta-button-secondary-text-color--focus: var(--neutral-color-900);
  --cta-button-secondary-border-color--disabled: var(--border-on-disabled);
  --cta-button-secondary-text-color--disabled: var(--text-on-disabled);
  --cta-button-tertiary-text-color: var(--text-action);
  --cta-button-tertiary-text-color--hover: var(--text-action-hover);
  --cta-button-tertiary-text-color--focus: var(--text-action-hover);
  --cta-button-tertiary-text-color--disabled: var(--text-disabled);
}

[data-mode=dark] .cta-button {
  --cta-button-primary-border-color--hover: var(--border-action-hover);
  --cta-button-primary-text-color--disabled: var(--text-on-hover);
  --cta-button-secondary-border-color--hover: var(--border-action-hover-inv);
  --cta-button-secondary-text-color--hover: var(--text-on-hover-inv);
  --cta-button-secondary-text-color--focus: var(--text-on-focus-inv);
  --cta-button-tertiary-text-color--focus: var(--text-on-focus-inv);
  --cta-button-tertiary-text-color--disabled: var(--text-on-disabled);
}

.cta-button {
  align-items: center;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  letter-spacing: 0.15em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-family: Knockout53, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: 0.875rem;
  line-height: 1.57;
}
:where(:has(.font-loaded)) .cta-button {
  font-size-adjust: unset;
  font-stretch: unset;
  font-weight: unset;
  transform: none;
}
:has(.font-loaded) .cta-button {
  line-height: 1.57;
}
.cta-button.cta-button--disabled, .cta-button:disabled, .cta-button[disabled], .cta-button[aria-disabled=true] {
  cursor: not-allowed;
  pointer-events: none;
}
.cta-button:not(.cta-button--tertiary) {
  border-radius: 3.75rem;
  border-style: solid;
  border-width: 0.125rem;
}
.cta-button:not(.cta-button--tertiary, .cta-button--icon-only) {
  padding: 1rem 1.75rem;
}

.cta-button--primary {
  background-color: var(--cta-button-primary-background-color);
  border-color: var(--cta-button-primary-border-color);
  color: var(--cta-button-primary-text-color);
}
.cta-button--primary:hover {
  background-color: var(--cta-button-primary-background-color--hover);
  border-color: var(--cta-button-primary-border-color--hover);
  color: var(--cta-button-primary-text-color--hover);
}
.cta-button--primary:focus {
  background-color: var(--cta-button-primary-background-color--focus);
  border-color: var(--cta-button-primary-border-color--focus);
  color: var(--cta-button-primary-text-color--focus);
}
.cta-button--primary.cta-button--disabled, .cta-button--primary:disabled, .cta-button--primary[disabled], .cta-button--primary[aria-disabled=true] {
  background-color: var(--cta-button-primary-background-color--disabled);
  border-color: var(--cta-button-primary-border-color--disabled);
  color: var(--cta-button-primary-text-color--disabled);
}

.cta-button--secondary {
  background-color: transparent;
  border-color: var(--cta-button-secondary-border-color);
  color: var(--cta-button-secondary-text-color);
}
.cta-button--secondary:hover {
  background-color: var(--cta-button-secondary-background-color--hover);
  border-color: var(--cta-button-secondary-border-color--hover);
  color: var(--cta-button-secondary-text-color--hover);
}
.cta-button--secondary:focus {
  border-color: var(--cta-button-secondary-border-color--focus);
  color: var(--cta-button-secondary-text-color--focus);
}
.cta-button--secondary.cta-button--disabled, .cta-button--secondary:disabled, .cta-button--secondary[disabled], .cta-button--secondary[aria-disabled=true] {
  border-color: var(--cta-button-secondary-border-color--disabled);
  color: var(--cta-button-secondary-text-color--disabled);
}

.cta-button--tertiary {
  background-color: transparent;
  color: var(--cta-button-tertiary-text-color);
  padding: 1rem 0;
}
.cta-button--tertiary:hover {
  color: var(--cta-button-tertiary-text-color--hover);
}
.cta-button--tertiary:focus {
  color: var(--cta-button-tertiary-text-color--focus);
}
.cta-button--tertiary:focus .cta-button__text {
  text-decoration: underline;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
  text-decoration-thickness: 20%;
  text-underline-offset: 50%;
  text-underline-position: from-font;
}
.cta-button--tertiary.cta-button--disabled, .cta-button--tertiary:disabled, .cta-button--tertiary[disabled], .cta-button--tertiary[aria-disabled=true] {
  color: var(--cta-button-tertiary-text-color--disabled);
}

.cta-button--icon-only {
  --cta-button-primary-text-color--hover: var(--neutral-color-400);
  --cta-button-secondary-border-color--disabled: var(--border-disabled);
  --cta-button-tertiary-text-color--focus: var(--icon-action);
  padding: 0.5rem;
}

[data-mode=dark] .cta-button--icon-only {
  --cta-button-primary-text-color--hover: var(--icon-on-hover);
  --cta-button-primary-border-color--disabled: var(--border-action-hover);
  --cta-button-secondary-border-color--hover: var(--border-action-hover);
  --cta-button-secondary-text-color--hover: var(--icon-action);
  --cta-button-secondary-text-color--focus: var(--icon-action);
  --cta-button-secondary-border-color--disabled: var(--border-on-disabled);
  --cta-button-secondary-text-color--disabled: var(--icon-on-disabled);
  --cta-button-tertiary-text-color--disabled: var(--icon-on-disabled);
}

.cta-button--icon-left,
.cta-button--icon-right {
  gap: 0.5rem;
}

.cta-button__icon {
  align-items: center;
  display: inline-flex;
  height: 1.25rem;
  justify-content: center;
  width: 1.25rem;
}

.cta-dropdown {
  align-items: center;
  display: flex;
  flex-direction: column;
}
.paragraph--type--section:not(:has(.image-hero)) .cta-dropdown {
  padding-block-end: 3rem;
  padding-inline: 1rem;
}

.cta-dropdown__wrapper {
  inline-size: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .cta-dropdown__wrapper {
    inline-size: -moz-fit-content;
    inline-size: fit-content;
  }
}

.cta-dropdown__title {
  font-family: "TNSansPerfect", Monaco, monospace;
  font-style: italic;
  text-transform: uppercase;
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 700;
  inline-size: -moz-fit-content;
  inline-size: fit-content;
  margin-block-end: -1.5rem;
  margin-inline: auto;
  max-inline-size: calc(100% - 3rem);
  text-transform: uppercase;
  transform: rotate(-3deg);
}
:has(.font-loaded) .cta-dropdown__title {
  line-height: 1.4;
}
@media (min-width: 768px) {
  .cta-dropdown__title {
    inline-size: unset;
    margin-block-end: -0.75rem;
    margin-inline: unset;
    margin-inline-start: -10.3125rem;
    max-inline-size: unset;
  }
}
.paragraph--type--section:not(:has(.image-hero)) .cta-dropdown__title {
  margin-block-end: 0;
  margin-inline-start: 2rem;
  max-inline-size: 100%;
}
@media (min-width: 768px) {
  .paragraph--type--section:not(:has(.image-hero)) .cta-dropdown__title {
    margin-block-end: -0.75rem;
    margin-inline-start: -10.3125rem;
    max-inline-size: unset;
  }
}
.cta-dropdown__title .tnds-handdrawn-arrow {
  left: calc(100% + 0.4375rem);
  position: relative;
  top: -1.0625rem;
  transform: scaleX(-1) rotate(97deg);
}
.paragraph--type--section:not(:has(.image-hero)) .cta-dropdown__title .tnds-handdrawn-arrow {
  left: -3.25rem;
  position: relative;
  top: -0.9375rem;
  transform: rotate(83deg);
}
@media (min-width: 768px) {
  .cta-dropdown__title .tnds-handdrawn-arrow, .paragraph--type--section:not(:has(.image-hero)) .cta-dropdown__title .tnds-handdrawn-arrow {
    left: 6.125rem;
    top: 1.125rem;
    transform: rotate(65deg);
  }
}
.cta-dropdown__title .tnds-handdrawn-arrow g {
  stroke: var(--text-primary);
  stroke-width: 0.09375rem;
}

.cta-dropdown__title-desktop:has(+ .cta-dropdown__title-mobile) {
  display: none;
}
@media (min-width: 768px) {
  .cta-dropdown__title-desktop:has(+ .cta-dropdown__title-mobile) {
    display: block;
  }
}

@media (min-width: 768px) {
  .cta-dropdown__title-mobile {
    display: none;
  }
}

.cta-dropdown__label {
  display: block;
  letter-spacing: 15%;
  line-height: unset;
  margin-block-end: 0.5rem;
  margin-inline-start: 0.75rem;
  text-transform: uppercase;
  text-transform: uppercase;
  font-family: Knockout53, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size: 0.75rem;
  line-height: 1;
}
:where(:has(.font-loaded)) .cta-dropdown__label {
  font-size-adjust: unset;
  font-stretch: unset;
  font-weight: unset;
  transform: none;
}
:has(.font-loaded) .cta-dropdown__label {
  line-height: 1;
}

.cta-dropdown__button {
  border-color: var(--surface-primary);
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
  display: flex;
  justify-content: space-between;
  letter-spacing: 15%;
  min-inline-size: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .cta-dropdown__button {
    min-inline-size: 18.375rem;
  }
}
.cta-dropdown__button .tnds-chevron-down path {
  stroke: var(--surface-primary);
  stroke-width: 0.1875rem;
}
.cta-dropdown__button[aria-expanded=true] .tnds-chevron-down {
  transform: scaleY(-1);
}
.paragraph--type--section:not(:has(.image-hero)) .cta-dropdown__button {
  background-color: transparent;
  border-color: var(--text-primary);
  color: var(--text-primary);
}
.paragraph--type--section:not(:has(.image-hero)) .cta-dropdown__button .tnds-chevron-down path {
  stroke: var(--text-primary);
}

.cta-dropdown__links {
  background-color: var(--text-primary);
  border: 0.125rem solid var(--surface-secondary);
  border-radius: 0.75rem;
  display: none;
  list-style-type: none;
  margin-block-start: 0.75rem;
  min-inline-size: 100%;
  padding: 0.75rem 0;
  position: absolute;
  z-index: 1;
}
.paragraph--type--section:not(:has(.image-hero)) .cta-dropdown__links {
  background-color: var(--surface-primary);
  border-color: var(--text-primary);
}

.cta-dropdown__item {
  padding: 0.75rem 1rem;
}
.cta-dropdown__item:hover, .cta-dropdown__item:focus, .cta-dropdown__item:focus-within {
  background-color: var(--text-secondary);
}
.cta-dropdown__item:active {
  background-color: var(--text-tertiary);
}
.paragraph--type--section:not(:has(.image-hero)) .cta-dropdown__item:hover, .paragraph--type--section:not(:has(.image-hero)) .cta-dropdown__item:focus, .paragraph--type--section:not(:has(.image-hero)) .cta-dropdown__item:focus-within {
  background-color: var(--surface-secondary);
}
.paragraph--type--section:not(:has(.image-hero)) .cta-dropdown__item:active {
  background-color: var(--surface-tertiary);
}

.cta-dropdown__link {
  font-family: "DM Sans", "Trebuchet MS", Geneva, system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--surface-secondary);
  font-weight: 700;
  text-decoration: none;
}
:has(.font-loaded) .cta-dropdown__link {
  line-height: 1.5;
}
.paragraph--type--section:not(:has(.image-hero)) .cta-dropdown__link {
  color: var(--text-primary);
}
.cta-dropdown__link:hover, .cta-dropdown__link:focus, .cta-dropdown__link:focus-visible {
  color: var(--text-on-hover);
}

.cta-dropdown__button[aria-expanded=true] + .cta-dropdown__links {
  display: block;
}
/*# sourceMappingURL=../maps/cta-dropdown/cta-dropdown.css.map */
