/* Page navigation section */
.page-navigation-wrapper {
  position: relative;
  overflow: hidden;
  background: #e6eff2;
  padding: 173px 0;
}

.book1 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.book2 {
  position: absolute;
  bottom: 0;
  right: 0;
}

.page-heading h1 {
  color: #012e4a;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 60px;
  position: relative;
  z-index: 9;
}

.custom-navigation {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.custom-navigation li {
  color: #036280;
  list-style: none;
  font-size: 16px;
  font-weight: 400;
}

.custom-navigation li i {
  color: #012e4a;
  font-size: smaller;
  font-weight: bold;
}

.custom-navigation li a {
  color: #012e4a;
  text-decoration: none;
}

.custom-navigation li a:hover {
  color: #012e4a;
}

/* Featured section */
.featured-title {
  color: #0b2d4d;
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  margin-top: 3rem;
}

.subtitle {
  color: #666;
  text-align: center;
  margin-bottom: 40px;
}

/* Authors slider - main container */
.authors-slider-wrapper {
  width: 100%;
  overflow-x: auto;
  margin: 40px 0;
  padding: 10px 0 30px;
}

/* Hide scrollbar */
.authors-slider-wrapper::-webkit-scrollbar {
  display: none;
}

.authors-slider-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Horizontal slider */
.authors-slider {
  display: flex;
  flex-direction: row;
  gap: 25px;
  padding: 10px 0;
}

.author-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  min-width: 250px;
  max-width: 250px;
  height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #f0f0f0;
}

.author-image-container {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
}

.author-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #f3f3f3;
}

.laurel-frame {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 170px;
  height: 170px;
  z-index: 1;
}

.author-name {
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
  color: #012e4a;
  white-space: normal;
  margin-bottom: 10px;
}

.books-count {
  font-size: 14px;
  color: #666;
}

.author-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .author-card {
    min-width: 200px;
    max-width: 200px;
    height: 250px;
  }
  
  .author-image-container {
    width: 120px;
    height: 120px;
  }
  
  .laurel-frame {
    width: 140px;
    height: 140px;
  }
  
  .page-heading h1 {
    font-size: 32px;
    line-height: 48px;
  }
}

@media (max-width: 480px) {
  .author-card {
    min-width: 180px;
    max-width: 180px;
    height: 230px;
  }
  
  .page-navigation-wrapper {
    padding: 120px 0;
  }
  
  .author-image-container {
    width: 100px;
    height: 100px;
  }
  
  .laurel-frame {
    width: 120px;
    height: 120px;
  }
}