/* ============================================
   NeoSound - Blog Styles
   ============================================ */

/* Article Header */
.article-header {
    padding: 150px 0 60px;
    background: var(--bg-darker);
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--text-secondary);
}

.breadcrumb a:hover {
    color: var(--primary-light);
}

.breadcrumb i {
    font-size: 10px;
    color: var(--text-muted);
}

.breadcrumb span {
    color: var(--primary-light);
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-meta .category {
    background: var(--gradient-primary);
    color: var(--text-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.article-meta .date,
.article-meta .read-time {
    color: var(--text-secondary);
    font-size: 14px;
}

.article-meta i {
    margin-right: 5px;
}

.article-header h1 {
    font-size: clamp(28px, 5vw, 48px);
    font-weight: 700;
    max-width: 900px;
    margin: 0 auto 20px;
    line-height: 1.2;
}

.article-intro {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Article Content */
.article-content {
    padding: 80px 0;
    background: var(--bg-dark);
}

.article-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
}

.article-main {
    max-width: 100%;
}

.content-section {
    margin-bottom: 50px;
}

.content-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
}

.content-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px;
    color: var(--primary-light);
}

.content-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 15px;
}

.content-section ul,
.content-section ol {
    margin: 20px 0;
    padding-left: 25px;
}

.content-section li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.content-section li strong {
    color: var(--text-primary);
}

.content-section strong {
    color: var(--text-primary);
}

/* CTA Section in Article */
.cta-section {
    background: var(--gradient-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.cta-section h2 {
    border-bottom: none;
    padding-bottom: 0;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 25px;
}

/* Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sidebar-widget h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-widget {
    background: var(--gradient-card);
    border-color: rgba(99, 102, 241, 0.3);
    text-align: center;
}

.cta-widget p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

.related-posts {
    list-style: none;
    padding: 0;
}

.related-posts li {
    margin-bottom: 15px;
}

.related-posts a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    padding: 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition-normal);
}

.related-posts a:hover {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-light);
}

.related-posts i {
    color: var(--primary-light);
    font-size: 16px;
}

.services-list {
    list-style: none;
    padding: 0;
}

.services-list li {
    margin-bottom: 10px;
}

.services-list a {
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.services-list a::before {
    content: '→';
    color: var(--primary-light);
}

.services-list a:hover {
    color: var(--primary-light);
}

.contact-widget p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-secondary);
}

.contact-widget i {
    color: var(--primary-light);
    font-size: 16px;
}

.contact-widget a {
    color: var(--primary-light);
}

.contact-widget a:hover {
    color: var(--primary);
}

/* Related Articles Section */
.related-articles {
    padding: 80px 0;
    background: var(--bg-darker);
}

.related-articles h2 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 40px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Blog Index Page */
.blog-header {
    padding: 150px 0 60px;
    background: var(--bg-darker);
    text-align: center;
}

.blog-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 15px;
}

.blog-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.blog-page {
    padding: 80px 0;
    background: var(--bg-dark);
}

.blog-page .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Responsive */
@media (max-width: 1024px) {
    .article-grid {
        grid-template-columns: 1fr;
    }
    
    .article-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .article-header {
        padding: 120px 0 40px;
    }
    
    .article-content {
        padding: 50px 0;
    }
    
    .content-section h2 {
        font-size: 24px;
    }
    
    .content-section h3 {
        font-size: 20px;
    }
    
.cta-section {
        padding: 30px 20px;
    }
}

/* Blog Cards - Index Page */
.blog-card-image {
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-image .blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-content h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    color: var(--text-primary);
}

.blog-card:hover .blog-card-content h2 {
    color: var(--primary-light);
}

.blog-card-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.blog-meta i {
    margin-right: 6px;
    color: var(--primary-light);
}

