/* Помощь — в концепции about/careers/press */

.help-page-container {
    padding-bottom: var(--space-2xl, 3rem);
}

.help-hero .about-subtitle {
    max-width: 720px;
}

.help-content-section {
    padding: var(--space-6xl, 4rem) 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    margin: var(--space-2xl, 2rem) 0;
    border-radius: 24px;
    border: 1px solid var(--border-light, #e2e8f0);
}

.help-article-section {
    margin-top: 0;
}

.help-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.search-box {
    max-width: 600px;
    margin: 0 auto 3rem;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.category-card {
    background: #fff;
    border: 1px solid var(--border-light, #e2e8f0);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    border-color: #2563eb;
}

.category-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
}

.category-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.875rem;
    color: #64748b;
}

.articles-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article-item {
    background: #fff;
    border: 1px solid var(--border-light, #e2e8f0);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.article-item:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
}

.article-header {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.article-category {
    background: #f1f5f9;
    color: #64748b;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
}

.article-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.article-description {
    font-size: 0.9375rem;
    color: #64748b;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: #94a3b8;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--border-light, #e2e8f0);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.article-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.article-content-body {
    font-size: 1rem;
    line-height: 1.8;
    color: #334155;
    margin-top: 2rem;
}

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

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #2563eb;
    text-decoration: none;
    margin-bottom: 2rem;
    font-weight: 500;
}

.back-link:hover {
    text-decoration: underline;
}

.popular-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-light, #e2e8f0);
}

.popular-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.no-results {
    text-align: center;
    padding: 3rem;
    color: #64748b;
}

@media (max-width: 768px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    .article-content {
        padding: 1.5rem;
    }
}
