/*
 * INLINE PAGE STYLES
 * ===================
 * Combined from 2 <style> tag(s) found in the HTML.
 * These styles were embedded directly in the page, not external files.
 *
 * Source: https://maurosicard.com/
 * Extracted: 2026-01-23 15:00:29
 */

/* --- <style> tag #1 (in <head>) --- */
.wf-force-outline-none[tabindex="-1"]:focus{outline:none;}

/* --- <style> tag #2 (in <head>) --- */
.book::after,
.book::before, .book img, .book {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.book {
  cursor: pointer;
  display: block;
  position: relative;
  background: white;
  z-index: 1;
  box-shadow: 0 -1px 2px 0 rgb(0 0 0 / 5%), 0 2px 6px 0 rgb(0 0 0 / 11%);
  overflow: hidden;
  transition: box-shadow 0.3s linear;
}

.book img {
  width: inherit;
  height: inherit;
  transform-origin: 0 50%;
  transform: rotateY(0);
  transition: all 0.45s ease;
}

.book:hover {
  box-shadow: 0 -1px 2px 0 rgba(0, 0, 0, 0.1), 0 2px 7px 0 rgba(0, 0, 0, 0.14);
}
.book-wrapper:hover .book img {
  transform: rotateY(-25deg);
  box-shadow: 1px 1px 2px 2px rgb(0 0 0 / 6%);
}

.book::after,
.book::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  background: white;
  border: 1px solid #ebebeb;
  border-radius: 0 8px 8px 0;
  
}

.book::before {
  left: -4%;
}

.book::after {
  left: -7%;
}