.puzzle {
  background: #fefae0;
  border: 1px solid #999;
  border-bottom-width: 4px;
  border-radius: 3px;
  margin: 0 -0.5rem 0.5rem;
  padding: 1rem 1rem 1.2rem;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.puzzle:active,
.puzzle.active {
  background: #dfc9a4;
  border-color: #394933;
  transform: translateY(2px);
}

@media (hover: hover) {
  .puzzle:hover {
    background: #dfc9a4;
    border-color: #394933;
  }
}

.puzzle p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
  margin-right: 0.5rem;
  font-size: 0.9rem;
}
