/**
 * Personalitopia Component Styles: Hero Book Component Styles
 * Theme: twentytwentyfour-child
 */


/* Hero Book Block Styling */
.pt-hero {
  background: linear-gradient(135deg, #F7EEDB 0%, #F0D9C4 48%, #E8B09A 100%);
  border-bottom: 1px solid rgba(44, 31, 21, 0.10);
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
}
.pt-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
  padding: 96px 0 104px;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.pt-eyebrow {
  font-family: var(--ui);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 26px;
}
.pt-hero h1 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 62px;
  line-height: 1.03;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--ink);
}
.pt-hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}
.pt-lede {
  font-family: var(--body);
  font-size: 21px;
  line-height: 1.6;
  color: var(--ink-70);
  max-width: 34ch;
  margin-bottom: 38px;
}
.pt-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.pt-btn {
  font-family: var(--ui);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}
.pt-btn-primary {
  background: var(--ink);
  color: var(--ivory);
}
.pt-btn-primary:hover {
  background: #43301f;
  color: var(--ivory);
}
.pt-btn-ghost {
  background: transparent;
  border-color: rgba(44, 31, 21, 0.30);
  color: var(--ink);
}
.pt-btn-ghost:hover {
  border-color: var(--ink);
}

.pt-book-stage {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pt-book {
  width: 300px;
  aspect-ratio: 1 / 1.5;
  border-radius: 6px;
  position: relative;
  background: linear-gradient(160deg, #34261a 0%, #5a3f2b 60%, #7a4f34 100%);
  color: var(--ivory);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  transform: rotate(-2.5deg);
  border: 1px solid rgba(44, 31, 21, 0.25);
  box-shadow: 0 15px 35px rgba(44, 31, 21, 0.2);
  transition: transform 0.3s ease;
}
.pt-book:hover {
  transform: rotate(0deg) scale(1.02);
}
.pt-book::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14px;
  width: 2px;
  height: 100%;
  background: rgba(0, 0, 0, 0.18);
}
.pt-book .pt-b-eyebrow {
  font-family: var(--ui);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: auto;
}
.pt-book .pt-b-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 33px;
  line-height: 1.04;
  margin-bottom: 14px;
  color: var(--ivory);
}
.pt-book .pt-b-title em {
  font-style: italic;
  color: var(--blush);
}
.pt-book .pt-b-author {
  font-family: var(--ui);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(244, 234, 213, 0.8);
}
.pt-book .pt-b-mark {
  position: absolute;
  bottom: 34px;
  right: 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pt-book .pt-b-mark::after {
  content: "";
  width: 1px;
  height: 18px;
  background: var(--gold);
  opacity: 0.7;
}
