/* Blog Header */
.blog-header {
    padding: 140px 0 60px;
    text-align: center;
}

.blog-header h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.blog-header p {
    color: #666;
    font-size: 17px;
}

/* Blog Grid */
.blog-section { padding: 0 0 80px; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    background: var(--orange-50);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-image .placeholder-icon {
    font-size: 48px;
    opacity: 0.3;
}

.blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-tag {
    display: inline-block;
    background: var(--orange-100);
    color: var(--orange-500);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    width: fit-content;
}

.blog-card-body h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}

.blog-card-body p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #999;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.blog-empty {
    text-align: center;
    padding: 80px 0;
    color: #999;
    font-size: 16px;
}

/* Blog Post Page */
.blog-post-header {
    padding: 140px 0 40px;
    text-align: center;
}

.blog-post-header .blog-card-tag {
    margin-bottom: 20px;
}

.blog-post-header h1 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    color: #999;
    font-size: 14px;
}

.blog-post-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 24px 80px;
}

.blog-post-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 16px;
}

.blog-post-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 32px 0 12px;
}

.blog-post-content p {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.blog-post-content ul, .blog-post-content ol {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    padding-left: 24px;
}

.blog-post-content blockquote {
    border-left: 3px solid var(--orange-500);
    padding-left: 20px;
    margin: 24px 0;
    color: #555;
    font-style: italic;
}

.blog-post-content img {
    border-radius: var(--radius);
    margin: 24px 0;
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
