.type-books {
  background-color: rgba(80, 200, 120, 0.3);
  overflow: hidden;
}

.book-layout {
  margin-top: 3rem;
}

.book-header {
  margin-bottom: 2rem;
  border-bottom: 2px solid;
  padding-bottom: 1rem;
  text-align: center;

}

.book-author {
  font-style: italic;
  margin: 0.2rem 0;
}

.book-cover {
  float: right;
  padding: 1rem 1.5rem 1rem 1.5rem;
}

.book-img {
  float: right;
  width: 300px;
  border-radius: 14px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  object-fit: cover;
  object-position: center;
  background: #00000040;
}

.book-notes {
  margin-top: 2rem;
  padding: 1.2rem;
  border-radius: 14px;
  background: #fafafa;
  border-left: 5px solid #ccc;
  font-size: 0.95rem;
  clear: right;
}

.book-description h2 {
  font-size: 24px;
  margin-bottom: 0.5rem;
}

.book-notes h2 {
  font-size: 24px;
  margin-bottom: 0.5rem;
}

.indent-text {
  padding-left: 1rem;
}

p {
  margin: 0 0 0.5rem 0;
}

.poem {
  font-family: "Merriweather", Georgia, serif;
}

/* Mobile */
@media (max-width: 768px) {
  .book-description {
    clear: right;
  }

  .book-card-wrap {
    display: flex;
    justify-content: center;
  }

  .book-buy-card {
    margin-bottom: 1rem;
  }

  blockquote {
    margin-inline-start: 10px;
  }
}