/* blog_info.css */
.blog-article-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 24px;
}

.article-header {
    margin-bottom: 40px;
    text-align: center;
}

.article-category {
    color: #277EFF;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: inline-block;
}

.article-title {
    font-size: 40px;
    line-height: 1.3;
    color: #000000;
    margin-bottom: 24px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .article-title {
        font-size: 28px;
    }
}

.article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    color: #666666;
    font-size: 14px;
    flex-wrap: wrap;
}

.article-meta .divider {
    color: #EBEBEB;
}

.article-hero-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 60px;
    background-color: #F1F3F4;
}

@media (max-width: 768px) {
    .article-hero-image {
        height: 250px;
        margin-bottom: 40px;
        border-radius: 12px;
    }
}

.article-content {
    font-size: 18px;
    line-height: 1.8;
    color: #333333;
}

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

.article-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin: 48px 0 24px;
}

.article-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 32px 0 16px;
}

.article-content img {
    width: 100%;
    border-radius: 12px;
    margin: 32px 0;
}

.article-content blockquote {
    border-left: 4px solid #277EFF;
    padding-left: 20px;
    margin: 32px 0;
    font-style: italic;
    color: #555555;
    background: #F8FAFC;
    padding: 24px;
    border-radius: 0 12px 12px 0;
}

.article-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #EBEBEB;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #F1F3F4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s;
    cursor: pointer;
}

.share-btn:hover {
    background: #277EFF;
    color: #FFFFFF;
}