/* Article Page Styles */

.article-header {
    background: var(--white);
    padding: 100px 0 40px;
    border-bottom: 1px solid var(--light-gray);
}

.article-header-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

.article-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-category.news {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(33, 150, 243, 0.3);
}

.article-category.article {
    background: linear-gradient(135deg, #FF9800 0%, #F57C00 100%);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(255, 152, 0, 0.3);
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 20px;
}

.article-body {
    background: var(--white);
    padding: 60px 0;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.article-text {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-dark);
    margin-bottom: 30px;
}

.article-text p {
    margin-bottom: 25px;
}

.article-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 50px 0 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-yellow);
}

.article-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 40px 0 20px;
}

.article-text ul,
.article-text ol {
    margin: 20px 0 20px 30px;
    line-height: 2;
}

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

.article-text strong {
    font-weight: 700;
    color: var(--text-dark);
}

.article-text a {
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-yellow);
    transition: all 0.3s ease;
}

.article-text a:hover {
    color: var(--accent-yellow);
    border-bottom-color: var(--accent-yellow);
}

.article-navigation {
    background: var(--light-gray);
    padding: 40px 0;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.article-nav-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.article-nav-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: var(--white);
    border-radius: 15px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    flex: 1;
    max-width: 300px;
}

.article-nav-link:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.article-nav-link.prev {
    text-align: left;
}

.article-nav-link.next {
    text-align: right;
    flex-direction: row-reverse;
}

.article-nav-link.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.article-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 30px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 50px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.article-back-link:hover {
    background: var(--gradient);
    color: var(--white);
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

/* Responsive Design for Article Pages */
@media (max-width: 768px) {
    .article-header {
        padding: 90px 0 30px;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-content {
        padding: 0 20px;
    }

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

    .article-text h2 {
        font-size: 1.5rem;
    }

    .article-text h3 {
        font-size: 1.3rem;
    }

    .article-nav-content {
        flex-direction: column;
    }

    .article-nav-link {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 1.75rem;
    }

    .article-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}






