/* Custom playbook page styling */

.playbook-hero {
  background-color: #111317;
  padding: clamp(6rem, 10vw, 8rem) 1.5rem clamp(4rem, 6vw, 5rem);
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.playbook-hero .eyebrow {
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.playbook-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
  max-width: 900px;
}

.playbook-hero__body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  max-width: 780px;
  margin-bottom: 2rem;
}

.playbook-breadcrumbs {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.playbook-breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.playbook-breadcrumbs a:hover {
  color: var(--orange);
}

.playbook-content {
  background-color: #eae7db;
  color: #111317;
  padding: 6rem 1.5rem;
}

.playbook-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.playbook-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.playbook-visual img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.playbook-copy {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  font-family: var(--font-body);
}

.playbook-copy p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: #2c2f35;
  margin: 0;
}

.playbook-copy .lead-text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: #111317;
}

.playbook-copy h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #111317;
  margin: 1rem 0 0 0;
}

.playbook-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.playbook-features li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

.playbook-features li strong {
  display: block;
  font-size: 1.1rem;
  color: #111317;
  font-weight: 700;
}

.playbook-features li::before {
  content: "•";
  color: var(--orange);
  font-size: 1.8rem;
  position: absolute;
  left: 0;
  top: -0.1rem;
}

.playbook-copy .audience-text {
  font-size: 1rem;
  line-height: 1.6;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1.5rem;
  margin-top: 1rem;
}

.playbook-copy .audience-text strong {
  color: #111317;
}

.playbook-download-btn {
  align-self: flex-start;
  margin-top: 1rem;
}

@media (max-width: 900px) {
  .playbook-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .playbook-visual img {
    max-width: 380px;
  }
}
