/* ============================================================
   Shared Article Styles — matches main site theme
   ============================================================ */

.article-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 48px 24px;
    position: relative;
    z-index: 1;
}

.article-header {
    text-align: center;
    margin-bottom: 56px;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.article-meta {
    color: var(--text-muted, #8b9dc3);
    font-size: 0.9rem;
}

.article-content {
    color: #cbd5e1;
    font-size: 1.1rem;
    line-height: 1.85;
}

.article-content h2 {
    color: #fff;
    font-size: 1.65rem;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 12px;
    letter-spacing: -0.3px;
}

.article-content h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 36px;
    margin-bottom: 16px;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin-bottom: 24px;
    margin-left: 24px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content a {
    transition: opacity 180ms ease-out;
}

.article-content a:hover {
    opacity: 0.8;
}

/* Highlight / Callout Box */
.highlight-box {
    background: rgba(59, 130, 246, 0.07);
    border-left: 3px solid var(--primary, #3b82f6);
    padding: 24px;
    border-radius: 0 12px 12px 0;
    margin: 32px 0;
}

/* Warning Box */
.warning-box {
    background: rgba(220, 38, 38, 0.07);
    border-left: 3px solid #ef4444;
    padding: 28px;
    border-radius: 0 12px 12px 0;
    margin: 32px 0;
}

.warning-title {
    color: #ef4444;
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Tip / Pro Tip Box */
.tip-box {
    background: rgba(16, 185, 129, 0.07);
    border-left: 3px solid #10b981;
    padding: 28px;
    border-radius: 0 12px 12px 0;
    margin: 32px 0;
}

.tip-title {
    color: #10b981;
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Fact Box */
.fact-box {
    background: rgba(59, 130, 246, 0.07);
    border-left: 3px solid var(--primary, #3b82f6);
    padding: 24px;
    border-radius: 0 12px 12px 0;
    margin: 32px 0;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary, #3b82f6) 0%, #2563eb 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
    transition: all 180ms ease-out;
    box-shadow: 0 2px 12px rgba(59, 130, 246, 0.25);
}

.cta-button:hover {
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    transform: translateY(-1px);
}

.cta-button:active {
    transform: translateY(0);
}

/* Affiliate Box */
.affiliate-box {
    border: 1px solid rgba(56, 189, 248, 0.2);
    padding: 28px;
    border-radius: 16px;
    background: rgba(56, 189, 248, 0.04);
    text-align: center;
    margin: 36px 0;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 32px 0;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.comparison-table td {
    color: #cbd5e1;
}

.comparison-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Responsive Article */
@media (max-width: 768px) {
    .article-title {
        font-size: 2rem;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-content h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 1.6rem;
        letter-spacing: -0.5px;
    }

    .article-container {
        padding: 32px 18px;
    }
}
