/* Category pages — shared styles */
.category-hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 30px;
}
.category-hero h1 {
    font-size: 2rem;
    font-weight: 800;
    margin: 15px 0;
    letter-spacing: -0.5px;
}
.category-hero p {
    font-size: 1.1rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}
.category-icon-large i {
    font-size: 2.5rem;
    color: #38bdf8;
}
.tech-subcategories-hub {
    margin-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 25px;
}
.subcategories-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.tech-tag-btn {
    padding: 10px 20px;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    font-size: 0.88rem;
    transition: all 0.2s ease-in-out;
}
.tech-tag-btn:hover {
    background: #38bdf8;
    color: #ffffff;
    border-color: #38bdf8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 189, 248, 0.2);
}
.category-seo-footer {
    margin-top: 60px;
    padding: 40px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
}
.category-seo-footer h2 {
    font-size: 1.6rem;
    color: #0f172a;
    font-weight: 700;
    margin-bottom: 15px;
}
.category-seo-footer > p {
    color: #475569;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 30px;
}
.tech-faq {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    border-top: 1px solid #e2e8f0;
    padding-top: 25px;
}
.faq-item h4 {
    font-size: 1.1rem;
    color: #0f172a;
    font-weight: 600;
    margin-bottom: 8px;
}
.faq-item p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}
