.blog-hero {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 50%, #1e293b 100%);
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
}

.blog-content {
    background: #f8fafc;
    color: #1e293b;
    line-height: 1.7;
}

/* Blog Layout */
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.blog-main-content {
    min-width: 0; /* Prevents grid overflow */
}

.blog-article-content {
    margin-top: 2rem;
}

.blog-content h1 {
    font-family: 'CooperHewitt Bold', sans-serif;
    color: #0f172a;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    align-items: left;
}

.blog-content h2 {
    font-family: 'CooperHewitt Bold', sans-serif;
    color: #1e293b;
    font-size: 1.875rem;
    line-height: 1.3;
    margin: 2.5rem 0 1.5rem 0;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.blog-content h3 {
    font-family: 'CooperHewitt Medium', sans-serif;
    color: #334155;
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 2rem 0 1rem 0;
}

.blog-content p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    color: #475569;
}

.blog-content ul, .blog-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    color: #475569;
}

.equipment-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.equipment-card:hover {
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.equipment-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.equipment-icon {
    width: 48px;
    height: 48px;
    margin-right: 1rem;
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-title {
    font-family: 'CooperHewitt Bold', sans-serif;
    font-size: 1.25rem;
    color: #1e293b;
    margin: 0;
}

.equipment-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.spec-item {
    background: #f8fafc;
    padding: 0.75rem;
    border-radius: 6px;
    border-left: 3px solid #3b82f6;
}

.spec-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.spec-value {
    font-size: 1rem;
    color: #1e293b;
    font-weight: 600;
}

.price-highlight {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    margin: 0.5rem 0;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.pros, .cons {
    padding: 1rem;
    border-radius: 8px;
}

.pros {
    background: #f0fdf4;
    border-left: 4px solid #10b981;
}

.cons {
    background: #fef2f2;
    border-left: 4px solid #ef4444;
}

.pros h4, .cons h4 {
    margin: 0 0 0.75rem 0;
    font-family: 'CooperHewitt Medium', sans-serif;
    font-size: 1.125rem;
}

.pros h4 {
    color: #059669;
}

.cons h4 {
    color: #dc2626;
}

.toc {
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    max-width: 100%;
}

.toc h3 {
    margin-top: 0;
    color: #1e293b;
}wew

.toc ul {
    margin: 0;
    padding-left: 1.5rem;
}

.toc a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.toc a:hover {
    text-decoration: underline;
}

.cta-section {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.cta-section h3,
.cta-section p {
    color: white !important;
}

.cta-button {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin: 1rem 0.5rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    box-shadow: 0 10px 25px -3px rgba(59, 130, 246, 0.4);
}

@media (max-width: 768px) {
    .blog-content h1 {
        font-size: 2rem;
    }
    
    .blog-content h2 {
        font-size: 1.5rem;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .equipment-specs {
        grid-template-columns: 1fr;
    }
}

/* Sidebar Styling */
.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h3 {
    font-family: 'CooperHewitt Medium', sans-serif;
    color: #1e293b;
    font-size: 1.25rem;
    margin: 0 0 1rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.sidebar-articles, .sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-articles li, .sidebar-links li {
    margin-bottom: 0.75rem;
    padding-right: 1rem !important;
}

.sidebar-articles a, .sidebar-links a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
    display: block;
    padding: 0.5rem 0;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.sidebar-articles a:hover, .sidebar-links a:hover {
    color: #1d4ed8;
    background-color: #f8fafc;
}

.sidebar-widget p {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }
    
    .blog-sidebar {
        position: static;
        order: -1;
    }
    
    .sidebar-widget {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .blog-layout {
        padding: 0.5rem;
    }
    
    .blog-content h1 {
        font-size: 2rem;
    }
    
    .blog-content h2 {
        font-size: 1.5rem;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
    
    .equipment-specs {
        grid-template-columns: 1fr;
    }
    
    .sidebar-widget {
        padding: 1rem;
    }
}
