/* Book Hero Block Styles */
.book-hero-block-editor {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

/* Custom grid layout for book hero section */
.book-hero-grid {
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .book-hero-grid {
    grid-template-columns: 0.4fr 1fr;
  }
}

/* Book image responsive transforms */
.book-hero-image {
  transform: translateY(-80px);
  max-width: 200px;
}

@media (min-width: 768px) {
  .book-hero-image {
    transform: translateY(-120px);
    max-width: 280px;
  }
}

@media (min-width: 1024px) {
  .book-hero-image {
    transform: translateY(-225px);
    max-width: 400px;
  }
}

/* Desktop text spacing */
@media (min-width: 1024px) {
  .book-hero-text {
    margin-top: 3rem;
  }
}

/* Cover title responsive sizes */
.cover-title {
  font-size: 3rem !important;
}

@media (min-width: 768px) {
  .cover-title {
    font-size: 3.75rem !important;
  }
}

@media (min-width: 1024px) {
  .cover-title {
    font-size: 4.5rem !important;
  }
}

@media (min-width: 1280px) {
  .cover-title {
    font-size: 4.5rem !important;
  }
}

/* Cover subtitle responsive sizes */
.cover-subtitle {
  font-size: 1.25rem !important;
}

@media (min-width: 768px) {
  .cover-subtitle {
    font-size: 1.5rem !important;
  }
}

@media (min-width: 1024px) {
  .cover-subtitle {
    font-size: 1.875rem !important;
  }
}
