html {
  box-sizing: border-box;
}

body {
  margin: 0;
}

*,
*:before,
*:after {
  box-sizing: inherit;
  -webkit-tap-highlight-color: transparent;
}

:host {
  font-family: var(--c-font-family);
}

::-ms-reveal {
  display: none;
}

:host {
  display: block;
}

.c-card-content {
  padding: 0 var(--_c-card-gap, 24px);
  display: flex;
  flex-direction: column;
  gap: var(--_c-card-gap);
}
.c-card-content ::slotted(*) {
  max-width: 100%;
}