@charset "UTF-8";
/**
 * @file
 * Styles for the Gallery Slide 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
*/
.gallery-slide {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.gallery-slide__media-wrapper {
  background-color: var(--surface-tertiary);
  block-size: var(--gallery-slide-block-size);
  border-radius: var(--gallery-slide-radius);
  contain: strict;
  contain-intrinsic-size: var(--gallery-slide-inline-size) var(--gallery-slide-block-size);
  container: gallery-slide/size;
  content-visibility: auto;
  max-inline-size: var(--gallery-slide-inline-size);
  overflow: hidden;
  position: relative;
}
.gallery-slide__media-wrapper .gallery-slide__video-container,
.gallery-slide__media-wrapper img {
  aspect-ratio: 16/9;
  block-size: var(--gallery-slide-block-size);
  inline-size: var(--gallery-slide-inline-size);
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-slide-active .gallery-slide__media-wrapper:has([data-vimeo-initialized=true]) :where(img, .gallery-slide__play-button) {
  display: none;
}

.swiper-slide .gallery-slide__play-button {
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  inset-block-start: 50cqb;
  inset-inline-start: 50cqi;
  padding: 0.75rem;
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.swiper-slide .gallery-slide__play-button .tnds-play {
  padding-inline-start: 0.5em;
}

.swiper-slide .gallery-slide__video-container {
  background-color: black;
  border-radius: var(--gallery-slide-radius);
  contain: paint;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
}
.swiper-slide .gallery-slide__video-container iframe {
  block-size: 100%;
  inline-size: 100%;
}

.swiper-slide-active :is(.gallery-slide__video-container, .gallery-slide__play-button) {
  pointer-events: auto;
}

.gallery-slide__content {
  padding: 2rem 0;
  position: relative;
}

.gallery-slide__headline {
  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;
}
:where(:has(.font-loaded)) .gallery-slide__headline {
  font-size-adjust: unset;
  font-stretch: unset;
  font-weight: unset;
  transform: none;
}
:has(.font-timed-out) .gallery-slide__headline {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
:has(.font-loaded) .gallery-slide__headline {
  line-height: 1.125;
}

.gallery-slide__description {
  font-size: 1rem;
  line-height: 1.5rem;
  margin-block-end: 1rem;
}

.gallery-slide__caption {
  font-size: 0.875rem;
  letter-spacing: 0.0875rem;
  line-height: 1rem;
}
/*# sourceMappingURL=../maps/gallery-slide/gallery-slide.css.map */
