@charset "UTF-8";
/**
 * @file
 * Brand Accordion Tab 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-tab-background: var(--surface-primary);
  --accordion-tab-text-color: var(--text-primary);
  --accordion-tab-cta-margin-top: 6rem;
  --accordion-tab-block-size: 5.25rem;
  --accordion-tab-gutter-size: 1rem;
}

@media (min-width: 768px) {
  :root {
    --accordion-tab-gutter-size: 6rem;
  }
}
.brand-accordion-tab {
  background-color: var(--current-background, var(--accordion-tab-background));
  block-size: var(--accordion-tab-block-size);
  color: var(--text-primary);
  contain: size;
  contain-intrinsic-size: 5.25rem auto;
  container-name: brand-accordion-tab;
  display: grid;
  grid-template-columns: var(--accordion-tab-gutter-size) 1fr 1fr var(--accordion-tab-gutter-size);
  grid-template-rows: 1fr;
  inline-size: 100%;
  isolation: isolate;
  overflow: clip;
  position: relative;
}
@media (prefers-reduced-motion: no-preference) {
  .brand-accordion-tab {
    transition: block-size 300ms ease-out;
  }
}
.brand-accordion-tab:has([aria-expanded=true]) {
  --accordion-tab-block-size: 31.5rem;
  grid-template-rows: 1fr auto min-content 1fr;
}
.brand-accordion-tab .brand-accordion-tab__background {
  background-color: var(--current-background);
  grid-column: 1/-1;
  inline-size: 100%;
  inset: 0;
  isolation: isolate;
  -webkit-mask: linear-gradient(to right, transparent 0%, black 100%) repeat-y right;
          mask: linear-gradient(to right, transparent 0%, black 100%) repeat-y right;
  pointer-events: none;
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  z-index: -1;
}
@media (min-width: 1920px) {
  .brand-accordion-tab .brand-accordion-tab__background {
    inline-size: min(100%, var(--breakpoint-desktop-large));
    -webkit-mask: linear-gradient(to right, transparent 0%, black var(--breakpoint-desktop-small), transparent 100%) repeat-y right;
            mask: linear-gradient(to right, transparent 0%, black var(--breakpoint-desktop-small), transparent 100%) repeat-y right;
  }
}
.brand-accordion-tab .brand-accordion-tab__background img {
  block-size: var(--accordion-tab-block-size);
  inline-size: 100%;
  mix-blend-mode: multiply;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media (prefers-reduced-motion: no-preference) {
  .brand-accordion-tab .brand-accordion-tab__background img {
    transition: 300ms ease-out;
    transition-property: block-size, transform;
  }
}
.brand-accordion-tab:has([aria-expanded=true]) .brand-accordion-tab__background img, .brand-accordion-tab:is(:hover, :focus-within) .brand-accordion-tab__background img {
  transform: scale(1.08);
}

.brand-accordion__content {
  background-position: center;
  background-size: cover;
  content-visibility: hidden;
  grid-column: 2/4;
  grid-row: 3;
  opacity: 0;
  position: relative;
}
@media (prefers-reduced-motion: no-preference) {
  .brand-accordion__content {
    transition: opacity 300ms ease-in-out;
    transition-delay: 100ms;
  }
}
@media (min-width: 768px) {
  .brand-accordion__content {
    grid-column: 2/3;
  }
}
.brand-accordion__content .brand-accordion-tab__content {
  color: var(--text-primary);
  position: relative;
}

[aria-expanded=true] + .brand-accordion__content {
  content-visibility: auto;
  opacity: 1;
}

.brand-accordion-tab__content {
  cursor: default;
  margin-block-start: 1.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.brand-accordion-tab__content .cta-button {
  margin-block-start: 2rem;
}
/*# sourceMappingURL=../maps/brand-accordion-tab/brand-accordion-tab.css.map */
