/* ================================
   Help Center Styles (Slash-inspired)
   ================================ */

/* Search Hero */
.help-hero {
    padding: 12rem 2rem 6rem;
    text-align: center;
    background: var(--color-bg-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.help-hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 2.5rem;
    color: white;
}

.help-search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.help-search-input {
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem 3.5rem;
    background: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    color: #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease;
}

.help-search-input:focus {
    outline: none;
    transform: scale(1.02);
}

.help-search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
}

/* Collections Grid */
.collections-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.collection-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.collection-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(187, 153, 84, 0.3);
    transform: translateY(-2px);
}

.collection-icon {
    width: 48px;
    height: 48px;
    background: rgba(187, 153, 84, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bb9954;
    margin-bottom: 1.5rem;
}

.collection-card h3 {
    font-size: 1.25rem;
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.collection-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1;
}

.collection-meta {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--color-text-tertiary);
}

/* Article Page Layout */
.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem 8rem;
}

.article-breadcrumbs {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--color-text-tertiary);
}

.article-breadcrumbs a {
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.article-breadcrumbs a:hover {
    color: #bb9954;
}

.article-breadcrumbs span {
    margin: 0 0.5rem;
    opacity: 0.5;
}

.article-header {
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 2rem;
}

.article-header h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--color-text-tertiary);
    font-size: 0.9rem;
}

.article-avatar {
    width: 32px;
    height: 32px;
    background: #333;
    border-radius: 50%;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.article-content h2 {
    color: white;
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.article-content h3 {
    color: white;
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-feedback {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--color-text-tertiary);
}

.react-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-secondary);
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.react-btn:hover {
    border-color: #bb9954;
    color: #bb9954;
}

/* Responsive */
@media (max-width: 968px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .collections-grid {
        grid-template-columns: 1fr;
    }

    .help-hero h1 {
        font-size: 2rem;
    }
}