/* Blog List Page */
.blog-list-page {
    font-family: 'Bagoss', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fafafa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.blog-list-main {
    flex: 1;
    padding: 60px 0 80px;
}

.blog-list-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.blog-list-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-list-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 16px 0;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #000b45;
    font-family: 'Bagoss', sans-serif;
}

.blog-list-title .blog-title-icon {
    width: clamp(48px, 6vw, 64px);
    height: clamp(48px, 6vw, 64px);
    object-fit: contain;
}

.blog-list-subtitle {
    margin: 0;
    font-size: clamp(16px, 2.5vw, 20px);
    color: #666;
    font-weight: 400;
}

/* Empty State */
.blog-list-empty {
    text-align: center;
    padding: 80px 20px;
    color: #999;
    font-size: 18px;
}

/* Blog Grid */
.blog-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 11, 69, 0.12);
}

.blog-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    position: relative;
}

/* Blog Card Image */
.blog-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff4a11 0%, #ff6b3d 100%);
    color: #fff;
}

.blog-card-image-placeholder svg {
    width: 64px;
    height: 64px;
    opacity: 0.8;
}

/* Blog Card Content */
.blog-card-content {
    padding: 24px;
}

.blog-card-title {
    margin: 0 0 12px 0;
    font-size: 20px;
    font-weight: 700;
    color: #000b45;
    line-height: 1.4;
    font-family: 'Bagoss', sans-serif;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Blog Card Arrow */
.blog-card-arrow {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff4a11;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-card-arrow {
    background: #000b45;
    transform: translateX(4px);
}

.blog-card-arrow svg {
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-list-main {
        padding: 40px 0 60px;
    }
    
    .blog-list-header {
        margin-bottom: 40px;
    }
    
    .blog-list-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .blog-card-image {
        height: 200px;
    }
    
    .blog-card-content {
        padding: 20px;
    }
    
    .blog-card-title {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .blog-list-container {
        padding: 0 16px;
    }
    
    .blog-list-main {
        padding: 32px 0 48px;
    }
    
    .blog-card-image {
        height: 180px;
    }
}

