.conga-quest-anthology-page {
  color: #f8b800;

  .content {
    padding: 0 0 40px;
  }

  .title-art {
    display: block;
    width: min(600px, calc(100% - 32px));
    margin: 16px auto;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
  }

  p {
    margin-bottom: 16px;
  }

  .content > p {
    text-align: left;
  }

  .content > .episode-cta {
    text-align: center;
    color: #f80096;
  }

  .nav,
  h2,
  p,
  a {
    color: inherit;
  }
}

.day .conga-quest-anthology-page,
.day.conga-quest-anthology-page {
  color: #0b1e3f;
}

.history-section {
  width: min(1100px, 100%);
  margin: 112px auto 0;
  padding: 0 16px;
  box-sizing: border-box;

  h2 {
    margin-bottom: 8px;
    text-transform: uppercase;
  }

  p {
    margin-bottom: 16px;
    text-align: left;
  }

  .history-inline-link {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
  }

  .history-shout {
    text-align: center;
  }

  .history-note {
    font-size: 50%;
    opacity: 0.5;
  }
}

.history-entries {
  display: flex;
  justify-content: center;
  padding: 0;
}

.history-entry {
  display: block;
  line-height: 0;
  text-decoration: none;
  transition: transform 120ms ease-in-out;
  margin: 0 8px 16px;

  &:hover {
    transform: translateY(-4px);
  }

  .episode-cover-art {
    display: block;
    width: 300px;
    height: 400px;
    image-rendering: pixelated;
    image-rendering: -moz-crisp-edges;
    image-rendering: crisp-edges;
  }
}

.episode-cards {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  justify-content: center;

  & > * {
    margin: 0 8px 16px;
  }

  .episode-card {
    display: block;
    line-height: 0;
    text-decoration: none;
    transition: transform 120ms ease-in-out;

    &:hover {
      transform: translateY(-4px);
    }

    .episode-cover-art {
      display: block;
      width: 300px;
      height: 400px;
      image-rendering: pixelated;
      image-rendering: -moz-crisp-edges;
      image-rendering: crisp-edges;
    }
  }
}

@media screen and (max-width: 600px) {
  .content-scroller {
    justify-content: flex-start;
  }

  .history-section {
    margin-top: 64px;

    p {
      margin-bottom: 12px;
    }
  }

  .history-entry {
    .episode-cover-art {
      width: 200px;
      height: 300px;
    }
  }

  .episode-cards {
    max-width: none;
    width: max-content;
    margin: 0;
    justify-content: flex-start;

    & > * {
      margin: 0 8px 16px 0;
    }

    .episode-card {
      .episode-cover-art {
        width: 200px;
        height: 300px;
      }
    }
  }
}
