.challenge__title {
  font-size: 1.25rem;
  font-weight: bold;
  font-style: italic;
  color: var(--content-title-color);
  text-align: center;
}
.challenge__preview {
  display: inline-block;
  width: 54%;
  margin: 2%;
  padding: 0;
  aspect-ratio: 16/9;
  vertical-align: top;
}
.challenge__preview > img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 8px;
}
@media screen and (orientation: portrait) {
  .challenge__preview {
    width: 96%;
  }
}
.challenge__description {
  display: inline-block;
  width: 36%;
  margin: 2%;
  padding: 0;
  vertical-align: top;
}
.challenge__description__body {
  text-align: left;
  font-size: 1rem;
}
.challenge__description__body a {
  color: var(--link-color);
  font-weight: bold;
  text-decoration: none;
}
.challenge__description__body ol > li::marker {
  font-weight: bolder;
}
@media screen and (orientation: portrait) {
  .challenge__description {
    width: 96%;
  }
}
.challenge__info {
  border-collapse: collapse;
  width: 100%;
  border: 2px solid lightgray;
  text-align: left;
}
.challenge__info tr th {
  width: 30%;
  padding: 0.5rem;
  border: 1px solid lightgray;
  vertical-align: top;
}
.challenge__info tr th > i {
  display: none;
  width: 1rem;
}
.challenge__info tr td {
  width: 70%;
  padding: 0.5rem;
  border: 1px solid lightgray;
}
.challenge__info tr:nth-child(odd) {
  background-color: rgba(0, 0, 0, 0.025);
}
.challenge__info__duration {
  font-weight: bold;
}
.challenge__info__reward {
  font-weight: bold;
}
.challenge {
  font-size: 1rem;
  text-align: center;
}
/*# sourceMappingURL=challenge.css.map */