/* Winnr Help Center — extends blog-article.css */

/* Breadcrumb strip above the H1 */
.help-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.help-breadcrumb a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.15s;
}
.help-breadcrumb a:hover {
  color: #111;
  text-decoration: underline;
}
.help-breadcrumb .sep {
  color: #d1d5db;
}

/* Direct-answer box — the LLM-citable summary */
.direct-answer {
  background: #f9fafb;
  border-left: 4px solid #111;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0 1.5rem;
}
.direct-answer-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 0.5rem;
}
.direct-answer p {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: #111;
}

/* Step-by-step list */
.help-steps {
  list-style: none;
  counter-reset: step;
  padding: 0;
  margin: 2rem 0;
}
.help-steps > li {
  position: relative;
  padding: 1.5rem 1.5rem 1.5rem 3.5rem;
  margin-bottom: 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  counter-increment: step;
}
.help-steps > li h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  line-height: 1.4;
}
.help-steps > li p {
  margin: 0 0 1rem;
  color: #374151;
}
.help-steps > li figure {
  margin: 1rem 0 0;
}
.help-steps > li figure img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}
.help-steps > li figure figcaption {
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 0.5rem;
  font-style: italic;
}

/* Related articles block */
.help-related {
  margin: 3rem 0 2rem;
  padding: 1.5rem;
  background: #f9fafb;
  border-radius: 12px;
}
.help-related h2 {
  margin: 0 0 1rem;
  font-size: 1.125rem;
}
.help-related ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.help-related li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.help-related li:last-child {
  border-bottom: none;
}
.help-related .muted {
  color: #6b7280;
  font-size: 0.9375rem;
}

/* Feedback row */
.help-feedback {
  margin: 3rem 0 2rem;
  padding: 1rem 0;
  border-top: 1px solid #e5e7eb;
  color: #6b7280;
  font-size: 0.9375rem;
}
.help-feedback a {
  color: #111;
  font-weight: 600;
  text-decoration: none;
  padding: 0 0.25rem;
}
.help-feedback a:hover {
  text-decoration: underline;
}

/* Category index list */
.help-category-list {
  padding: 2rem 0 4rem;
}
.help-category-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}
.help-category-list li a {
  display: block;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s;
}
.help-category-list li a:hover {
  border-color: #111;
  transform: translateY(-2px);
}
.help-category-list li h3 {
  margin: 0 0 0.5rem;
  font-size: 1.0625rem;
  color: #111;
}
.help-category-list li p {
  margin: 0;
  color: #6b7280;
  font-size: 0.9375rem;
  line-height: 1.5;
}

/* Hub hero */
.hub-hero {
  padding: 4rem 0 2rem;
  text-align: center;
}
.hub-hero h1 {
  font-size: 2.5rem;
  margin: 0 0 1rem;
}
.hub-hero p {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}
.hub-hero a {
  color: #111;
  font-weight: 600;
}

/* Hub category grid */
.hub-categories {
  padding: 2rem 0 3rem;
}
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.hub-card {
  display: block;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, transform 0.15s;
}
.hub-card:hover {
  border-color: #111;
  transform: translateY(-2px);
}
.hub-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  color: #111;
}
.hub-card p {
  margin: 0 0 0.75rem;
  color: #6b7280;
  font-size: 0.9375rem;
  line-height: 1.5;
}
.hub-count {
  font-size: 0.8125rem;
  color: #9ca3af;
  font-weight: 500;
}

/* Popular articles */
.hub-popular {
  padding: 2rem 0 4rem;
}
.hub-popular h2 {
  margin: 0 0 1rem;
  font-size: 1.25rem;
}
.hub-popular ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.hub-popular li {
  padding: 0.625rem 0;
  border-bottom: 1px solid #e5e7eb;
}
.hub-popular li a {
  color: #111;
  font-weight: 600;
  text-decoration: none;
}
.hub-popular li a:hover {
  text-decoration: underline;
}
.hub-popular .muted {
  color: #6b7280;
  font-weight: 400;
  font-size: 0.9375rem;
}

/* Article lede on category pages */
.article-lede {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 640px;
  line-height: 1.6;
  margin: 0.5rem 0 0;
}
