.hardware-blog-archive {
    padding: 40px 20px;
    background: #f8f9fa;
}



/* Header */
.blog-archive-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-archive-header h1 {
    font-size: 42px;
    font-weight: 700;
    color: #111;
}

.blog-archive-header p {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
}

/* Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Blog Card */
.blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-card-image {
    height: 220px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card a{
    text-decoration: none;
}

.blog-card-content {
    padding: 24px;
}

.blog-date {
    font-size: 13px;
    color: #999;
    display: block;
    margin-bottom: 10px;
}

.blog-card-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 12px;
}

.blog-card-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Pagination */
.blog-pagination {
    margin-top: 60px;
    text-align: center;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-block;
    margin: 0 6px;
    padding: 10px 16px;
    border-radius: 30px;
    background: #111;
    color: #fff;
    text-decoration: none;
}

.blog-pagination .current {
    background: #f5c542;
    color: #111;
}

/* Responsive */
@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-archive-header h1 {
        font-size: 32px;
    }
}
