/* ============================================================
   GrowTall — editorial/content page styles
   (loaded in addition to styles.min.css)
   ============================================================ */

.crumb-wrap {
  padding-top: 108px;
}
.crumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-500);
  margin-bottom: 26px;
}
.crumb a {
  color: var(--forest-700);
}
.crumb a:hover {
  text-decoration: underline;
}
.crumb .sep {
  color: #a9bcb2;
}

.page-hero {
  max-width: 800px;
}
.page-hero .h1 {
  font-family: var(--font-head);
  font-size: clamp(2.3rem, 5vw, 3.7rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.026em;
  color: var(--ink-900);
}
.page-hero .lead {
  margin-top: 20px;
}

.quick-answer {
  margin-top: 30px;
  background: var(--mint-100);
  border: 1px solid rgba(80, 184, 120, 0.35);
  border-radius: 18px;
  padding: 22px 26px;
  max-width: 800px;
}
.quick-answer .qa-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest-700);
  margin-bottom: 8px;
}
.quick-answer p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-700);
  margin: 0;
}

.prose {
  max-width: 760px;
  margin-top: clamp(44px, 6vw, 64px);
}
.prose > section {
  margin-bottom: clamp(40px, 5vw, 56px);
}
.prose h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.018em;
  line-height: 1.18;
  margin-bottom: 16px;
}
.prose h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-top: 28px;
  margin-bottom: 10px;
}
.prose p {
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--ink-700);
  margin-bottom: 14px;
}
.prose ul,
.prose ol {
  margin: 0 0 16px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.prose ul li,
.prose ol li {
  position: relative;
  padding-left: 26px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-700);
}
.prose ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
}
.prose ol {
  counter-reset: prose-step;
}
.prose ol li {
  counter-increment: prose-step;
}
.prose ol li::before {
  content: counter(prose-step);
  position: absolute;
  left: 0;
  top: 0.18em;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: var(--mint-100);
  color: var(--forest-700);
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.prose strong {
  color: var(--ink-900);
  font-weight: 700;
}
.prose a {
  color: var(--forest-700);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--green-400);
  text-underline-offset: 3px;
}
.prose a:hover {
  text-decoration-color: var(--green-600);
}
.note {
  background: var(--sun-100);
  border-radius: 16px;
  padding: 18px 22px;
  font-size: 0.94rem;
  line-height: 1.65;
  color: #5c4d1e;
  margin: 20px 0;
}
.note strong {
  color: #3c2f0a;
}

.table-wrap {
  overflow-x: auto;
  margin: 20px 0 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
  min-width: 480px;
}
.table-wrap th {
  text-align: left;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-500);
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--sage-50);
}
.table-wrap td {
  padding: 12px 16px;
  border-bottom: 1px solid #eef4ef;
  color: var(--ink-700);
  line-height: 1.5;
}
.table-wrap tr:last-child td {
  border-bottom: 0;
}
.table-wrap td:first-child {
  font-weight: 600;
  color: var(--ink-900);
  white-space: nowrap;
}

/* FAQ on content pages */
.page-faq {
  max-width: 760px;
  margin-top: clamp(20px, 3vw, 30px);
}
.page-faq .h2 {
  margin-bottom: 22px;
}
.page-faq .accordion {
  margin-top: 0;
}

/* CTA band */
.cta-band {
  margin-top: clamp(56px, 7vw, 84px);
  background: linear-gradient(160deg, var(--forest-900), var(--forest-950));
  border-radius: 28px;
  padding: clamp(36px, 5vw, 56px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(80, 184, 120, 0.25), rgba(80, 184, 120, 0));
  pointer-events: none;
}
.cta-band h2 {
  color: #f2f8f3;
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  max-width: 22ch;
}
.cta-band p {
  color: #b9d2c2;
  margin-top: 10px;
  font-size: 0.98rem;
  max-width: 46ch;
}
.cta-band .btn {
  flex: none;
}

/* Related pages */
.related {
  margin-top: clamp(48px, 6vw, 72px);
}
.related h2 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.related__grid a {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(226, 235, 228, 0.9);
  border-radius: 18px;
  padding: 22px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.related__grid a:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.related__grid .r-eyebrow {
  font-family: var(--font-head);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-600);
}
.related__grid .r-title {
  font-family: var(--font-head);
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1.3;
}

@media (max-width: 860px) {
  .crumb-wrap {
    padding-top: 92px;
  }
  .related__grid {
    grid-template-columns: 1fr;
  }
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-band .btn {
    width: 100%;
  }
}
