@charset "UTF-8";
/**
 * @file
 * Styles for the Gallery 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 {
  --gallery-pagination-bullet-size: 1rem;
  --gallery-slide-inline-size: 22.5625rem;
  --gallery-slide-block-size: 12.6875rem;
  --gallery-slide-radius: 0.75rem;
  --gallery-intro-margin-inline: 1rem;
}
@media (min-width: 768px) {
  :root {
    --gallery-slide-inline-size: min(calc(100vw - 6rem * 2), 51.375rem);
    --gallery-slide-block-size: 28.9375rem;
    --gallery-slide-radius: 1.25rem;
    --gallery-intro-margin-inline: 6rem;
  }
}

.gallery {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: minmax(0, 1fr) var(--gallery-slide-inline-size) minmax(0, 1fr);
  grid-template-rows: repeat(3, min-content);
  overflow: hidden;
  position: relative;
}
.gallery:focus-visible {
  outline: 0.125rem solid var(--border-focus);
  outline-offset: 0.25rem;
}
.gallery .gallery__intro {
  grid-column: span 3;
  margin-inline: var(--gallery-intro-margin-inline);
}
.gallery .gallery__intro h2 {
  text-transform: uppercase;
  font-family: Knockout66, system-ui, Segoe UI, Roboto, Helvetica, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
  font-size-adjust: cap-height 0.316;
  font-stretch: extra-condensed;
  font-weight: 700;
  transform: scaleY(2.07);
  font-size: clamp(5.75rem, 5.5357rem + 1.0714vw, 6.5rem);
  line-height: 0.36;
}
:where(:has(.font-loaded)) .gallery .gallery__intro h2 {
  font-size-adjust: unset;
  font-stretch: unset;
  font-weight: unset;
  transform: none;
}
:has(.font-timed-out) .gallery .gallery__intro h2 {
  font-family: system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
:has(.font-loaded) .gallery .gallery__intro h2 {
  line-height: 0.74;
}
.gallery .swiper {
  display: grid;
  grid-column: 2;
  grid-template-columns: subgrid;
  overflow: visible;
}
.gallery .swiper-wrapper {
  align-items: start;
}
.gallery .swiper-slide {
  inline-size: var(--gallery-slide-inline-size);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery .swiper-slide .gallery-slide__content {
  opacity: 0;
}
.gallery .swiper-slide-active .gallery-slide__content {
  opacity: 1;
}
.gallery .gallery__controls {
  align-items: center;
  display: flex;
  gap: 1rem;
  grid-column: 2;
  grid-row: 3;
  justify-content: space-between;
  margin-block-start: auto;
}
.gallery .gallery__navigation {
  align-items: center;
  aspect-ratio: 1;
  background: transparent;
  block-size: 2.5rem;
  border: 0.125rem solid currentColor;
  border-radius: 50%;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  inline-size: 2.5rem;
  justify-content: center;
  z-index: 2;
}
.gallery .gallery__navigation:focus-visible {
  background-color: var(--surface-hover);
  outline: 0.125rem solid var(--border-focus);
  outline-offset: 0.125rem;
}
.gallery .gallery__pagination {
  --swiper-pagination-bullet-inactive-opacity: 1;
  align-items: center;
  display: flex;
  gap: 0.5rem;
  justify-content: flex-end;
  margin: 0 0 0 auto;
}
.gallery .gallery__pagination .swiper-pagination-bullets {
  align-items: center;
  display: flex;
  gap: 0.25rem;
  justify-content: flex-end;
}
.gallery .gallery__pagination .swiper-pagination-bullet {
  background-color: var(--text-primary);
  block-size: var(--gallery-pagination-bullet-size);
  border-radius: 50%;
  inline-size: var(--gallery-pagination-bullet-size);
  margin: 0;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  -webkit-mask-image: radial-gradient(circle, transparent 0%, transparent 50%, black 50%, black 100%);
          mask-image: radial-gradient(circle, transparent 0%, transparent 50%, black 50%, black 100%);
  transition: all 0.3s ease;
}
.gallery .gallery__pagination .swiper-pagination-bullet:focus-visible {
  background-color: var(--surface-action);
  outline: 0.125rem solid var(--border-focus);
  outline-offset: 0.125rem;
}
.gallery .gallery__pagination .swiper-pagination-bullet:nth-child(n+3):nth-last-child(n+4) {
  --gallery-pagination-bullet-size: 0.5rem;
}
.gallery .gallery__pagination .swiper-pagination-bullet:nth-child(n+4):nth-last-child(n+3) {
  --gallery-pagination-bullet-size: 0.25rem;
}
.gallery .gallery__pagination .swiper-pagination-bullet-active {
  background-color: var(--text-primary);
  -webkit-mask-image: none;
          mask-image: none;
}
.gallery .gallery__pagination .gallery__pagination-separator {
  background-color: var(--text-tertiary);
  block-size: 0.0625rem;
  inline-size: 1.25rem;
  transform: rotate(90deg);
}
.gallery .gallery__pagination .gallery__pagination-counter {
  color: var(--text-primary);
  font-family: var(--font-family-heading);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5rem;
  text-align: end;
}
.gallery .gallery__pagination .gallery__pagination-counter .gallery__pagination-current {
  color: var(--text-primary);
}
.gallery .gallery__pagination .gallery__pagination-counter .gallery__pagination-total {
  color: var(--text-tertiary);
}
/*# sourceMappingURL=../maps/gallery/gallery.css.map */
