.card {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  width: var(--width);
  max-width: 100%;
  margin: 20px;
}
.card .card_image {
  flex-shrink: 0;
  width: var(--width);
  height: calc(0.6666666667 * var(--width));
  max-width: 100%;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1882352941);
}
.card .card_image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.card .card_text {
  width: 100%;
}
.card .card_text .card_name {
  display: block;
  margin-bottom: 10px;
  text-align: center;
  font-weight: 600;
}
.card .card_text .tags {
  text-align: center;
}

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