.card {
  background-color: white;
  border: solid 1px #d6d6d6;
  box-shadow: 0 1px 4px hsla(0, 0%, 0%, 0.1);
  position: relative;
  margin: 0; /* Because it's typically in a grid */
  border-radius: 4px;
  /*overflow: hidden;*/ /* hidden will hide an outline when hovering */
  max-width: 600px;
  font-size: 0.85em;
}
.card > .show img {
  width: 100%;
}
.card.padding, .card > .tell {
  padding: 1em 0.9em;
}
.card > .tell > h3 {
  font-size: 1.2em;
  margin-top: 0;
}
.card > .tell > :last-child {
  margin-bottom: 0;
}
.card:not([data-view-mode=full]) .type {
  position: absolute;
  top: 4px;
  right: 0;
  text-transform: capitalize;
  background: purple;
  color: white;
  padding: 0.1em 0.5em;
  font-size: 0.7rem;
  border-radius: 4px 0 0 4px;
}
.card p:last-child {
  margin-bottom: 0;
}
.card .field {
  margin-top: 0;
  margin-bottom: 0;
}
.card .field + .field {
  margin-top: 0.5em;
}
.card .field .icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.card.link {
  position: relative;
}
.card.link :is(h2, h3) a::after {
  content: "";
  position: absolute;
  inset: 0;
}
.card.link :is(h2, h3) a:hover::after {
  outline: solid 2px var(--colour-primary);
}
.card .field--name-field-tags::before {
  content: "";
  background-image: url(images/tag.svg);
  width: 16px;
  height: 16px;
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
}
.card .field--name-field-tags div {
  display: inline;
}
.card .actions {
  text-align: right;
  margin-top: 0.5em;
}
.card.take-action {
  border-bottom: solid 3px var(--colour-primary);
}
.card.take-action h3 {
  text-align: center;
}

/*# sourceMappingURL=card.css.map */
