/* Chhimwal.com — shared styles for rich SEO content sections.
   Scoped under .cw-content so they never clash with a page's own CSS. */
.cw-content {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  color: #1f2937;
  background: #ffffff;
  line-height: 1.7;
  font-size: 1.02rem;
}
.cw-content .cw-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.cw-content h2 {
  font-size: 1.7rem;
  line-height: 1.25;
  color: #0b1220;
  margin: 2.4rem 0 1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.cw-content h2:first-child { margin-top: 0; }
.cw-content h3 {
  font-size: 1.22rem;
  color: #111827;
  margin: 1.6rem 0 0.6rem;
  font-weight: 700;
}
.cw-content p { margin: 0 0 1.1rem; }
.cw-content ul, .cw-content ol { margin: 0 0 1.2rem; padding-left: 1.3rem; }
.cw-content li { margin: 0 0 0.55rem; }
.cw-content a { color: #b45309; font-weight: 600; text-decoration: none; }
.cw-content a:hover { text-decoration: underline; }
.cw-content strong { color: #0b1220; }

.cw-content .cw-lead {
  font-size: 1.15rem;
  color: #374151;
  border-left: 4px solid #fbbf24;
  padding-left: 1rem;
  margin-bottom: 1.8rem;
}

/* Benefit / feature grid */
.cw-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin: 1.4rem 0 2rem;
}
.cw-card {
  background: #f9fafb;
  border: 1px solid #eef0f3;
  border-radius: 0.8rem;
  padding: 1.25rem 1.25rem 1.1rem;
}
.cw-card h3 { margin: 0 0 0.4rem; font-size: 1.05rem; }
.cw-card p { margin: 0; font-size: 0.95rem; color: #4b5563; }
.cw-card .cw-emoji { font-size: 1.5rem; display: block; margin-bottom: 0.4rem; }

/* Steps */
.cw-steps { counter-reset: cw-step; list-style: none; padding: 0; margin: 1.2rem 0 2rem; }
.cw-steps li {
  position: relative;
  padding: 0.2rem 0 0.9rem 3rem;
  margin: 0;
}
.cw-steps li::before {
  counter-increment: cw-step;
  content: counter(cw-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.1rem;
  height: 2.1rem;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0b1220;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FAQ */
.cw-faq { margin: 1.2rem 0 1rem; }
.cw-faq details {
  border: 1px solid #e5e7eb;
  border-radius: 0.7rem;
  padding: 0.9rem 1.1rem;
  margin-bottom: 0.8rem;
  background: #fff;
}
.cw-faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #0b1220;
  list-style: none;
  position: relative;
  padding-right: 1.5rem;
}
.cw-faq summary::-webkit-details-marker { display: none; }
.cw-faq summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: -0.1rem;
  font-size: 1.35rem;
  color: #f59e0b;
  line-height: 1;
}
.cw-faq details[open] summary::after { content: '\2013'; }
.cw-faq details p { margin: 0.7rem 0 0; color: #374151; }

.cw-cta {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.8rem 1.6rem;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #0b1220 !important;
  font-weight: 800;
  border-radius: 999px;
  text-decoration: none !important;
  box-shadow: 0 6px 18px rgba(245,158,11,0.35);
}
.cw-cta:hover { transform: translateY(-2px); }

@media (max-width: 600px) {
  .cw-content .cw-wrap { padding: 2.2rem 1.2rem; }
  .cw-content h2 { font-size: 1.42rem; }
}
