/* Blog Article Styles */
.blog-article {
    padding: 40px 0 80px;
    background: #fff;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-header {
    margin-bottom: 3rem;
}

.breadcrumb {
    color: #666;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #5b4cdb;
}

.article-header h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.article-meta {
    display: flex;
    gap: 2rem;
    color: #666;
    font-size: 0.875rem;
}

.article-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
}

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

.article-content h2 {
    font-size: 2rem;
    margin: 3rem 0 1.5rem;
    color: #1a1a1a;
}

.article-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: #1a1a1a;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

/* Product Cards in Article */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.product-card {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1.5rem;
    position: relative;
}

.product-card h3 {
    margin: 0.5rem 0;
    font-size: 1.25rem;
}

.badge {
    position: absolute;
    top: -10px;
    right: 15px;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge.best-overall {
    background: #5b4cdb;
    color: white;
}

.badge.best-value {
    background: #00c853;
    color: white;
}

.badge.best-camera {
    background: #ff6f00;
    color: white;
}

.product-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5b4cdb;
    margin: 0.5rem 0;
}

.product-card ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.product-card li {
    padding: 0.25rem 0;
    font-size: 0.875rem;
    color: #666;
}

.product-card li::before {
    content: "✓ ";
    color: #00c853;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 0.75rem;
    background: #5b4cdb;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #764ba2;
}

/* Pros and Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.pros, .cons {
    padding: 1.5rem;
    border-radius: 12px;
}

.pros {
    background: #e8f5e9;
}

.cons {
    background: #ffebee;
}

.pros h4, .cons h4 {
    margin: 0 0 1rem;
    font-size: 1.125rem;
}

.pros ul, .cons ul {
    list-style: none;
    padding: 0;
}

.pros li, .cons li {
    padding: 0.5rem 0;
    font-size: 0.9375rem;
}

/* Price Chart Table */
.price-chart {
    overflow-x: auto;
    margin: 2rem 0;
}

.price-chart table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.price-chart th {
    background: #5b4cdb;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.price-chart td {
    padding: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.price-chart tr:hover {
    background: #f8f9fa;
}

/* Affiliate Disclosure */
.affiliate-disclosure {
    background: #fff3cd;
    border-left: 4px solid #ff9800;
    padding: 1rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.affiliate-disclosure p {
    margin: 0;
    font-size: 0.875rem;
    color: #856404;
}

/* Author Bio */
.author-bio {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.author-bio h3 {
    margin: 0 0 1rem;
    font-size: 1.25rem;
}

.author-bio p {
    margin: 0;
    color: #666;
}

/* Related Articles */
.related-articles {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e0e0e0;
}

.related-articles h2 {
    margin-bottom: 2rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.related-item {
    display: block;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.related-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.related-item h4 {
    margin: 0 0 0.5rem;
    color: #1a1a1a;
    font-size: 1.125rem;
}

.related-item p {
    margin: 0;
    color: #666;
    font-size: 0.875rem;
}