/* ===========================
   Author Details Page
   =========================== */

/* Banner and Container */
.author-details-banner {
  background-color: #fff;
  padding: 40px 0;
  margin-bottom: 30px;
}

.author-details-container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 30px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* Author Photo Column */
.author-photo-column {
  flex: 0 0 200px;
  display: flex;
  justify-content: center;
}

.author-photo-large {
  width: 225px;
  height: 300px;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* Author Details Column */
.author-details-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 8px;
}

.author-details-title {
  font-size: 1.6rem;
  color: #000;
  margin-bottom: 16px;
  line-height: 1.2;
  font-weight: 700;
}

.author-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Other Books Section */
.other-books-container {
  width: 90%;
  max-width: 1000px;
  margin: 40px auto 0;
}

.other-books-by h2 {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.books-row {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.other-book-cover {
  width: 200px;
  height: auto;
  display: block;
}

.other-book-link {
  display: inline-block;
}