// Use with @include box-with-shadow();
@mixin box-with-shadow() {
  background-color: var(--color-white);
  border-radius: 0.625rem;
  box-shadow: 0.0625rem 0.0625rem 2.3125rem 0 rgb(0 0 0 / .05);
  padding: 3.4375rem;
}
