.aletheia-book-container {
  z-index: 1;
  perspective: 3000px;
  width: 100%;
}

.aletheia-book-link {
  display: block;
  width: 400px;
  max-width: 100%;
  margin: 5% auto;
  color: inherit;
  text-decoration: none;
}

.aletheia-book-container .book {
  position: relative;
  display: block;
  width: 400px;
  max-width: 100%;
  height: 550px;
  margin: 0 auto;
  border-radius: 2px 4px 4px 2px;
  background: linear-gradient( 45deg, #dad5dc 0%, #f2ebf4 100% );
  font-family: acumin-pro, sans-serif;
  font-weight: 400;
  color: #2b2b2b;
  box-shadow: 13px 13px 8px 0 rgba(151, 146, 153, 0.6);
  transform-style: preserve-3d;
  transition: transform 0.5s;
}

.aletheia-book-container .book:hover, .aletheia-book-link:focus-visible .book {
  transform: rotate3d(0, 1, 0, 35deg);
}

.aletheia-book-container .book > div, .aletheia-book-container .front > div {
  display: block;
  position: absolute;
}

.aletheia-book-container .front {
  transform-style: preserve-3d;
  transform-origin: 0% 50%;
  transition: transform 0.5s;
  transform: translate3d(0, 0, 20px);
  z-index: 10;
}

.aletheia-book-container .front > div {
  width: 400px;
  height: 550px;
}

.aletheia-book-container .left-side {
  width: 40px;
  left: -20px;
  height: 550px;
  background-color: rgb(32, 77, 108);
  transform: rotate3d(0, 1, 0, -90deg);
}

.aletheia-book-container .cover {
  width: 400px;
  height: 550px;
  overflow: hidden;
  background: linear-gradient( 45deg, #dad5dc 0%, #f2ebf4 100% );
}

.aletheia-book-container .cover img {
  display: block;
  width: 400px;
  height: 550px;
  object-fit: cover;
}

.aletheia-book-container .front > div {
  border-radius: 0 3px 3px 0;
  box-shadow: inset 4px 0 10px rgba(0, 0, 0, 0.1);
}

.aletheia-book-container .front::after {
  content: "";
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: -1px;
  width: 1px;
}

.aletheia-book-container .cover::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10px;
  width: 3px;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 1px 0 3px rgba(255, 255, 255, 0.1);
}

.aletheia-book-container h2 {
  width: 500px;
  height: 40px;
  margin: 0;
  color: #ffffff;
  font-size: 15px;
  line-height: 40px;
  padding-right: 10px;
  text-align: right;
  transform-origin: 0 0;
  transform: rotate(90deg) translateY(-40px);
}

.aletheia-book-container .left-side h2 span:first-child {
  font-weight: 400;
  font-size: 13px;
  padding-right: 20px;
}

.aletheia-book-container .left-side h2 span:last-child {
  font-family: acumin-pro, sans-serif;
}

.aletheia-book-link:focus-visible {
  outline: 2px solid #78beff;
  outline-offset: 8px;
}

