/* Blog Page Styles */

.blog-page-section {
    padding: 60px 0 80px;
}

.blog-detail-section {
    padding: 60px 0 80px;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.article-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    color: #718096;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 40px;
}

.article-text h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 40px 0 20px;
}

.article-text h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

.article-text p {
    line-height: 2;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--text-color);
}

.article-text ul {
    margin: 20px 0 20px 40px;
}

.article-text ul li {
    list-style: disc;
    line-height: 2;
    margin-bottom: 10px;
    color: var(--text-color);
}

.article-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 30px;
    background: var(--light-color);
    border-radius: 12px;
    margin-top: 40px;
}

.article-share span {
    font-weight: 600;
    color: var(--primary-color);
}

.article-share a {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.article-share a:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .article-content {
        padding: 30px 20px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-image {
        height: 250px;
    }
    
    .article-text h2 {
        font-size: 1.5rem;
    }
}