/* === PPA BLOG BASE === */
/* === GLOBAL BLOG BACKGROUND === */
/* === FORCE BLOG PAGE BACKGROUND (OVERRIDE THEME) === */
html,
body,
#page,
.site,
.site-content,
#content {
  background-color: #fdfbf7 !important; /* clearly visible warm beige */
}


.ppa-blog {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  font-family: "Poppins", sans-serif;
}

.ppa-blog h1 {
  font-size: 2.6rem;
  line-height: 1.25;
  color: #1a1a1a;
}

.ppa-blog h2 {
  margin-top: 40px;
  font-size: 1.6rem;
  color: #d4af37;
}

.ppa-blog h3 {
  margin-top: 26px;
  font-size: 1.25rem;
  color: #333;
}

.ppa-blog p {
  margin: 14px 0;
  line-height: 1.8;
  color: #444;
}

/* Arrow List */
.ppa-arrow-list li {
  list-style: none;
  padding-left: 26px;
  position: relative;
  margin-bottom: 10px;
}
.ppa-arrow-list li::before {
  content: "➜";
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

/* Info Box */
.ppa-info-box {
  border-left: 4px solid #d4af37;
  background: #fdfbf5;
  padding: 16px;
  margin: 30px 0;
}

/* FAQ */
.ppa-faq {
  margin-top: 50px;
}
.ppa-faq h3 {
  margin-bottom: 8px;
}

/* Author */
.ppa-author {
  margin-top: 60px;
  padding: 20px;
  background: #f7f7f7;
  border-left: 4px solid #d4af37;
}
/* ===============================
   FULL WIDTH BLOG CTA – PPA
================================ */

.ppa-cta-full {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  background: linear-gradient(155deg, #f7efd2, #ffffff);
  padding: 70px 20px;
  text-align: center;
  position: relative;
}

.ppa-cta-full h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.ppa-cta-full p {
  max-width: 780px;
  margin: 0 auto 24px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
}

/* CTA BUTTON */
.ppa-cta-full .ppa-btn-primary {
  display: inline-block;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: 500;
  background: #1a1a1a;
  color: #ffffff;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.ppa-cta-full .ppa-btn-primary:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .ppa-cta-full {
    padding: 50px 16px;
  }

  .ppa-cta-full h3 {
    font-size: 1.6rem;
  }

  .ppa-cta-full p {
    font-size: 1rem;
  }
}
/* ===============================
   FULL WIDTH AUTHOR (KEEP DESIGN)
================================ */

.ppa-author-full {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;

  padding: 40px 20px;
  background: transparent; /* keep page background */
}

/* KEEP YOUR ORIGINAL AUTHOR LOOK */
.ppa-author {
  max-width: 1500px;
  margin: 0 auto;
  padding: 24px 26px;
  background: #f7f7f7;
  border-left: 4px solid #d4af37;
}

.ppa-author strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.ppa-author p {
  margin: 0;
  line-height: 1.7;
  color: #444;
}
