
/*!**********************************************!*\
  !*** ../src/elements/hero-cta/hero-cta.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
 ******************************/
.hero-cta {
  --box-max-width: 660px;
}
.hero-cta:is(section.main > *:first-child,
section.main > link:first-child + *,
section.main > link:first-child + link + *) {
  margin-top: calc(-1 * var(--header-height));
  --hero-additional-padding-top: var(--header-height);
}
.hero-cta .box {
  font-size: var(--increased-font-size);
}
@media (width < 768px /* sm */) {
  .hero-cta .hero-base-section.hero-base-section {
    --content-alignment: flex-end;
    --hero-height: auto;
  }
  .hero-cta .hero-base-section.hero-base-section .hero-media {
    padding-top: 320px;
  }
}
.hero-cta .hero-base-section.hero-base-section .hero-media-overlay {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) calc(100% - 240px));
}
@media (width >= 768px /* sm */) {
  .hero-cta .hero-base-section.hero-base-section .hero-media-overlay {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) calc(var(--content-margin) + var(--box-max-width) + 15vw));
  }
}
.hero-cta .hero-base-section.hero-base-section .hero-media-overlay:not(:has(+ .hero-content-wrapper)) {
  display: none;
}

/*# sourceMappingURL=css-wpce--hero-cta.css.map*/