/* Articles specific styles */
:root {
    --article-bg: #ffffff;
    --article-text: #2c3e50;
    --article-white: #ffffff;
}

body {
    background: var(--background-dark) !important;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 140px 20px 60px;
}

.article-content > div {
    background: var(--article-bg);
    color: var(--article-text);
    padding: 40px;
    border-radius: 15px;
    line-height: 1.8;
}

.article-content h1,
.article-content h2,
.article-content h3 {
    color: var(--article-text);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content > div h2,
.article-content > div h3 {
    color: #2c3e50;
}

.article-content > div p {
    color: #2c3e50;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.comparison-table {
    width: 100%;
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--article-white);
}

.comparison-table th,
.comparison-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    font-weight: bold;
}

@media (max-width: 768px) {
    .article-content {
        padding: 1rem;
    }
}
