
/*!***********************************************************************************!*\
  !*** ../src/features/post-types/employee/elements/employee-box/employee-box.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
 ******************************/
.box.employee-box {
  --box-padding: 2rem;
  --filter: none;
}
@media (hover: hover) and (pointer: fine) {
  .box.employee-box {
    --filter: grayscale(100%);
  }
  .box.employee-box:hover {
    --filter: grayscale(0%);
  }
}
.box.employee-box .img-wrap img {
  filter: var(--filter);
  transition: filter 300ms;
}
.box.employee-box .employee-text > :first-child, .box.employee-box .employee-text > link:first-child + * {
  margin-top: 0;
}
.box.employee-box .employee-text > :last-child {
  margin-bottom: 0;
}
.box.employee-box .employee-text > :is(.large-text, .lead-text):first-child > :first-child {
  margin-top: 0;
}
.box.employee-box .employee-text > :is(.large-text, .lead-text):last-child > :last-child {
  margin-bottom: 0;
}
.box.employee-box .employee-box-title {
  font-family: var(--accent-font-family);
  font-size: /* grow(20, 24) */ clamp(1.25rem, 1.1818181818rem + 0.303030303vw, 1.5rem);
  font-weight: 550;
  line-height: 1.25;
  letter-spacing: 0;
  margin-bottom: 0.5rem;
}
.box.employee-box .employee-position {
  margin-bottom: 1rem;
}
.box.employee-box .employee-contact-link {
  font-size: 1rem;
}

/*# sourceMappingURL=css-shared-template--employee-box.css.map*/