/* Article Page Styles */

.article-page {
    padding: 140px 0 100px;
    background: var(--dark-light);
}

.article-page .container {
    max-width: 800px;
}

.article-header {
    margin-bottom: 80px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 32px;
    transition: var(--transition);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.back-link:hover {
    color: var(--primary-light);
    gap: 12px;
}

.article-header h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--white);
    letter-spacing: 1px;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.article-meta {
    color: var(--gray);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.article-content {
    font-size: 19px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
}

.article-content .lead {
    font-size: 24px;
    line-height: 1.7;
    color: var(--white);
    margin-bottom: 40px;
    font-weight: 500;
    padding: 32px;
    background: var(--dark-lighter);
    border-left: 4px solid var(--primary);
    border-radius: 0 4px 4px 0;
}

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

.article-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-top: 64px;
    margin-bottom: 24px;
    color: var(--white);
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 16px;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.article-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.article-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.article-content strong {
    color: var(--white);
    font-weight: 700;
}

.article-content ul {
    margin: 36px 0;
    padding-left: 0;
    list-style: none;
}

.article-content ul li {
    margin-bottom: 20px;
    padding-left: 40px;
    position: relative;
    line-height: 1.8;
}

.article-content ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
    font-size: 20px;
}

.article-content a {
    color: var(--primary);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
    transition: var(--transition);
    font-weight: 600;
}

.article-content a:hover {
    color: var(--primary-light);
}

/* Article Navigation */
.article-navigation {
    display: flex;
    gap: 24px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.prev-article,
.next-article {
    flex: 1;
    padding: 40px;
    background: var(--dark-lighter);
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.prev-article::before,
.next-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    opacity: 0;
    transition: var(--transition);
}

.prev-article:hover::before,
.next-article:hover::before {
    opacity: 1;
}

.prev-article:hover,
.next-article:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(255, 106, 0, 0.25);
    border-color: transparent;
}

.prev-article:hover .nav-label,
.prev-article:hover .nav-title,
.next-article:hover .nav-label,
.next-article:hover .nav-title {
    color: var(--white);
}

.nav-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gray);
    margin-bottom: 10px;
    font-weight: 700;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.nav-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
}

.next-article {
    text-align: right;
}

/* Article CTA Section */
.article-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 4px solid var(--primary);
}

.article-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 106, 0, 0.08) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.article-cta h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--white);
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.article-cta p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.article-cta .cta-button {
    background: var(--primary);
    box-shadow: 0 10px 40px rgba(255, 106, 0, 0.3);
    position: relative;
    z-index: 1;
}

.article-cta .cta-button:hover {
    background: var(--primary-light);
    box-shadow: 0 15px 50px rgba(255, 106, 0, 0.5);
}

/* Responsive Design for Articles */
@media (max-width: 768px) {
    .article-page {
        padding: 120px 0 80px;
    }
    
    .article-header h1 {
        font-size: 36px;
    }
    
    .article-content {
        font-size: 17px;
    }
    
    .article-content .lead {
        font-size: 20px;
        padding: 24px;
    }
    
    .article-content h2 {
        font-size: 28px;
        margin-top: 48px;
    }
    
    .article-content h3 {
        font-size: 22px;
    }
    
    .article-navigation {
        flex-direction: column;
        gap: 20px;
    }
    
    .next-article {
        text-align: left;
    }
    
    .article-cta h2 {
        font-size: 32px;
    }
    
    .article-cta p {
        font-size: 16px;
    }
}

/* Print Styles for Articles */
@media print {
    .nav,
    .article-navigation,
    .article-cta,
    .footer {
        display: none;
    }
    
    .article-page {
        padding: 0;
        background: white;
    }
    
    .article-header h1 {
        font-size: 32px;
        color: #000;
    }
    
    .article-content {
        font-size: 12pt;
        line-height: 1.6;
        color: #000;
    }
}
