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

.blog-hero {
    text-align: center;
    margin-bottom: 50px;
}

.blog-hero h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 15px;
}

.blog-hero p {
    font-size: 18px;
    color: #888;
}

.blog-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: #1a1a1d;
    border: 2px solid #333;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #4ade80;
    border-color: #4ade80;
    color: #000;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: #1a1a1d;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-image {
    height: 200px;
    overflow: hidden;
}

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

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

.blog-card-content {
    padding: 25px;
}

.blog-card-category {
    display: inline-block;
    padding: 5px 12px;
    background: #4ade80;
    color: #000;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 22px;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-excerpt {
    color: #888;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 13px;
}

.blog-card-author {
    font-weight: 600;
    color: #fff;
}

.blog-card-date {
    color: #666;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.page-btn {
    padding: 10px 20px;
    background: #1a1a1d;
    border: 2px solid #333;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
}

.page-btn:hover,
.page-btn.active {
    background: #4ade80;
    border-color: #4ade80;
    color: #000;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.loading {
    text-align: center;
    padding: 80px 20px;
    color: #888;
}

.no-results {
    text-align: center;
    padding: 80px 20px;
    color: #888;
}

.featured-post {
    background: #1a1a1d;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.featured-post-image {
    height: 100%;
    min-height: 350px;
}

.featured-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-post-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.featured-badge {
    display: inline-block;
    padding: 8px 16px;
    background: #f97316;
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
    width: fit-content;
}

.featured-post-title {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.featured-post-excerpt {
    color: #888;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.featured-post-meta {
    display: flex;
    gap: 20px;
    color: #666;
    font-size: 14px;
}

.blog-sidebar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.sidebar-section {
    background: #1a1a1d;
    border-radius: 12px;
    padding: 25px;
}

.sidebar-title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
    border-bottom: 2px solid #333;
    padding-bottom: 12px;
}

.recent-post {
    padding: 15px 0;
    border-bottom: 1px solid #333;
}

.recent-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.recent-post-title {
    color: #fff;
    font-size: 16px;
    margin-bottom: 8px;
    cursor: pointer;
    transition: color 0.3s;
}

.recent-post-title:hover {
    color: #4ade80;
}

.recent-post-date {
    color: #666;
    font-size: 13px;
}

.category-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #2a2a2f;
    color: #fff;
    border-radius: 20px;
    font-size: 13px;
    margin: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.category-tag:hover,
.category-tag.active {
    background: #4ade80;
    color: #000;
}

.blog-no-posts { grid-column: 1 / -1; }
.blog-pagination-ellipsis { color: #666; }

@media (max-width: 768px) {
    .featured-post {
        grid-template-columns: 1fr;
    }
    
    .featured-post-image {
        min-height: 250px;
    }
    
    .blog-hero h1 {
        font-size: 36px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}
