
/*!*********************************************************!*\
  !*** ../src/elements/testimonials/testimonial-box.scss ***!
  \*********************************************************/
@charset "UTF-8";
/*******************************
 * 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
 ******************************/
.testimonial-box .testimonial-content-wrapper {
  position: relative;
  margin: 0 auto;
  font-family: var(--base-font-family);
  font-size: var(--lead-font-size, calc(1.25 * var(--base-font-size)));
  line-height: var(--lead-line-height, var(--base-line-height));
}
.testimonial-box .testimonial-container {
  padding: 0;
}
.testimonial-box .testimonial-quote {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: /* grow(24, 48) */ clamp(1.5rem, 1.0909090909rem + 1.8181818182vw, 3rem);
}
.testimonial-box .testimonial-quote:not(.testimonials-wrap *) {
  max-width: 1070px;
  margin-inline: auto;
}
.testimonial-box .testimonial-content {
  font-size: /* grow(22, 28) */ clamp(1.375rem, 1.2727272727rem + 0.4545454545vw, 1.75rem);
  text-align: left;
  text-wrap: pretty;
}
.testimonial-box .testimonial-content > :first-child, .testimonial-box .testimonial-content > link:first-child + * {
  margin-top: 0;
}
.testimonial-box .testimonial-content > :last-child {
  margin-bottom: 0;
}
.testimonial-box .testimonial-content > :is(.large-text, .lead-text):first-child > :first-child {
  margin-top: 0;
}
.testimonial-box .testimonial-content > :is(.large-text, .lead-text):last-child > :last-child {
  margin-bottom: 0;
}
.testimonial-box .testimonial-content:not(.testimonials-wrap *) {
  text-align: center;
}
.testimonial-box .testimonial-content > :first-child::before {
  content: "«";
}
.testimonial-box .testimonial-content > :last-child::after {
  content: "»";
}
.testimonial-box .testimonial-author {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto auto;
  grid-template-areas: "author" "position";
  column-gap: 1rem;
  margin-inline: 0;
  font-style: normal;
  text-align: left;
}
.testimonial-box .testimonial-author:not(.testimonials-wrap *) {
  margin-inline: auto;
}
.testimonial-box .testimonial-author.with-avatar {
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "avatar author" "avatar position";
}
.testimonial-box .testimonial-avatar {
  --size: 3.75rem;
  grid-area: avatar;
  align-self: flex-start;
  border-radius: var(--rounded);
  width: var(--size);
  height: var(--size);
}
.testimonial-box .testimonial-name {
  grid-area: author;
  align-self: flex-end;
  font-family: var(--accent-font-family);
  font-size: /* grow(18, 20) */ clamp(1.125rem, 1.0909090909rem + 0.1515151515vw, 1.25rem);
  font-weight: 550;
  line-height: 1.25;
  letter-spacing: 0;
}
.testimonial-box .testimonial-position {
  grid-area: position;
  font-size: var(--reduced-font-size);
  align-self: flex-start;
  color: color-mix(in srgb, currentColor, transparent 45%);
  line-height: var(--reduced-line-height);
  max-width: 40ch;
  text-wrap: balance;
}

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