/* ============================================================
   FAQs page (page-id-1504) — birdiechaser.com/faqs/
   Scoped entirely to body.page-id-1504.
   Structure: <h2> section headers + <p> FAQ cards.
   Each <p>: <strong>Question</strong> Answer text.
   CSS-only: rust canvas, content card, section headers with
   gold rule, and each paragraph as a styled FAQ item card.
   ============================================================ */

body.page-id-1504 {
  --bc-brown:       #412818;
  --bc-brown-soft:  #5a3a25;
  --bc-card:        #fffdf9;
  --bc-item:        #faf3e8;
  --bc-gold:        #b8860b;
  --bc-gold-bright: #d4a017;
  --bc-line:        rgba(65, 40, 24, 0.14);
}

/* ── Canvas — match the Shop archive rust background + vignette ── */
body.page-id-1504 {
  background: #c4824c !important;
  background-image: radial-gradient(
    ellipse at center,
    transparent 40%,
    rgba(0, 0, 0, 0.25) 80%,
    rgba(0, 0, 0, 0.45) 100%
  ) !important;
  background-attachment: fixed !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
}
body.page-id-1504 .site-content {
  background-color: transparent;
}

/* ── Content card ─────────────────────────────────────────── */
body.page-id-1504 .inside-article {
  max-width: 860px;
  margin: 40px auto;
  background-color: var(--bc-card);
  border: 1px solid var(--bc-line);
  border-radius: 18px;
  box-shadow: 0 12px 44px rgba(65, 40, 24, 0.09);
  padding: clamp(28px, 5vw, 64px) clamp(22px, 5vw, 60px);
}

/* ── Hero title (entry-title "FAQs" — the only title on this page) ── */
body.page-id-1504 .entry-header {
  margin: 0;
  padding: 0;
  border: 0;
  text-align: center;
}
body.page-id-1504 .entry-title {
  font-family: var(--font-heading), 'Libre Baskerville', serif;
  font-size: clamp(2.3rem, 5.5vw, 3.2rem);
  line-height: 1.1;
  color: var(--bc-brown);
  margin: 0;
  letter-spacing: -0.01em;
}
/* gold rule under the title */
body.page-id-1504 .entry-header::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 0.7em auto 0;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--bc-gold), var(--bc-gold-bright));
}

/* ── Reading column ───────────────────────────────────────── */
body.page-id-1504 .entry-content {
  max-width: 720px;
  margin: 2em auto 0;
  font-family: var(--font-body), 'Outfit', sans-serif;
  color: var(--bc-brown-soft);
}

/* ── Section headers ──────────────────────────────────────── */
body.page-id-1504 .entry-content > h2 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body), 'Outfit', sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bc-brown);
  margin: 2.4em 0 1em;
  border: none;
  padding: 0;
}
body.page-id-1504 .entry-content > h2::after {
  content: "";
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--bc-gold), var(--bc-gold-bright));
  border-radius: 2px;
  min-width: 20px;
}
body.page-id-1504 .entry-content > h2:first-child {
  margin-top: 0;
}

/* ── Each paragraph = one FAQ item card ───────────────────── */
body.page-id-1504 .entry-content > p {
  background: var(--bc-item);
  border: 1px solid var(--bc-line);
  border-left: 4px solid var(--bc-gold);
  border-radius: 12px;
  padding: 20px 24px;
  margin: 0 0 16px;
  font-size: 1.02rem;
  line-height: 1.72;
  transition: box-shadow 0.16s ease, transform 0.16s ease;
}
body.page-id-1504 .entry-content > p:hover {
  box-shadow: 0 6px 18px rgba(65, 40, 24, 0.1);
  transform: translateY(-1px);
}

/* Question: the leading <strong> becomes a block heading */
body.page-id-1504 .entry-content > p > strong:first-child {
  display: block;
  font-family: var(--font-heading), 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 1.13rem;
  line-height: 1.32;
  color: var(--bc-brown);
  margin-bottom: 0.55em;
}

/* ── Links in answers ─────────────────────────────────────── */
body.page-id-1504 .entry-content a {
  color: var(--bc-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.18s ease;
}
body.page-id-1504 .entry-content a:hover {
  color: var(--bc-brown);
}

/* ── Mobile polish ────────────────────────────────────────── */
@media (max-width: 768px) {
  body.page-id-1504 .inside-article {
    margin: 20px 14px;
    border-radius: 14px;
  }
  body.page-id-1504 .entry-content > h2 {
    font-size: 0.9rem;
    margin-top: 2em;
  }
  body.page-id-1504 .entry-content > p {
    padding: 16px 18px;
  }
}
