@import url('https://fonts.googleapis.com/icon?family=Material+Icons+Round');

.page-link {
  display: block;
}

.page-link a {
  margin: 1.25em 0;
  padding: 0.75em 1.5em;
  border-radius: 0.6em;
  background-color: white;
  box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.09);
  cursor: pointer;
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  color: black;
  transition: 0.3s box-shadow, 0.3s transform;
}

.page-link a:hover {
  box-shadow: 0 3px 20px 0px rgba(0, 0, 0, 0.15);
  transform: scale(101%);
}

.page-link a.disabled {
  pointer-events: none;
  opacity: 80%;
  color: lightgray;
  box-shadow: none;
  background-color: rgb(250, 250, 250);
}

.page-link a.disabled .page-link__arrow {
  display: none;
}

.page-link a * {
  margin: 0.25em 0;
}

.page-link__text-container {
  flex: 1;
}

.page-link__arrow {
  color: gray;
}

.page-link h3 {
  font-weight: 600;
}

.page-link p {
  font-size: 0.9em;
}

.page-link .preview {
  width: 300px;
}
