/**
 * @file
 * Card image styles
 */

 .card-image__wrapper {
  background-color: var(--color-neutral--2);
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  margin-bottom: 2rem;
  width: fit-content;
  justify-content: center;
  align-items: center;
}

.card-image__image {
  display: flex;
  justify-content: center;
}

.card-image__content {
  padding: 0.5rem;
  font-size: 14px;
}

.card-image__name {
  font-weight: 700;
}


@media screen and (min-width: 500px) {
  .card-image__wrapper {
    margin-bottom: unset;
  }
}
