@charset "UTF-8";
/**
 * @file
 * Bento Box 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
*/
/**
 * @file
 * Bento Box Layouts Index
 * Forwards all layout variations
 */
/**
 * @file
 * Bento Box Component
 */
/**
 * @file
 * Bento Box Layout A
 */
@media (min-width: 768px) {
  .bento-layout--layout-a .bento-box__items {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(6, 6.375rem);
  }
}
.bento-layout--layout-a .bento-box__items > .card-wrapper:nth-child(1) {
  grid-column: span 2;
}
@media (min-width: 768px) {
  .bento-layout--layout-a .bento-box__items > .card-wrapper:nth-child(1) {
    grid-column: span 2;
    grid-row: span 3;
  }
}
@media (min-width: 768px) {
  .bento-layout--layout-a .bento-box__items > .card-wrapper:nth-child(2) {
    grid-column: 3;
    grid-row: 1;
  }
}
@media (min-width: 768px) {
  .bento-layout--layout-a .bento-box__items > .card-wrapper:nth-child(3) {
    grid-column: 3;
    grid-row: 2;
  }
}
@media (min-width: 768px) {
  .bento-layout--layout-a .bento-box__items > .card-wrapper:nth-child(4) {
    grid-column: 3;
    grid-row: 3;
  }
}
@media (min-width: 768px) {
  .bento-layout--layout-a .bento-box__items > .card-wrapper:nth-child(5) {
    grid-column: 1;
    grid-row: span 3;
  }
}
@media (min-width: 768px) {
  .bento-layout--layout-a .bento-box__items > .card-wrapper:nth-child(6) {
    grid-column: 2;
    grid-row: span 3;
  }
}
@media (min-width: 768px) {
  .bento-layout--layout-a .bento-box__items > .bento-append-block {
    grid-column: 3;
    grid-row: span 3;
  }
}

/**
 * @file
 * Bento Box Component
 */
/**
 * @file
 * Bento Box Layout B
 */
@media (min-width: 768px) {
  .bento-layout--layout-b .bento-box__items {
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
}
.bento-layout--layout-b .bento-box__items > .card-wrapper:nth-child(1) {
  grid-column: span 2;
}
@media (min-width: 768px) {
  .bento-layout--layout-b .bento-box__items > .card-wrapper:nth-child(1) {
    grid-column: 1;
    grid-row: span 3;
  }
}
@media (min-width: 768px) {
  .bento-layout--layout-b .bento-box__items > .card-wrapper:nth-child(2) {
    grid-column: 2;
    grid-row: span 3;
  }
}
@media (min-width: 768px) {
  .bento-layout--layout-b .bento-box__items > .card-wrapper:nth-child(3),
  .bento-layout--layout-b .bento-box__items > .card-wrapper:nth-child(4),
  .bento-layout--layout-b .bento-box__items > .card-wrapper:nth-child(5) {
    grid-column: 3;
    height: 100%;
  }
  .bento-layout--layout-b .bento-box__items > .card-wrapper:nth-child(3) .card-size--small,
  .bento-layout--layout-b .bento-box__items > .card-wrapper:nth-child(3) .card-size--medium-small,
  .bento-layout--layout-b .bento-box__items > .card-wrapper:nth-child(3) .card-size--large-small,
  .bento-layout--layout-b .bento-box__items > .card-wrapper:nth-child(4) .card-size--small,
  .bento-layout--layout-b .bento-box__items > .card-wrapper:nth-child(4) .card-size--medium-small,
  .bento-layout--layout-b .bento-box__items > .card-wrapper:nth-child(4) .card-size--large-small,
  .bento-layout--layout-b .bento-box__items > .card-wrapper:nth-child(5) .card-size--small,
  .bento-layout--layout-b .bento-box__items > .card-wrapper:nth-child(5) .card-size--medium-small,
  .bento-layout--layout-b .bento-box__items > .card-wrapper:nth-child(5) .card-size--large-small {
    max-height: none;
  }
}

/**
 * @file
 * Bento Box Component
 */
/**
 * @file
 * Bento Box Layout C
 */
.bento-layout--layout-c .bento-box__items > .card-wrapper:nth-child(1) {
  grid-column: span 2;
}
@media (min-width: 768px) {
  .bento-layout--layout-c .bento-box__items > .card-wrapper:nth-child(1) {
    grid-column: 1;
    grid-row: span 3;
  }
}
.bento-layout--layout-c .bento-box__items > .card-wrapper:nth-child(2) {
  grid-column: span 1;
  grid-row: span 3;
}
@media (min-width: 768px) {
  .bento-layout--layout-c .bento-box__items > .card-wrapper:nth-child(2) {
    grid-column: span 2;
  }
}
.bento-layout--layout-c .bento-box__items > .card-wrapper:nth-child(3) {
  grid-column: span 1;
  grid-row: span 3;
}
@media (min-width: 768px) {
  .bento-layout--layout-c .bento-box__items > .card-wrapper:nth-child(3) {
    grid-column: span 2;
  }
}
.bento-layout--layout-c .bento-box__items > .card-wrapper:nth-child(4) {
  grid-column: span 2;
}
@media (min-width: 768px) {
  .bento-layout--layout-c .bento-box__items > .card-wrapper:nth-child(4),
  .bento-layout--layout-c .bento-box__items > .card-wrapper:nth-child(5),
  .bento-layout--layout-c .bento-box__items > .card-wrapper:nth-child(6) {
    grid-column: 3;
  }
}

/**
 * @file
 * Bento Box Component
 */
/**
 * @file
 * Bento Box Layout D
 */
.bento-layout--layout-d .bento-box__items {
  grid-template-columns: unset;
}
@media (min-width: 768px) {
  .bento-layout--layout-d .bento-box__items {
    grid-template-columns: repeat(3, 1fr);
  }
}

/**
 * @file
 * Bento Box Component
 */
/**
 * @file
 * Bento Box Layout Articles
 * Mobile: First item full width, rest 2 per row
 * Tablet+: Standard 3x3 grid
 */
.bento-layout--layout-articles .bento-box__items > .card-wrapper:nth-child(1) {
  grid-column: span 2;
}
@media (min-width: 768px) {
  .bento-layout--layout-articles .bento-box__items > .card-wrapper:nth-child(1) {
    grid-column: span 1;
  }
}

/**
 * @file
 * Bento Box Component
 */
/**
 * @file
 * Bento Box Layout Partners
 * 3x3 grid layout for partner cards
 */
.bento-box.bento-layout--layout-partners {
  display: block;
}

.bento-layout--layout-partners .bento-box__items {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: 1fr;
  margin-block-end: 2.25rem;
}
@media (min-width: 768px) {
  .bento-layout--layout-partners .bento-box__items {
    gap: 1.5rem;
    grid-template-columns: repeat(2, 1fr);
    margin-block-end: 3rem;
  }
}
@media (min-width: 1024px) {
  .bento-layout--layout-partners .bento-box__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
.bento-layout--layout-partners .bento-box__items > .partner-card {
  grid-column: span 1;
}

/**
 * @file
 * Bento Box Component
 */
/**
 * @file
 * Bento Box Layout Related Articles
 * Mobile: 1 item per row
 * Tablet+: 3 items per row (default)
 */
h2:has(~ div .bento-box .card) {
  grid-column: 2;
  margin-block-end: 2rem;
}

.bento-box.bento-layout--layout-related-articles {
  display: block;
}

.bento-layout--layout-related-articles .bento-box__items {
  gap: 0.5rem;
  grid-template-columns: 1fr;
  margin-block-end: 3.75rem;
}
@media (min-width: 768px) {
  .bento-layout--layout-related-articles .bento-box__items {
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
    margin-block-end: 4.5rem;
  }
}
.bento-layout--layout-related-articles .bento-box__items .card .card__content {
  align-items: center;
  display: flex;
  padding: 0.5rem 1rem;
}

.bento-box {
  width: 100%;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  display: grid;
  grid-template-columns: 1fr min(78rem, 100% - 1rem * 2) 1fr;
}
.bento-box > * {
  grid-column: 2;
}

.bento-box__items {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-block-end: 2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .bento-box__items {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bento-box__cta {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-box__items + .bento-box__cta .paragraph--type--cta {
  margin-block-end: 2.75rem;
}
@media (min-width: 768px) {
  .bento-box__items + .bento-box__cta .paragraph--type--cta {
    margin-block-end: 3.75rem;
  }
}

.bento-append-block {
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .bento-append-block .content-promo-block__content {
    align-items: center;
    flex-direction: column;
    inline-size: 100%;
    width: 100%;
  }
}
.bento-append-block .content-promo-block__cta {
  --cta-button-secondary-text-color--focus: var(--icon-action);
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
@media (min-width: 768px) {
  .bento-append-block .content-promo-block__cta {
    bottom: 1rem;
    position: absolute;
    right: 1rem;
  }
}
.bento-append-block .content-promo-block__cta .cta-button {
  height: 2.5rem;
  width: 2.5rem;
}
.bento-append-block .content-promo-block__cta .cta-button__icon {
  height: 2rem;
  max-width: unset;
  width: 2rem;
}
.bento-append-block .content-promo-block__cta .cta-button__icon svg {
  height: 2rem;
  max-width: unset;
  width: 2rem;
}

.bento-layout {
  width: 100%;
}
/*# sourceMappingURL=../maps/bento-box/bento-box.css.map */
