/* #region "../src/elements/shared/authors/authors.entry.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
 ******************************/
.authors-wrapper {
  container: authors/inline-size;
}

.authors {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  column-gap: /* grow(16, 28) */ clamp(1rem, 0.75rem + 1.1111111111vw, 1.75rem);
  max-width: 30rem;
}
@container (width >= 20rem) {
  .authors {
    row-gap: 1.5rem;
  }
}
.authors .author {
  display: flex;
  flex-direction: column;
}
@container (width >= 20rem) {
  .authors .author {
    flex-direction: row;
    align-items: center;
  }
}
@container (width < 20rem) {
  .authors .author:is(.author.with-image) {
    gap: 0.875rem;
  }
}
@container (width >= 20rem) {
  .authors .author:is(.authors.with-images *) {
    gap: /* grow(24, 40) */ clamp(1.5rem, 1.1666666667rem + 1.4814814815vw, 2.5rem);
  }
}
.authors .author .author-image {
  display: none;
  flex-shrink: 0;
  width: 6rem;
}
@container (width < 20rem) {
  .authors .author .author-image:is(.author.with-image *) {
    display: block;
  }
}
@container (width >= 20rem) {
  .authors .author .author-image:is(.authors.with-images *) {
    display: block;
  }
}
.authors .author .author-image img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
}
.authors .author .author-content {
  font-family: var(--base-font-family);
  line-height: var(--base-line-height);
  font-size: var(--reduced-font-size);
}
.authors .author .author-content .description > :first-child, .authors .author .author-content .description > :where(link, a[name]):first-child + *, .authors .author .author-content .description > :where(.text:first-child) > *:first-child, .authors .author .author-content .description > :where(.text:first-child) > .lead-text:first-child > *:first-child {
  margin-top: 0;
}
.authors .author .author-content .description > :last-child, .authors .author .author-content .description > :where(.text:last-child) > *:last-child, .authors .author .author-content .description > :where(.text:last-child) > .lead-text:last-child > *:last-child {
  margin-bottom: 0;
}
.authors .author .author-content a:where(:not(:hover, :active)) {
  text-decoration: none;
}
/* #endregion "../src/elements/shared/authors/authors.entry.scss" */

head{--webpack--css-authors:&\.\.\/src\/elements\/shared\/authors\/authors\.entry\.scss;}
/*# sourceMappingURL=css-authors.css.map*/