.challenge-card__preview {
  width: 100%;
  margin: 0;
  padding: 0;
  aspect-ratio: 16/9;
  text-align: center;
}
.challenge-card__preview > img {
  max-height: 100%;
}
.challenge-card__title {
  padding: 0.25rem;
  padding-right: auto;
  margin: 0;
  color: var(--content-title-color);
  font-size: 1rem;
  font-style: italic;
}
.challenge-card {
  position: relative;
  box-shadow: 0 0 0.4rem gray;
  background-color: whitesmoke;
  border-radius: 4px;
  font-size: 1rem;
  overflow: hidden;
  transition: box-shadow 0.2s ease-in-out;
}
.challenge-card:hover {
  box-shadow: 0 0 0.8rem gray;
}
.challenge-card > a {
  text-decoration: none;
}
/*# sourceMappingURL=challenge-card.css.map */