#post-4719 .single.page-meta /* BUY PAGE */ {
  display: none !important;
}

#post-4917 .single.page-meta /* SELL PAGE */ {
  display: none !important;
}

/* --------------------------------------------------
   Shared light‑mode design
   -------------------------------------------------- */

/* Default accent (Buy page gets its own override below) */
:root {
  --cp-accent: #007bff;           /* blue */
  --cp-accent-soft: rgba(0, 123, 255, 0.06);
}

/* Buy page (post 4719) – cool blue accent */
#post-4719 {
  --cp-accent: #007bff;           /* blue */
  --cp-accent-soft: rgba(0, 123, 255, 0.06);
}

/* Sell page (post 4917) – Cribz orange accent */
#post-4917 {
  --cp-accent: #ff4500;           /* Cribz orange */
  --cp-accent-soft: rgba(255, 69, 0, 0.06);
}

/* Root wrapper to kill the "blog" feel */
.cribz-custom-page {
  max-width: 960px;
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #212529;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  margin-top: 2rem;
  margin-bottom: 2rem;
}

:root[data-theme='dark'] .cribz-custom-page {
  background: #1e1e1e!important;
  color: #e0e0e0!important;
}

.cribz-custom-page a {
  color: var(--cp-accent);
  font-weight: 600;
  text-decoration: none;
}

.cribz-custom-page a:hover {
  text-decoration: underline;
}

/* Hero section */
.cribz-custom-hero {
  margin-bottom: 2rem;
}

.cribz-custom-hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  opacity: 0.8;
  color: var(--cp-accent);
}

.cribz-custom-hero h1 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin: 0.4rem 0 0.75rem;
}

.cribz-custom-hero p {
  max-width: 40rem;
  opacity: 0.9;
}

/* CTA strip */
.cribz-cta-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.cribz-cta-strip button,
.cribz-cta-strip a {
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  border: none;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.cribz-cta-strip a:hover {
  text-decoration: none;
}

.cribz-cta-primary {
  background: var(--cp-accent);
  color: #ffffff;
}

.cribz-cta-primary:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.18);
}

.cribz-cta-secondary {
  background: #f8f9fa;
  color: #212529;
}

.cribz-cta-secondary:hover {
  background: #f1f3f5;
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.1);
}

/* --------------------------------------------------
   Accordion
   -------------------------------------------------- */

.cp-accordion {
  border-radius: 16px;
  background: #f7f9fc;
  padding: 1.25rem;
  border: 1px solid #e4e7ec;
}

.cp-accordion-item + .cp-accordion-item {
  margin-top: 0.75rem;
}

.cp-accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 0.9rem 1.1rem;
  border: 1px solid #e4e7ec;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.cp-accordion-header-title {
  font-weight: 600;
  font-size: 0.98rem;
}

.cp-accordion-header-subtitle {
  display: block;
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 0.25rem;
}

.cp-accordion-icon {
  margin-left: 0.75rem;
  font-size: 1.1rem;
  opacity: 0.7;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.cp-accordion-item.open .cp-accordion-header {
  border-color: var(--cp-accent);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.12);
  background: #ffffff;
}

.cp-accordion-item.open .cp-accordion-header-title {
  color: var(--cp-accent);
}

.cp-accordion-item.open .cp-accordion-icon {
  transform: rotate(90deg);
  opacity: 1;
}

.cp-accordion-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
}

.cp-accordion-panel-inner {
  padding: 0.75rem 1.1rem 1.2rem;
  font-size: 0.9rem;
  line-height: 1.6;
  opacity: 0.94;
  background: linear-gradient(to bottom, var(--cp-accent-soft), #ffffff 40%);
  border-radius: 0 0 12px 12px;
}

/* Simple info list */
.cp-step-list {
  margin: 0.4rem 0 0;
  padding-left: 1.15rem;
}

.cp-step-list li {
  margin-bottom: 0.35rem;
}

/* Net sheet callout */
.cp-callout {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: var(--cp-accent-soft);
  border: 1px dashed var(--cp-accent);
  font-size: 0.85rem;
}

/* Request Showing CTA block – placeholder for later modal hookup */
.cp-request-showing {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #e4e7ec;
}

.cp-request-showing button {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: var(--cp-accent);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
}

.cp-request-showing button:hover {
  filter: brightness(1.05);
}

.cp-request-showing small {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.8;
}

/* --------------------------------------------------
   Responsive tweaks
   -------------------------------------------------- */

@media (max-width: 768px) {
  .cribz-custom-page {
    padding: 2rem 1.25rem 3rem;
    border-radius: 0;
    box-shadow: none;
  }

  .cp-accordion {
    padding: 1rem;
  }
}

@media (min-width: 900px) {
  .cribz-custom-page {
    padding-top: 4rem;
  }
}
