
/*!************************************!*\
  !*** ../src/elements/box/box.scss ***!
  \************************************/
.content-box {
  display: flex;
  position: relative;
  margin: 2em 0;
  transition: all ease 300ms;
  transition-property: box-shadow, transform;
  justify-content: stretch;
}
.content-box[data-style=default] {
  color: var(--box-color, inherit);
}
.content-box[data-style=default] .content-wrap {
  font-weight: 500;
}
.content-box[data-style=cta] {
  background-color: var(--cta-background);
  color: var(--cta-foreground);
}
.content-box[data-style=cta][data-color] {
  --cta-background: var(--box-color);
  --cta-foreground: var(--color-white);
}
.content-box[data-style=cta] .content-wrap {
  padding: 1rem;
}
.content-box[data-style=testimonial] {
  color: var(--testimonial-color);
  border-left: 3px solid currentColor;
  padding-left: 0.75em;
}
@media (min-width: 540px) {
  .content-box[data-style=testimonial] {
    margin-left: calc(var(--spacing-unit) * 2.5);
  }
}
.content-box[data-style=testimonial][data-color] {
  --testimonial-color: var(--box-color);
}
.content-box img {
  align-self: center;
}
.content-box .img-wrap {
  display: block;
  flex-shrink: 0;
}
.content-box .img-wrap img {
  width: 100%;
}
.content-box .content-wrap {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  flex-grow: 1;
  height: auto;
}
.content-box .content-wrap .content > :first-child, .content-box .content-wrap .content > link:first-child + * {
  margin-top: 0;
}
.content-box .content-wrap .content > :last-child {
  margin-bottom: 0;
}
.content-box .content-wrap .content {
  height: 100%;
  width: 100%;
}
.content-box .content-wrap p a {
  color: inherit;
  text-decoration-color: currentColor;
}
.content-box .next-icon {
  margin-left: 20px;
}
.content-box.type-imgtop {
  flex-flow: column;
}
.content-box.type-imgtop .content-wrap *:last-child.button-group {
  margin-top: auto;
}
.content-box.type-imgleft {
  flex-flow: row;
  align-items: center;
}
.content-box.type-imgleft .img-wrap {
  padding: 1rem;
}
.content-box.type-imgleft .content-wrap {
  border-left: 2px solid #E1E2E0;
}

/*# sourceMappingURL=css-wpce--box.css.map*/