/* Book of the Season Section */
.book-of-season-section {
  padding: 1rem 2rem 1rem 2rem; /* Reduced top and bottom padding from 4rem to 1rem */
  background: #fff;
  position: relative;
}

.book-of-season-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Book Item Container */
.season-book-item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}

/* Circular Book Cover (Left side, overlapping) */
.season-book-cover-circle {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #FFEAA7 0%, #FDCB6E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  position: relative;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  margin-right: -175px; /* Overlap with content box (half the circle width) */
}

.season-book-cover-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.season-book-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  color: #999;
  background: #f5f5f5;
  border-radius: 8px;
}

/* Book Content Box (Right side, blue gradient) */
.season-book-content {
  flex: 1;
  background: linear-gradient(135deg, #E3F5FC 0%, #B3E5FC 100%);
  border-radius: 24px;
  padding: 2rem 3rem 2rem 195px; /* Left padding for circle overlap (175px + 20px) */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 1;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 280px; /* Keep original height, smaller than circle */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.season-book-content:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

/* Content Title - "Book of the Season" */
.season-content-title {
  font-family: 'Roboto Slab', serif;
  font-size: 24px;
  font-weight: 700;
  color: #2C3E50;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

/* Book Title with Author */
.season-book-title {
  font-family: 'Roboto Slab', serif;
  font-size: 18px;
  font-weight: 600;
  color: #2C3E50;
  margin: 0 0 1rem 0;
  line-height: 1.4;
}

/* Book Description */
.season-book-description {
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  color: #2C3E50;
  line-height: 1.7;
  margin: 0 0 1rem 0;
  flex: 1;
  overflow: hidden;
}

/* Truncate description to 3 lines */
.season-truncate {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.season-book-description p {
  margin: 0;
  display: inline;
}

/* Read More Button */
.season-read-more {
  display: inline-block;
  font-family: 'Roboto Slab', serif;
  font-size: 16px;
  font-weight: 500;
  color: #4A90E2;
  text-decoration: none;
  transition: color 0.2s;
  align-self: flex-start;
}

.season-read-more:hover {
  color: #357ABD;
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
  .book-of-season-section {
    padding: 3rem 1.5rem;
  }

  .season-book-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .season-book-cover-circle {
    width: 280px;
    height: 280px;
    padding: 15px;
    margin-right: 0;
    margin-bottom: -100px; /* Overlap vertically instead */
    margin-left: 2rem;
  }

  .season-book-content {
    padding: 110px 2rem 2rem 2rem; /* Top padding for circle overlap */
    width: 100%;
    height: auto;
    min-height: 280px;
  }

  .season-content-title {
    font-size: 22px;
  }

  .season-book-title {
    font-size: 16px;
  }

  .season-book-description {
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .book-of-season-section {
    padding: 2rem 1rem;
  }

  .season-book-cover-circle {
    width: 240px;
    height: 240px;
    padding: 12px;
    margin-bottom: -80px;
    margin-left: 1rem;
  }

  .season-book-content {
    padding: 90px 1.5rem 1.5rem 1.5rem;
    min-height: 240px;
  }

  .season-content-title {
    font-size: 20px;
    margin-bottom: 0.75rem;
  }

  .season-book-title {
    font-size: 15px;
    margin-bottom: 0.75rem;
  }

  .season-book-description {
    font-size: 14px;
  }

  .season-read-more {
    font-size: 14px;
  }
}
