/* ── How Can You Help page ── */

/* ── Thank-you strip ── */
.help-thankyou-strip {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 1.5rem 0;
  text-align: center;
}

.help-thankyou-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #475569;
  margin: 0 auto;
  max-width: 680px;
}

/* ── Quick-nav strip ── */
.help-nav-strip {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0;
}

.help-nav-grid {
  display: flex;
  align-items: stretch;
}

.help-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 1.1rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  text-decoration: none;
  border-right: 1px solid #e2e8f0;
  transition:
    background 150ms ease,
    color 150ms ease;
}

.help-nav-item:last-child {
  border-right: none;
}

.help-nav-item:hover {
  background: #f8fafc;
  color: #1a2744;
  text-decoration: none;
}

.help-nav-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: #1948a4;
}

/* ── Category sections ── */
.help-category {
  padding: 4rem 0;
  background: #f8fafc;
  scroll-margin-top: 90px;
}

.help-category--alt {
  background: #ffffff;
}

/* Category header: eyebrow + title left, description right */
.help-category-header {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 0 3.5rem;
  align-items: start;
  margin-bottom: 2rem;
}

.help-category-label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.help-category-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a7f74;
  margin: 0;
}

.help-category-title {
  font-size: clamp(1.4rem, 2.2vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
  margin: 0;
  line-height: 1.15;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.help-category-icon {
  width: 1.35rem;
  height: 1.35rem;
  color: #1948a4;
  flex-shrink: 0;
  position: relative;
  top: 1px;
}

.help-category-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #475569;
  margin: 0;
  padding-top: 0.25rem;
}

/* ── Option grid ── */
.help-option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.help-option-card {
  background: #ffffff;
  border: 1px solid #e8e4dc;
  border-radius: 2px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: border-color 150ms ease;
}

.help-category--alt .help-option-card {
  background: #f8fafc;
}

.help-option-card:hover {
  border-color: #a0b4d4;
}

.help-option-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
  margin: 0;
}

.help-option-tag--amount {
  font-size: 1rem;
  font-weight: 700;
  color: #1948a4;
  letter-spacing: 0;
  text-transform: none;
}

.help-option-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}

.help-option-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

.help-option-desc a {
  color: #1948a4;
}

/* ── Bottom CTA band ── */
.help-cta-band {
  background: #1a2744;
  padding: 4rem 0;
}

.help-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.help-cta-copy {
  max-width: 520px;
}

.help-cta-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 0.75rem;
}

.help-cta-heading {
  font-size: clamp(1.3rem, 2.5vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  color: #ffffff;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.help-cta-subtext {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.help-cta-band .btn {
  flex-shrink: 0;
}

.help-donate-cta {
  display: block;
  margin-bottom: 2rem;
  width: fit-content;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .help-category-header {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

@media (max-width: 720px) {
  .help-option-grid {
    grid-template-columns: 1fr;
  }

  .help-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .help-category {
    padding: 2.5rem 0;
    border-top: 2px solid #c8c2b8;
  }
}

@media (max-width: 640px) {
  .help-nav-item span {
    display: none;
  }

  .help-nav-item {
    padding: 0.9rem 0.5rem;
  }

  .help-nav-icon {
    width: 1.4rem;
    height: 1.4rem;
  }

  .help-cta-band {
    padding: 2.5rem 0;
  }
}
