/* ===== Pages Shared Styles ===== */
.page-content {
    padding: 120px 0 80px;
    min-height: 70vh;
}

.page-content h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.4rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.page-updated {
    font-size: 0.85rem;
    color: #6B7280;
    margin-bottom: 40px;
}

.page-content section {
    margin-bottom: 36px;
}

.page-content h2 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1A1A1A;
}

.page-content p {
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 12px;
}

.page-content ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.page-content li {
    font-size: 0.95rem;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}

.page-content a {
    color: #D4850F;
    text-decoration: underline;
}

.page-content a:hover {
    color: #B8720D;
}

/* ===== Article Pages ===== */
.article-page .container {
    max-width: 760px;
}

.article-hero-img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 36px;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.article-cta {
    background: #FFF3E0;
    padding: 36px;
    border-radius: 12px;
    text-align: center;
    margin-top: 48px;
}

.article-cta h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.article-cta p {
    margin-bottom: 20px;
    color: #6B7280;
}

.article-cta .btn {
    text-decoration: none;
    color: white;
}

/* ===== Comparison Table ===== */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #E5E7EB;
}

.comparison-table th {
    background: #FAFAFA;
    font-weight: 600;
    color: #1A1A1A;
}

.comparison-table td {
    color: #4B5563;
}

.comparison-table tr:hover td {
    background: #FFF3E0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .page-content {
        padding: 100px 0 60px;
    }

    .page-content h1 {
        font-size: 1.8rem;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 8px 10px;
    }

    .article-cta {
        padding: 24px;
    }
}
