/* ═══════════════════════════════════════════════════════
   ARTICLE & REVIEW STYLES — Bid Miller (Speed Theme)
   ═══════════════════════════════════════════════════════ */

/* Container for narrow content */
.container--narrow {
    max-width: 800px;
}

/* Article Hero */
.article-hero {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-body) 100%);
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 40px,
        rgba(255, 214, 0, 0.01) 40px,
        rgba(255, 214, 0, 0.01) 80px
    );
    animation: heroStripes 20s linear infinite;
    pointer-events: none;
}

.article-hero__category {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: var(--turbo-yellow);
    color: var(--carbon-black);
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: var(--space-md);
    font-family: var(--font-heading);
}

.article-hero__title {
    margin-bottom: var(--space-md);
    color: var(--nitro-white);
    position: relative;
    z-index: 1;
}

.article-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    color: var(--text-muted);
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.article-hero__meta span {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

/* Article Content */
.article-content {
    padding: var(--space-3xl) 0;
}

.article-content h2 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--turbo-yellow);
    color: var(--turbo-yellow);
    font-family: var(--font-heading);
    position: relative;
}

.article-content h2:first-of-type {
    margin-top: 0;
}

.article-content h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    color: var(--lightning-orange);
    font-family: var(--font-heading);
}

.article-content p {
    margin-bottom: var(--space-lg);
    line-height: 1.8;
    color: var(--text-secondary);
}

.article-content p:last-child {
    margin-bottom: 0;
}

.article-content .lead {
    font-size: 1.125rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.article-content ul,
.article-content ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-xl);
}

.article-content li {
    margin-bottom: var(--space-sm);
    line-height: 1.7;
    color: var(--text-secondary);
}

.article-content li::marker {
    color: var(--turbo-yellow);
}

.article-content strong {
    color: var(--text-primary);
}

.article-content a {
    color: var(--turbo-yellow);
    text-decoration: underline;
}

.article-content a:hover {
    color: var(--lightning-orange);
    text-decoration: none;
}

/* Table Styles */
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-xl) 0;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 214, 0, 0.1);
}

.article-content th {
    background: var(--turbo-yellow);
    color: var(--carbon-black);
    padding: var(--space-md);
    text-align: left;
    font-weight: 600;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.04em;
}

.article-content td {
    padding: var(--space-md);
    border-bottom: 1px solid rgba(255, 214, 0, 0.05);
    color: var(--text-secondary);
}

.article-content tr:last-child td {
    border-bottom: none;
}

.article-content tr:nth-child(even) {
    background: rgba(255, 214, 0, 0.02);
}

/* Table of Contents */
.toc {
    background: var(--bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-2xl);
    border: 1px solid rgba(255, 214, 0, 0.1);
    box-shadow: var(--shadow-card);
}

.toc__title {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--turbo-yellow);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.toc__list {
    padding-left: var(--space-lg);
}

.toc__list li {
    margin-bottom: var(--space-sm);
    list-style: decimal;
}

.toc__list a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.toc__list a:hover {
    color: var(--turbo-yellow);
}

/* Info Box */
.info-box {
    background: var(--bg-card);
    border-left: 4px solid var(--turbo-yellow);
    padding: var(--space-lg);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: var(--space-xl) 0;
    border: 1px solid rgba(255, 214, 0, 0.1);
    box-shadow: var(--shadow-sm);
}

.info-box__title {
    font-weight: 600;
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--turbo-yellow);
    font-family: var(--font-heading);
}

.info-box p {
    margin-bottom: 0;
    color: var(--text-secondary);
}

/* Warning Box */
.warning-box {
    background: rgba(229, 57, 53, 0.08);
    border-left: 4px solid var(--racing-red);
    padding: var(--space-lg);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: var(--space-xl) 0;
    border: 1px solid rgba(229, 57, 53, 0.15);
}

.warning-box .info-box__title {
    color: var(--racing-red);
}

/* Related Articles */
.related-articles {
    background: var(--bg-card);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    margin-top: var(--space-3xl);
    border: 1px solid rgba(255, 214, 0, 0.06);
    box-shadow: var(--shadow-card);
}

.related-articles__title {
    margin-bottom: var(--space-xl);
    text-align: center;
    color: var(--turbo-yellow);
    font-family: var(--font-heading);
}

.related-articles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 768px) {
    .related-articles__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .related-articles__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.related-card {
    display: block;
    padding: var(--space-lg);
    background: var(--bg-body);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 214, 0, 0.05);
    text-decoration: none;
}

.related-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 214, 0, 0.03);
    border-color: rgba(255, 214, 0, 0.15);
    box-shadow: var(--shadow-sm);
}

.related-card h4 {
    margin-bottom: var(--space-sm);
    font-size: 1rem;
    color: var(--turbo-yellow);
    font-family: var(--font-heading);
}

.related-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════
   REVIEW STYLES
   ═══════════════════════════════════════════════════════ */

/* Review Hero */
.review-hero {
    padding: var(--space-3xl) 0;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-body) 100%);
}

.review-hero__logo {
    max-width: 200px;
    height: auto;
    margin: 0 auto var(--space-lg);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
}

.review-hero__rating {
    font-size: 1.5rem;
    color: var(--turbo-yellow);
    margin-bottom: var(--space-md);
    font-family: var(--font-heading);
}

.review-hero__bonus {
    font-size: 1.25rem;
    color: var(--turbo-yellow);
    font-weight: 700;
    font-family: var(--font-heading);
}

/* Quick Facts */
.quick-facts {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-2xl) 0;
    border: 1px solid rgba(255, 214, 0, 0.08);
    box-shadow: var(--shadow-card);
}

.quick-facts__title {
    margin-bottom: var(--space-lg);
    text-align: center;
    color: var(--turbo-yellow);
    font-family: var(--font-heading);
}

.quick-facts__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

@media (max-width: 576px) {
    .quick-facts__grid {
        grid-template-columns: 1fr;
    }
}

.quick-facts__item {
    display: flex;
    justify-content: space-between;
    padding: var(--space-md);
    background: var(--bg-body);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 214, 0, 0.05);
}

.quick-facts__label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.quick-facts__value {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* Pros & Cons */
.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin: var(--space-2xl) 0;
}

@media (max-width: 768px) {
    .pros-cons {
        grid-template-columns: 1fr;
    }
}

.pros,
.cons {
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
}

.pros {
    background: rgba(255, 214, 0, 0.05);
    border: 1px solid rgba(255, 214, 0, 0.2);
}

.cons {
    background: rgba(229, 57, 53, 0.05);
    border: 1px solid rgba(229, 57, 53, 0.2);
}

.pros__title,
.cons__title {
    margin-bottom: var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
}

.pros__title {
    color: var(--turbo-yellow);
}

.cons__title {
    color: var(--racing-red);
}

.pros ul,
.cons ul {
    padding-left: var(--space-lg);
}

.pros ul li::marker {
    content: '✓ ';
    color: var(--turbo-yellow);
}

.cons ul li::marker {
    content: '✗ ';
    color: var(--racing-red);
}

/* Review CTA */
.review-cta {
    background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-body) 100%);
    padding: var(--space-2xl);
    border-radius: var(--radius-lg);
    text-align: center;
    margin: var(--space-3xl) 0;
    border: 1px solid rgba(255, 214, 0, 0.1);
    box-shadow: var(--shadow-card);
}

.review-cta__title {
    margin-bottom: var(--space-md);
    color: var(--turbo-yellow);
    font-family: var(--font-heading);
}

.review-cta__bonus {
    font-size: 1.5rem;
    color: var(--turbo-yellow);
    font-weight: 700;
    margin-bottom: var(--space-xl);
    font-family: var(--font-heading);
}

.review-cta .btn {
    min-width: 200px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .article-hero {
        padding: var(--space-xl) 0;
    }
    
    .article-content {
        padding: var(--space-2xl) 0;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .related-articles {
        padding: var(--space-xl);
    }
    
    .review-hero {
        padding: var(--space-2xl) 0;
    }
    
    .quick-facts,
    .pros,
    .cons,
    .review-cta {
        padding: var(--space-lg);
    }
}