.alt-photo {
	border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    max-width: 150px !important;
    width: 150px !important;
    flex-shrink: 0 !important;
    margin-left: 25%;
}

.alt-photo img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
}

.books-hero {
  padding: 10px 20px 20px !important;
  background: linear-gradient(135deg, #f5f7fa 0%, #d8ed70 100%);
  position: sticky;
  top: 64px;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.books-hero .wrap {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 15px !important;
  flex-wrap: nowrap !important;
}

.books-hero .text-content {
  text-align: center !important;
}

.books-hero h1 {
  font-size: clamp(32px, 4vw, 40px);
  color: var(--navy);
  margin: 0 0 8px 0 !important;
}

.books-hero p {
	font-family: Merriweather, serif;
	font-size: 18pt;
	color: brown;
	margin: 0 !important;
	font-weight: 600;
}

@media (max-width: 768px) {
  .books-hero .wrap {
    flex-direction: column !important;
    text-align: center;
  }
  
  .books-hero .text-content {
    text-align: center;
  }
}

.books-section {
  padding: 70px 0;
  background: #fff;
}

.book-list {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.book-item {
  padding: 24px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.book-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.book-item h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
  color: var(--navy);
  line-height: 1.4;
}

.book-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--muted);
}

.book-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: Merriweather, serif;
  color: #000408;
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 1.0rem;
  font-weight: 600;
}

.book-abstract {
  font-family: Merriweather, serif;
  color: #000408;
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 1.14rem;
}

.book-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.book-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s;
}

.book-link:hover {
  background: #003d73;
}

.book-link.secondary {
  background: #e5e7eb;
  color: var(--navy);
}

.book-link.secondary:hover {
  background: #d1d5db;
}
