@charset "UTF-8";
/**
 * @file
 * Journey Card component styles
 *
 * Journey Card section with Header, Primary Image, Secondary Images, Body, and Footer.
 */
/**
* @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
*/
.journey-card .journey-card__wrapper {
  background-color: var(--surface-primary);
  border-radius: 0.5rem;
  display: block;
  inline-size: 100%;
  max-inline-size: 21.25rem;
  padding: 1rem 0.5rem;
  text-decoration: none;
}
@media (min-width: 768px) {
  .journey-card .journey-card__wrapper {
    border-radius: 0.75rem;
    max-inline-size: 19.375rem;
  }
}
.journey-card .journey-card__wrapper .journey-card__content .journey-card__header,
.journey-card .journey-card__wrapper .journey-card__content .journey-card__body,
.journey-card .journey-card__wrapper .journey-card__content .journey-card__footer-wrapper {
  padding-inline: 0.75rem;
}
.journey-card .journey-card__wrapper .journey-card__content .journey-card__header,
.journey-card .journey-card__wrapper .journey-card__content .journey-card__body {
  color: var(--card-text-color);
  max-inline-size: unset;
  text-transform: unset;
}
.journey-card .journey-card__wrapper .journey-card__content .journey-card__header {
  text-transform: uppercase;
  font-family: "DM Sans", "Trebuchet MS", Geneva, system-ui, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.5;
}
:has(.font-loaded) .journey-card .journey-card__wrapper .journey-card__content .journey-card__header {
  line-height: 1.5;
}
.journey-card .journey-card__wrapper .journey-card__content .journey-card__body {
  block-size: 4rem;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  font-family: "DM Sans", "Trebuchet MS", Geneva, system-ui, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.6;
}
:has(.font-loaded) .journey-card .journey-card__wrapper .journey-card__content .journey-card__body {
  line-height: 1.6;
}
.journey-card .journey-card__wrapper .journey-card__content .journey-card__body:hover {
  text-decoration: underline;
}
.journey-card .journey-card__wrapper .journey-card__content .journey-card__images {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-inline-size: 20.25rem;
  padding-block: 0.5rem 1.25rem;
}
@media (min-width: 768px) {
  .journey-card .journey-card__wrapper .journey-card__content .journey-card__images {
    max-inline-size: 18.375rem;
  }
}
.journey-card .journey-card__wrapper .journey-card__content .journey-card__images .journey-card__primary-image,
.journey-card .journey-card__wrapper .journey-card__content .journey-card__images .journey-card__secondary-image {
  overflow: hidden;
}
.journey-card .journey-card__wrapper .journey-card__content .journey-card__images .journey-card__primary-image :where(*:not(img)),
.journey-card .journey-card__wrapper .journey-card__content .journey-card__images .journey-card__secondary-image :where(*:not(img)) {
  block-size: 100%;
  inline-size: 100%;
}
.journey-card .journey-card__wrapper .journey-card__content .journey-card__images .journey-card__primary-image :where(img),
.journey-card .journey-card__wrapper .journey-card__content .journey-card__images .journey-card__secondary-image :where(img) {
  block-size: 100%;
  border-radius: 0.25rem;
  inline-size: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.journey-card .journey-card__wrapper .journey-card__content .journey-card__images .journey-card__primary-image {
  block-size: 11.375rem;
  inline-size: 20.25rem;
}
@media (min-width: 768px) {
  .journey-card .journey-card__wrapper .journey-card__content .journey-card__images .journey-card__primary-image {
    block-size: 10.3125rem;
    inline-size: 18.375rem;
  }
}
.journey-card .journey-card__wrapper .journey-card__content .journey-card__images .journey-card__secondary-images {
  display: flex;
  justify-content: space-between;
}
.journey-card .journey-card__wrapper .journey-card__content .journey-card__images .journey-card__secondary-images .journey-card__secondary-image {
  block-size: 10rem;
  inline-size: 10rem;
}
@media (min-width: 768px) {
  .journey-card .journey-card__wrapper .journey-card__content .journey-card__images .journey-card__secondary-images .journey-card__secondary-image {
    block-size: 9.0625rem;
    inline-size: 9.0625rem;
  }
}
.journey-card .journey-card__wrapper .journey-card__content .journey-card__footer-wrapper {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
}
.journey-card .journey-card__wrapper .journey-card__content .journey-card__footer-wrapper .journey-card__footer {
  font-family: "DM Sans", "Trebuchet MS", Geneva, system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  line-height: 1.57;
}
:has(.font-loaded) .journey-card .journey-card__wrapper .journey-card__content .journey-card__footer-wrapper .journey-card__footer {
  line-height: 1.57;
}
.journey-card .journey-card__wrapper .journey-card__content .journey-card__footer-wrapper .journey-card__icon {
  align-items: center;
  border-radius: 3.75rem;
  border-style: solid;
  border-width: 0.125rem;
  cursor: pointer;
  display: inline-flex;
  height: 2.5rem;
  justify-content: center;
  width: 2.5rem;
}
.journey-card .journey-card__wrapper .journey-card__content .journey-card__footer-wrapper .journey-card__icon svg {
  height: 2rem;
  max-width: unset;
  width: 2rem;
}
/*# sourceMappingURL=../maps/journey-card/journey-card.css.map */
