.blog-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 48px 24px;
}

.blog-content h1 {
    margin-bottom: 24px;
}

.blog-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
}

.blog-content h3 {
    margin-top: 28px;
    margin-bottom: 12px;
}

.blog-content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.blog-content ul, .blog-content ol {
    margin-bottom: 20px;
    padding-left: 28px;
}

.blog-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.blog-content table {
    width: 100%;
    margin: 24px 0;
    border-collapse: collapse;
}

.blog-content th, .blog-content td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.blog-content th {
    background-color: #f5f5f5;
    font-weight: 600;
}

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

.blog-author-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0 32px 0;
    padding-bottom: 32px;
    border-bottom: 1px solid #e5e5e5;
}

.blog-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
}

.highlight-box {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin: 28px 0;
    border-left: 4px solid #0066cc;
}

.highlight-box p {
    margin-bottom: 8px;
}

.highlight-box p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-content {
        padding: 32px 16px;
    }

    .blog-hero-image {
        max-height: 250px;
        border-radius: 8px;
    }
}
