/* project-gallery.css */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.gallery-item {
    background-color: rgba(30, 40, 70, 0.5);
    border: 1px solid rgba(77, 159, 236, 0.2);
    border-radius: 10px;
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(77, 159, 236, 0.25);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item figcaption {
    padding: 1rem;
    font-size: 0.9rem;
    color: rgba(165, 216, 255, 0.8);
    text-align: center;
}
