/* Help Category Page Styles */
.help-category-container {
  max-width: 800px;
  margin: 120px auto 60px auto;
  background: #131a26;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.12);
  padding: 32px 24px 40px 24px;
}
.help-category-container h1 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 700;
}
.help-category-description {
  color: #bfc7d5;
  margin-bottom: 24px;
  font-size: 1.1rem;
}
.help-search-form {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
}
.help-search-form input[type="search"] {
  flex: 1;
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  background: #232b3b;
  color: #fff;
  font-size: 1rem;
  transition: box-shadow 0.2s;
}
.help-search-form input[type="search"]:focus {
  outline: none;
  box-shadow: 0 0 0 2px #3b82f6;
}
.help-search-form button {
  background: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 22px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.help-search-form button:hover {
  background: #2563eb;
}
.help-articles-list {
  margin-top: 10px;
}
.help-article-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.help-article-card {
  background: #1e2633;
  border-radius: 10px;
  padding: 22px 18px 18px 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: box-shadow 0.2s, transform 0.2s, color 0.2s, background 0.2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  color: #3b82f6;
  font-weight: 700;
  cursor: pointer;
}
.help-article-card:hover, .help-article-card:focus {
  box-shadow: 0 4px 18px #3b82f6;
  transform: translateY(-3px) scale(1.03);
  background: #232b3b;
  color: #2563eb;
  text-decoration: none;
}
.help-article-title {
  font-size: 1.15rem;
  margin: 0 0 6px 0;
  color: inherit;
  font-weight: 700;
  text-decoration: none;
  transition: text-decoration 0.2s, color 0.2s;
}
.help-article-card:hover .help-article-title,
.help-article-card:focus .help-article-title {
  text-decoration: underline;
  color: inherit;
}
.help-article-excerpt {
  color: #bfc7d5;
  font-size: 1rem;
  margin-bottom: 0;
  font-weight: 400;
}
@media (max-width: 600px) {
  .help-category-container {
    padding: 16px 4vw 24px 4vw;
  }
  .help-article-cards {
    grid-template-columns: 1fr;
  }
}
