@charset "UTF-8";
/**
 * @file
 * Brand Accordion Component
 */
/**
* @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 {
  --accordion-font-size: 4rem;
}

@media (max-width: 392px) {
  :root {
    --accordion-font-size: 3.25rem;
  }
}
@media (min-width: 768px) {
  :root {
    --accordion-font-size: 5.5rem;
  }
}
.brand-accordion__header {
  align-items: center;
  background: none;
  border: 0 none;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  grid-column: 2/4;
  inline-size: 100%;
  justify-content: space-between;
  margin: 0;
  padding: 0;
  text-align: start;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
}
.brand-accordion__header :is(h2, h3, h4) {
  font-size: var(--accordion-font-size);
  text-transform: uppercase;
  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;
}
@media (max-width: 392px) {
  .brand-accordion__header :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(3.25rem, 3.0357rem + 1.0714vw, 4rem);
    line-height: 0.55;
  }
  :where(:has(.font-loaded)) .brand-accordion__header :is(h2, h3, h4) {
    font-size-adjust: unset;
    font-stretch: unset;
    font-weight: unset;
    transform: none;
  }
  :has(.font-timed-out) .brand-accordion__header :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) .brand-accordion__header :is(h2, h3, h4) {
    line-height: 0.83;
  }
}
:where(:has(.font-loaded)) .brand-accordion__header :is(h2, h3, h4) {
  font-size-adjust: unset;
  font-stretch: unset;
  font-weight: unset;
  transform: none;
}
:has(.font-timed-out) .brand-accordion__header :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) .brand-accordion__header :is(h2, h3, h4) {
  line-height: 0.875;
}
.brand-accordion__header .brand-accordion__header-content {
  align-items: center;
  display: grid;
  grid-template-columns: subgrid;
  justify-content: space-between;
}

.brand-accordion__title {
  -webkit-hyphens: auto;
          hyphens: auto;
  min-inline-size: 0;
  overflow-wrap: break-word;
}

.brand-accordion__icon {
  align-items: center;
  aspect-ratio: 1;
  border: 0.125rem solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  grid-column: 2;
  height: 2.5rem;
  justify-content: center;
  transform-origin: center;
  width: 2.5rem;
}
.brand-accordion__icon svg {
  max-width: unset;
}
@media (min-width: 768px) {
  .brand-accordion__icon svg {
    max-width: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .brand-accordion__icon {
    transition: transform 300ms ease-out;
  }
}

[aria-expanded=true] .brand-accordion__icon {
  transform: rotate(-180deg);
}

.brand-accordion-tab:not(:has([aria-expanded=true])) {
  --accordion-tab-block-size: 10.5rem;
}

.brand-accordion.brand-accordion--expanded .brand-accordion-tab:not(:has([aria-expanded=true])) {
  --accordion-tab-block-size: 5.25rem;
}
.brand-accordion.brand-accordion--expanded .brand-accordion-tab:not(:has([aria-expanded=true])) .brand-accordion__title {
  font-size: clamp(2rem, 1.8571rem + 0.7143vw, 2.5rem);
}

.brand-accordion__header[aria-expanded=true] {
  grid-row: 2;
}
/*# sourceMappingURL=../maps/brand-accordion/brand-accordion.css.map */
