/* ═══════════════════════════════════════════════════════
   ARTICLE & REVIEW STYLES — Brutalism
   ═══════════════════════════════════════════════════════ */

/* Article Hero */
.article-hero {
    padding: var(--space-2xl) 0;
    background: var(--bg-hero);
    border-bottom: 3px solid var(--border-black);
}

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

.article-hero__title {
    margin-bottom: var(--space-md);
}

.article-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    color: var(--text-muted);
    font-size: 0.875rem;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.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: 3px solid var(--raw-red);
}

.article-content h3 {
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

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

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

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

.article-content li::before {
    content: '●';
    color: var(--raw-red);
    font-weight: 700;
    position: absolute;
    left: 0;
}

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

.article-content a {
    color: var(--raw-red);
    text-decoration: underline;
    font-weight: 600;
}

.article-content a:hover {
    color: var(--ink-black);
}

/* Table of Contents */
.toc {
    background: var(--bg-card);
    padding: var(--space-xl);
    border: 3px solid var(--border-black);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-2xl);
    box-shadow: var(--shadow-md);
}

.toc__title {
    font-size: 1rem;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    text-transform: uppercase;
}

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

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

.toc__list li::before {
    content: counter(list-item, decimal) ". ";
    color: var(--raw-red);
    font-weight: 700;
}

.toc__list {
    counter-reset: list-item;
}

.toc__list li {
    counter-increment: list-item;
}

.toc__list a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
}

.toc__list a:hover {
    color: var(--raw-red);
}

/* Info Box */
.info-box {
    background: var(--bg-card);
    border-left: 6px solid var(--raw-red);
    padding: var(--space-lg);
    border: 3px solid var(--border-black);
    border-left: 6px solid var(--raw-red);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: var(--space-xl) 0;
    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);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-box p {
    margin-bottom: 0;
}

/* Warning Box */
.warning-box {
    background: #fff5f5;
    border-left: 6px solid var(--raw-red);
    border: 3px solid var(--raw-red);
    padding: var(--space-lg);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: var(--space-xl) 0;
    box-shadow: var(--shadow-sm);
}

/* Tables */
.article-content table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: var(--space-xl) 0;
    border: 3px solid var(--border-black);
    box-shadow: var(--shadow-md);
}

.article-content th,
.article-content td {
    padding: var(--space-md);
    border-bottom: 2px solid var(--border-black);
    border-right: 2px solid var(--border-black);
}

.article-content th:last-child,
.article-content td:last-child {
    border-right: none;
}

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

.article-content th {
    background: var(--ink-black);
    color: var(--paper-white);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
}

.article-content td {
    background: var(--bg-card);
    color: var(--text-secondary);
}

/* Related Articles */
.related-articles {
    background: var(--bg-card);
    padding: var(--space-2xl);
    border: 3px solid var(--border-black);
    border-radius: var(--radius-lg);
    margin-top: var(--space-3xl);
    box-shadow: var(--shadow-md);
}

.related-articles__title {
    margin-bottom: var(--space-xl);
    text-align: center;
}

.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;
    }
}

.related-card {
    display: block;
    padding: var(--space-lg);
    background: var(--bg-body);
    border: 3px solid var(--border-black);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    text-decoration: none;
    box-shadow: var(--shadow-sm);
}

.related-card:hover {
    transform: translate(-2px, -2px);
    box-shadow: var(--shadow-md);
    background: var(--light-gray);
}

.related-card h4 {
    margin-bottom: var(--space-sm);
    font-size: 1rem;
    color: var(--text-primary);
}

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

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

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

/* Review Hero */
.review-hero {
    padding: var(--space-3xl) 0;
    text-align: center;
    background: var(--bg-hero);
    border-bottom: 3px solid var(--border-black);
}

.review-hero__logo {
    max-width: 200px;
    height: auto;
    margin: 0 auto var(--space-lg);
    border: 2px solid var(--mid-gray);
    padding: var(--space-sm);
    background: var(--paper-white);
}

.review-hero__rating {
    font-size: 1.5rem;
    color: var(--raw-red);
    margin-bottom: var(--space-md);
}

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

/* Quick Facts */
.quick-facts {
    background: var(--bg-card);
    border: 3px solid var(--border-black);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    margin: var(--space-2xl) 0;
    box-shadow: var(--shadow-md);
}

.quick-facts__title {
    margin-bottom: var(--space-lg);
    text-align: center;
}

.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: 2px solid var(--border-black);
    border-radius: var(--radius-sm);
}

.quick-facts__label {
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    text-transform: uppercase;
}

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

/* 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: 3px solid var(--border-black);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.pros {
    background: #f5fff5;
    border-left: 6px solid #4caf50;
}

.cons {
    background: #fff5f5;
    border-left: 6px solid var(--raw-red);
}

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

.pros__title {
    color: #4caf50;
}

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

.pros ul li::before {
    content: '✓';
    color: #4caf50;
    font-weight: 700;
}

.cons ul li::before {
    content: '✗';
    color: var(--raw-red);
    font-weight: 700;
}

/* Review CTA */
.review-cta {
    background: var(--bg-card);
    padding: var(--space-2xl);
    border: 3px solid var(--border-black);
    border-radius: var(--radius-lg);
    text-align: center;
    margin: var(--space-3xl) 0;
    box-shadow: var(--shadow-md);
}

.review-cta__title {
    margin-bottom: var(--space-md);
}

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

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

/* Lead paragraph */
.lead {
    font-size: 1.125rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: var(--light-gray);
    border-left: 6px solid var(--raw-red);
    border: 3px solid var(--border-black);
    box-shadow: var(--shadow-sm);
}