/**
 * Testimonial component style.
 */
:root {
  --testimonial-gutter: 1.11rem;
}
@media (min-width: 560px) {
  :root {
    --testimonial-gutter: 2.22rem;
  }
}

.c-testimonial {
  max-width: var(--w-wide);
}
.c-testimonial .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 180px;
  padding-left: var(--testimonial-gutter);
  border-left: 5px solid var(--c-brand);
}
@media (min-width: 560px) {
  .c-testimonial .container {
    flex-direction: row;
  }
}
.c-testimonial .testimonial__author,
.c-testimonial .testimonial__role {
  display: block;
  font-style: normal;
}
.c-testimonial .testimonial__image {
  margin-bottom: var(--testimonial-gutter);
}
@media (min-width: 560px) {
  .c-testimonial .testimonial__image {
    margin-right: var(--testimonial-gutter);
    margin-bottom: 0;
  }
}
.c-testimonial .testimonial__image img {
  width: 180px;
  min-width: 180px;
  height: 180px;
  object-fit: cover;
  font-family: "object-fit: cover;";
}
.c-testimonial .testimonial__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='134' height='112' viewBox='0 0 134 112'%3E%3Cpath fill='%23000' fill-rule='nonzero' d='M81 0v53.731h19.875v5.809c0 17.789-6.625 28.56-19.875 32.31V112c35.333-3.146 53-26.926 53-71.339V0H81zM0 0v53.731h19.875v5.809C19.875 77.329 13.25 88.1 0 91.85V112c35.333-3.146 53-26.926 53-71.339V0H0z' opacity='.05'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: top right;
}
.c-testimonial .testimonial__footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: var(--testimonial-gutter);
}
@media (min-width: 560px) {
  .c-testimonial .testimonial__footer {
    margin-top: auto;
  }
}
.c-testimonial .testimonial__author {
  font-size: 1rem;
  font-weight: 700;
  color: #000;
}
.c-testimonial .testimonial__role {
  font-size: 0.77rem;
  font-weight: 400;
}