@charset "UTF-8";
/**
 * @file
 * Alert Banner component styles
 * 
 * A site-wide alert banner designed to display important notifications.
 */
/**
* @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 {
  --alert-banner-background-color: light-dark(var(--surface-information), var(--surface-action));
  --alert-banner-text-color: light-dark(var(--text-information), var(--text-tertiary));
}

.alert-banner[data-mode=dark] {
  --alert-banner-background-color: var(--information-color-500);
  --alert-banner-text-color: var(--information-color-200);
  color-scheme: dark light;
}

.alert-banner[data-mode=light] {
  --alert-banner-background-color: var(--neutral-color-900);
  --alert-banner-text-color: var(--neutral-color-600);
  color-scheme: light dark;
}

.alert-banner {
  background-color: var(--alert-banner-background-color);
  color: var(--alert-banner-text-color);
  cursor: default;
  font-family: "DM Sans", "Trebuchet MS", Geneva, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  padding-block: 0.75rem;
  padding-inline: 1rem;
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  display: grid;
  grid-template-columns: 1fr min(78rem, 100% - 1rem * 2) 1fr;
}
.alert-banner > * {
  grid-column: 2;
}
@media (min-width: 768px) {
  .alert-banner {
    padding-block: 1rem;
  }
}
.alert-banner :-moz-any-link {
  color: currentColor;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
.alert-banner :any-link {
  color: currentColor;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}
.alert-banner :-moz-any-link:hover, .alert-banner :-moz-any-link:focus {
  text-decoration-thickness: 0.1875rem;
}
.alert-banner :any-link:hover, .alert-banner :any-link:focus {
  text-decoration-thickness: 0.1875rem;
}
.alert-banner :-moz-any-link:focus-visible {
  outline: 0.125rem solid currentColor;
  outline-offset: 0.25rem;
}
.alert-banner :any-link:focus-visible {
  outline: 0.125rem solid currentColor;
  outline-offset: 0.25rem;
}
.alert-banner p {
  max-inline-size: unset;
}
.alert-banner p:last-child {
  margin-block-end: 0;
}
/*# sourceMappingURL=../maps/alert-banner/alert-banner.css.map */
