.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 2rem;
}

.project-gallery-item {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: center;
    transition: transform 0.2s;
}
.project-gallery-item:hover {
    transform: scale(1.02);
}
.project-gallery-item img {
    max-width: 100%;
    height: auto;
}
.project-gallery-item h4 {
    margin: 10px 0 0;
    font-size: 1rem;
}

.project-pagination {
    margin-top: 30px;
    text-align: center;
}

.project-pagination .page-numbers {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 3px;
    background: #f1f1f1;
    text-decoration: none;
}
.project-pagination .current {
    background: #0073aa;
    color: #fff;
}
.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.project-gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
