/* CoachQuote Help Page — shared styles for Divi code modules
   Paste this into your Divi Theme Options > Custom CSS, or into a
   Code module at the top of the page. */

.cq-help-section {
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 24px;
}
.cq-help-section.alt {
  background: #F5F4F0;
}
.cq-section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #2D6A4F;
  margin-bottom: 10px;
}
.cq-section-title {
  font-size: 32px;
  font-weight: 800;
  color: #1A1A17;
  margin: 0 0 16px;
  line-height: 1.2;
}
.cq-section-body {
  font-size: 16px;
  color: #4A4A45;
  line-height: 1.7;
  max-width: 560px;
}
.cq-two-col {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-top: 40px;
}
.cq-two-col.reverse { flex-direction: row-reverse; }
.cq-two-col-text { flex: 1; }
.cq-two-col-image { flex: 1; }
.cq-two-col-image svg { width: 100%; height: auto; display: block; }
.cq-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.cq-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.cq-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #2D6A4F;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.cq-step-content h4 {
  font-size: 15px;
  font-weight: 700;
  color: #1A1A17;
  margin: 0 0 4px;
}
.cq-step-content p {
  font-size: 14px;
  color: #4A4A45;
  margin: 0;
  line-height: 1.6;
}
.cq-verdict-row {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.cq-verdict-card {
  flex: 1;
  min-width: 160px;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.cq-verdict-card.yes { background: #EAF5EC; border: 2px solid #2D6A4F; }
.cq-verdict-card.marginal { background: #FFF8E7; border: 2px solid #F5A623; }
.cq-verdict-card.no { background: #FFF0F0; border: 2px solid #E53E3E; }
.cq-verdict-label {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 8px;
}
.cq-verdict-card.yes .cq-verdict-label { color: #2D6A4F; }
.cq-verdict-card.marginal .cq-verdict-label { color: #8B5E00; }
.cq-verdict-card.no .cq-verdict-label { color: #E53E3E; }
.cq-verdict-desc { font-size: 13px; color: #4A4A45; line-height: 1.5; }
.cq-tip-box {
  background: #EAF5EC;
  border-left: 4px solid #2D6A4F;
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  font-size: 14px;
  color: #1A1A17;
  margin-top: 24px;
  line-height: 1.6;
}
.cq-tip-box strong { color: #2D6A4F; }
@media (max-width: 768px) {
  .cq-two-col, .cq-two-col.reverse { flex-direction: column; }
  .cq-section-title { font-size: 24px; }
}
