/* #region "../src/functions/employees/elements/employee-list/employee-list.scss" */
/*
- type: css
*/
/*******************************
 * 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
 ******************************/
.employee-grid.grid-layout {
  --cols-xs: 12;
  --cols-s: 6;
  --cols-md: 4;
  --cols-lg: 3;
}

.employee {
  height: 100%;
  --card-background: var(--grey-50);
  --card-padding-top: 1.5rem;
  --card-padding-bottom: 1.75rem;
  --card-padding-x: 2rem;
}
.employee:is(.background.style-light *) {
  --card-border-width: 1px;
  --card-background: var(--white);
}
.employee .employee-name {
  margin: 0;
}
.employee .employee-image {
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}
.employee .employee-image img {
  border-radius: 50%;
  border: 2px solid var(--white);
}
.employee .employee-description {
  position: absolute;
  z-index: 1;
  inset: 1px;
  border-radius: calc(0.25rem - 1px);
  background-color: rgb(var(--grey-50-rgb)/85%);
  backdrop-filter: blur(20px);
  color: var(--text-color);
  overflow: auto;
  opacity: 0;
  padding: 1.25rem;
  pointer-events: none;
  transition: opacity 300ms;
}
.employee .employee-description > :first-child, .employee .employee-description > link:first-child + *, .employee .employee-description > .lead-text:first-child > *:first-child {
  margin-top: 0;
}
.employee .employee-description > :last-child, .employee .employee-description > .lead-text:last-child > *:last-child {
  margin-bottom: 0;
}
.employee .employee-description:is(.background.style-light *) {
  background-color: rgb(var(--white-rgb)/85%);
}
.employee .employee-description:is(.employee.active *) {
  opacity: 1;
  pointer-events: all;
}
.employee .employee-description-button {
  margin-top: 0.8125rem;
  font-size: 0.9375rem;
}
.employee .employee-description-back {
  margin-top: 0.8125rem;
  font-size: 0.9375rem;
}
.employee .employee-position {
  margin-bottom: 0.5em;
  line-height: 1.2;
}
.employee .employee-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.375rem;
  margin: 0.75rem 0 0.5rem;
  line-height: 1.2;
  font-size: 0.9375rem;
}
.employee .employee-contact-list li {
  padding: 0;
}
.employee .employee-contact-list a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: first baseline;
  gap: 0.5rem;
}
.employee .employee-contact-list a:hover {
  color: var(--primary);
}
.employee .employee-contact-list a img {
  position: relative;
}
.employee .employee-contact-list .employee-phone img {
  top: 0.25rem;
}
.employee .employee-contact-list .employee-mobile img {
  top: 0.25rem;
}
.employee .employee-contact-list .employee-email img {
  top: 0.3rem;
}
@container card (width > 320px) {
  .employee {
    --card-padding-x: 1.5rem;
    --card-padding-bottom: 1.5rem;
  }
  .employee .card-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }
  .employee .card-inner .employee-image {
    max-width: 40%;
    margin: 0;
  }
  .employee .employee-description-button {
    margin-top: 0.25rem;
  }
  .employee .employee-description-button,
  .employee .employee-description-back {
    font-size: 0.875rem;
  }
  .employee .employee-description {
    padding: clamp(1rem, 6.625rem + -25cqw, 1.875rem);
  }
}
/* #endregion "../src/functions/employees/elements/employee-list/employee-list.scss" */

head{--webpack--css-wpce--employee-list:&\.\.\/src\/functions\/employees\/elements\/employee-list\/employee-list\.scss;}
/*# sourceMappingURL=css-wpce--employee-list.css.map*/