/* Start custom CSS for html, class: .elementor-element-2f917ba */#book-feature {
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-card {
  display: flex;
  flex-wrap: wrap;
  background-color: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  font-family: 'IranYekan', Tahoma, Arial, sans-serif;
  max-width: 900px;
  transition: all 0.3s ease;
}

.book-card img {
  width: 100%;
  max-width: 300px;
  object-fit: cover;
}

.book-info {
  padding: 20px;
  flex: 1;
  line-height: 1.8;
  color: #333;
}

.book-info h4 {
  font-size: 1.4rem;
  color: #00000; /* نارنجی سایت */
  margin-bottom: 10px;
}

.book-info p {
  margin-bottom: 12px;
}

.book-card:hover {
  box-shadow: 0 0 20px rgba(255,102,0,0.4); /* نور نارنجی هنگام هاور */
  transform: translateY(-4px);
}/* End custom CSS */