/* Blog Article Styles */
.blog-article {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
}

.blog-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.blog-header h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--text-color);
}

.blog-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    font-size: 14px;
    color: var(--text-muted);
}

/* Blog Sections */
.blog-section {
    margin-bottom: 48px;
}

.blog-section h2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--text-color);
    padding-bottom: 8px;
    border-bottom: 2px solid #27619B;
}

.blog-section h3 {
    font-size: 24px;
    margin: 24px 0 12px 0;
    color: var(--text-color);
}

.blog-section p {
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 18px;
}

.blog-section ul,
.blog-section ol {
    padding-left: 24px;
    margin-bottom: 20px;
}

.blog-section li {
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-size: 18px;
}

/* Free vs Paid Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 24px 0;
}

.comparison-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
}

.comparison-card h4 {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-card ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 15px;
    color: var(--text-muted);
}

.comparison-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
    color: var(--text-muted);
}

/* Conclusion CTA */
.conclusion-cta {
    background: var(--bg-color);
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
    margin-top: 32px;
}

.conclusion-cta h3 {
    margin: 0 0 12px 0 !important;
    border-bottom: none !important;
}

.conclusion-cta p {
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.primary-btn {
    background: #27619B;
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.primary-btn:hover {
    background: #1e4f80;
}

.secondary-btn {
    background: var(--card-bg);
    color: var(--text-color);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.secondary-btn:hover {
    border-color: #27619B;
    color: #27619B;
}

/* Dark Mode Overrides for page-specific elements */
body.dark-mode .primary-btn {
    background: #63b3ed;
    color: #1a202c;
}

body.dark-mode .primary-btn:hover {
    background: #4fa3db;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-article {
        padding: 0 7px;
        margin: 20px auto;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .primary-btn,
    .secondary-btn {
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
}

/* VPN Card Styles (Duplicated from component per user request) */
.vpn-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 0;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.vpn-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(39, 97, 155, 0.15);
    border-color: #27619B;
}

/* Header Section */
.vpn-card-header {
    background: rgba(39, 97, 155, 0.05);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--border-color);
}

.vpn-card-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    background: white;
    padding: 8px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vpn-card-title-section {
    flex: 1;
}

.vpn-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    line-height: 1.3;
}

.vpn-card h3 a {
    color: #27619B;
    text-decoration: none;
    transition: color 0.2s;
}

.vpn-card h3 a:hover {
    color: #1e4f80;
    text-decoration: underline;
}

/* Badges */
.vpn-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.badge {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.badge-audited {
    background: #e6fffa;
    color: #047857;
    border: 1px solid #10b981;
}

.badge-platform {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
}

.badge-bitcoin {
    background: #fffbeb;
    color: #b45309;
    border: 1px solid #f59e0b;
}

.badge-freemium {
    background: #f5f3ff;
    color: #6d28d9;
    border: 1px solid #8b5cf6;
}

.badge-firefox {
    background: #fff7ed;
    color: #c2410c;
    border: 1px solid #f97316;
}

.badge-chrome {
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #3b82f6;
}

/* Content Section */
.vpn-card-content {
    padding: 24px;
    color: var(--text-color);
}

.vpn-card-content p {
    margin: 0 0 12px 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.vpn-card-content p:last-child {
    margin: 0;
}

.vpn-card-content strong {
    color: var(--text-color);
}

/* Dark Mode Overrides */
body.dark-mode .vpn-card {
    background: #2c3e50;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

body.dark-mode .vpn-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    border-color: #63b3ed;
}

body.dark-mode .vpn-card-header {
    background: #1e2b3a;
    border-bottom: 1px solid #34495e;
}

body.dark-mode .vpn-card h3 a {
    color: #63b3ed;
}

body.dark-mode .vpn-card h3 a:hover {
    color: #90cdf4;
}

body.dark-mode .badge-audited {
    background: #065f46;
    color: #a7f3d0;
    border-color: #059669;
}

body.dark-mode .badge-platform {
    background: #374151;
    color: #e5e7eb;
    border-color: #4b5563;
}

body.dark-mode .badge-bitcoin {
    background: #78350f;
    color: #fcd34d;
    border-color: #d97706;
}

body.dark-mode .badge-freemium {
    background: #4c1d95;
    color: #ddd6fe;
    border-color: #7c3aed;
}

body.dark-mode .badge-firefox {
    background: #7c2d12;
    color: #fdba74;
    border-color: #ea580c;
}

body.dark-mode .badge-chrome {
    background: #1e3a8a;
    color: #bfdbfe;
    border-color: #2563eb;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .vpn-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 16px;
    }

    .vpn-card-logo {
        width: 48px;
        height: 48px;
    }

    .vpn-card h3 {
        font-size: 1.1rem;
    }

    .vpn-card-content {
        padding: 16px;
    }

    .badge {
        font-size: 0.7rem;
        padding: 2px 8px;
    }
}