
/*!**********************************************************!*\
  !*** ../src/elements/revealing-text/revealing-text.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
 ******************************/
.revealing-text {
  font-family: var(--accent-font-family);
  font-size: /* grow(38, 62) */ clamp(2.375rem, 1.9659090909rem + 1.8181818182vw, 3.875rem);
  font-weight: 550;
  line-height: 1.2;
  height: var(--scroll-height, auto);
  text-align: center;
  text-wrap: balance;
}
.revealing-text .revealing-text-content-wrapper {
  position: sticky;
  top: 0;
  height: var(--reveal-height);
  display: flex;
  align-items: center;
}
.revealing-text .revealing-text-content > :first-child, .revealing-text .revealing-text-content > link:first-child + * {
  margin-top: 0;
}
.revealing-text .revealing-text-content > :last-child {
  margin-bottom: 0;
}
.revealing-text .revealing-text-content > :is(.large-text, .lead-text):first-child > :first-child {
  margin-top: 0;
}
.revealing-text .revealing-text-content > :is(.large-text, .lead-text):last-child > :last-child {
  margin-bottom: 0;
}
.revealing-text .revealing-text-content-lines {
  mask-image: linear-gradient(to right, #000 calc(var(--reveal-progress) * 100%), rgba(0, 0, 0, 0.3333333333) calc(var(--reveal-progress) * 100%));
}

/*# sourceMappingURL=css-wpce--revealing-text.css.map*/