
/*!****************************************!*\
  !*** ../src/elements/intro/intro.scss ***!
  \****************************************/
/*******************************
 * Buttons
 ******************************/
/*
 * Applies the complete set of button styles with all desired style variations.
 * This mixin is normally applied to form buttons or links with
 * the desired button classes eg. .button.style-xxx.
 */
/*
 * Contains styles that all of the buttons have in common.
 * Some button styles might opt out or override some of these styles.
 * One benefit of this approach is that all of the buttons will be consistently
 * configurable with the CSS variables defined below.
 */
/*******************************
 * Button Styles
 *
 * Styles should define the way the buttons look. Depending on the project,
 * you may need to optimize each style based on the section / element that
 * a button is used in. For that purpose you can use the predefined CSS
 * variables to easily overwrite the desired colors based on your need.
 ******************************/
/*******************************
 * Inputs
 ******************************/
:root {
  --intro-content-block-padding: /* grow(20, 50) */ clamp(1.25rem, 0.4464285714rem + 3.5714285714vw, 3.125rem);
}

.intro {
  --intro-pseudo-max-height: calc(var(--100svh) - var(--header-height) - var(--admin-bar-height, 0px) - var(--info-bar-height, 0px));
  display: grid;
  position: relative;
  grid-template-columns: minmax(0, 1fr);
  background-color: var(--color-accent, #F6F8FA);
}
.intro:where(:has(+ .internal-links)) {
  --intro-pseudo-max-height: calc(var(--100svh) - var(--header-height) - var(--admin-bar-height, 0px) - 71px);
}
.intro::before, .intro .intro-content {
  grid-column: 1/-1;
  grid-row: 1/-1;
}
.intro::before {
  content: "";
  width: 100%;
  max-height: var(--intro-pseudo-max-height);
  min-height: 100%;
  aspect-ratio: 16/9;
}
.intro .intro-content {
  display: flex;
  flex-wrap: wrap;
  align-self: center;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--intro-content-block-padding);
  gap: var(--layout-gap);
}
.intro .intro-content-main {
  position: relative;
  z-index: 1;
  flex: 1 1 50%;
}
.intro .intro-content::after {
  content: "";
  display: none;
  flex: 0 0 /* grow(200, 448) */ clamp(12.5rem, 5.8571428571rem + 29.5238095238vw, 28rem);
  aspect-ratio: 448/568;
  background-color: currentcolor;
  mask-image: url(8229b6f041d84808.svg);
  mask-repeat: no-repeat;
  mask-size: cover;
  color: var(--color-accent-tertiary, #D8DBE2);
}
@media (min-width: 992px) {
  .intro .intro-content::after {
    display: block;
  }
}
.intro .intro-scroll-indicator-wrapper {
  order: 1;
  display: none;
  justify-content: center;
  flex: 0 0 100%;
}
@media (min-width: 992px) {
  .intro .intro-scroll-indicator-wrapper {
    display: flex;
  }
}
.intro .intro-scroll-indicator {
  all: revert;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  border-radius: 0;
  appearance: none;
  cursor: pointer;
  transition: opacity 200ms;
}
.intro .intro-scroll-indicator.leave {
  opacity: 0;
  pointer-events: none;
}
.intro .intro-scroll-indicator svg {
  width: 22px;
  height: auto;
  transform: rotate(90deg);
}
.intro + .page-section:where(:has(.section-grid:first-child .section-item:first-child .tile)) {
  padding-top: 0;
  position: relative;
  margin-top: calc(var(--intro-content-block-padding) * -1 + 10px);
}

/*# sourceMappingURL=css-wpce--intro.css.map*/