/* ===== Article Page Styles ===== */

.article-page-hero {
    background: linear-gradient(rgba(15, 37, 64, 0.92), rgba(15, 37, 64, 0.85)),
                url('../img/hero1.png');
    background-size: cover;
    background-position: center;
    padding: 140px 0 60px;
    color: #fff;
}

.article-page-title {
    font-family: 'Prompt', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin: 14px 0 10px;
    line-height: 1.35;
}

.article-page-meta {
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    margin: 0;
}

.article-page-body {
    padding: 50px 15px 60px;
}

.article-cover-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 32px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.article-page-body h2 {
    font-family: 'Prompt', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f2540;
    margin-top: 36px;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid #c5a059;
    display: inline-block;
}

.article-page-body p,
.article-page-body li {
    font-size: 1rem;
    line-height: 1.85;
    color: #444;
}

.article-page-body ol,
.article-page-body ul {
    padding-left: 1.4rem;
    margin-bottom: 1rem;
}

.article-callout {
    background: #fffbf0;
    border-left: 4px solid #c5a059;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    margin: 24px 0;
    font-size: 0.95rem;
    color: #444;
}

/* Compare boxes (article3) */
.article-compare-box {
    border: 2px solid;
    border-radius: 8px;
    padding: 20px;
    height: 100%;
    background: #fff;
}

/* CTA Box */
.article-cta {
    background: linear-gradient(135deg, #0f2540, #1a3a5c);
    color: #fff;
    border-radius: 10px;
    padding: 32px;
    text-align: center;
    margin-top: 48px;
}

.article-cta h4 {
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
}

.article-cta p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.article-back {
    font-size: 0.95rem;
    padding-bottom: 20px;
}

.article-back a {
    text-decoration: none;
    transition: opacity 0.2s;
}

.article-back a:hover {
    opacity: 0.75;
}

/* Step timeline */
.article-step {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: #0f2540;
    color: #c5a059;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Prompt', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid #c5a059;
}

.step-content {
    flex: 1;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px 20px;
    border-left: 3px solid #c5a059;
}

.step-content h5 {
    font-family: 'Prompt', sans-serif;
    font-weight: 600;
    color: #0f2540;
    margin-bottom: 10px;
    font-size: 1rem;
}

.step-content ul {
    padding-left: 1.2rem;
    margin-bottom: 0;
}

.step-content li {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 4px;
}

/* Checklist styles */
.article-checklist {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.article-checklist li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 1rem;
    color: #444;
}

.article-checklist li:last-child {
    border-bottom: none;
}

.article-checklist-box {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 24px 28px;
    margin: 16px 0 24px;
    border-left: 4px solid #c5a059;
}

.checklist-item {
    padding: 8px 0;
    font-size: 1rem;
    color: #333;
    border-bottom: 1px solid #e9ecef;
}

.checklist-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.checklist-item .fa-check-square {
    color: #c5a059;
}

@media (max-width: 768px) {
    .article-page-title {
        font-size: 1.5rem;
    }
    .article-page-hero {
        padding: 120px 0 40px;
    }
}
