@charset "UTF-8";
/**
* @file
* Advertisement Component
*
* Also known as a journal ad
*/
/**
* @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
*/
.advertisement {
  margin: 3rem 0;
}
@media (min-width: 768px) {
  .advertisement {
    margin: 3.5rem 0;
  }
}

.advertisement,
.advertisement--default .advertisement__content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.node--promoted .advertisement__header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .node--promoted .advertisement__header {
    align-items: flex-end;
    flex-direction: row;
    justify-content: space-between;
  }
}

.advertisement__title {
  max-width: 100%;
  text-wrap: auto;
  text-transform: uppercase;
  font-family: Knockout71, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size-adjust: cap-height 0.722;
  font-stretch: condensed;
  font-weight: 900;
  font-size: clamp(2rem, 1.8571rem + 0.7143vw, 2.5rem);
  line-height: 1.125;
}
@media (max-width: 767px) {
  .advertisement--default .advertisement__title {
    order: 1;
  }
}
:where(:has(.font-loaded)) .advertisement__title {
  font-size-adjust: unset;
  font-stretch: unset;
  font-weight: unset;
  transform: none;
}
:has(.font-timed-out) .advertisement__title {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
:has(.font-loaded) .advertisement__title {
  line-height: 1.125;
}

.advertisement__logo-image {
  flex-shrink: 0;
}

.advertisement__primary-image {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.advertisement__caption-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media (min-width: 768px) {
  .advertisement__caption-wrapper {
    align-items: center;
    flex-direction: row;
    gap: unset;
    justify-content: space-between;
  }
}

.advertisement__cta {
  align-self: flex-start;
}

.advertisement__caption {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 100%;
  text-wrap: auto;
  text-transform: uppercase;
  font-family: Knockout54, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size-adjust: cap-height 0.765;
  font-stretch: expanded;
  font-weight: 700;
  transform: scaleY(0.9);
  font-size: clamp(1rem, 0.9286rem + 0.3571vw, 1.25rem);
  line-height: 1.2;
}
:where(:has(.font-loaded)) .advertisement__caption {
  font-size-adjust: unset;
  font-stretch: unset;
  font-weight: unset;
  transform: none;
}
:has(.font-loaded) .advertisement__caption {
  line-height: 1.125;
}

.advertisement__subcaption {
  margin-bottom: 0;
  text-transform: uppercase;
  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) .advertisement__subcaption {
  line-height: 1.57;
}

.advertisement__content-wrapper img,
.advertisement__primary-image--left img,
.advertisement__right-column img {
  border-radius: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 768px) {
  .advertisement__content-wrapper img,
  .advertisement__primary-image--left img,
  .advertisement__right-column img {
    border-radius: 1.25rem;
  }
}

.advertisement--internal {
  align-items: center;
  margin-block: 3.5rem;
}
@media (min-width: 1024px) {
  .advertisement--internal {
    flex-direction: row;
    margin-block: 6.25rem;
  }
}
.advertisement--internal .advertisement__left-column {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  row-gap: 2rem;
}
@media (min-width: 1024px) {
  .advertisement--internal .advertisement__left-column {
    flex: 1 41%;
    row-gap: 0;
  }
}
@media (min-width: 1024px) {
  .advertisement--internal .advertisement__title {
    margin-block-start: 2rem;
  }
}
@media (min-width: 1024px) {
  .advertisement--internal .advertisement__caption-wrapper {
    margin-block-start: 1.25rem;
  }
}
@media (min-width: 1024px) {
  .advertisement--internal .advertisement__primary-image--left {
    display: none;
  }
}
.advertisement--internal .advertisement__cta {
  margin-block-start: 0.5rem;
}
@media (min-width: 1024px) {
  .advertisement--internal .advertisement__cta {
    margin-block-start: 2.25rem;
  }
}
.advertisement--internal .advertisement__right-column {
  display: none;
}
@media (min-width: 1024px) {
  .advertisement--internal .advertisement__right-column {
    display: block;
    flex: 1 59%;
  }
}
/*# sourceMappingURL=../maps/advertisement/advertisement.css.map */
