/* Dedicated Gallery Styles */
.project-gallery {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;
    margin: 2rem 0 !important;
}

.project-gallery img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    border: 1px solid #334155 !important;
    border-radius: 4px !important;
    background: #000 !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.project-gallery img:hover {
    transform: scale(1.05) !important;
    border-color: #818cf8 !important;
    box-shadow: 0 0 15px rgba(129, 140, 248, 0.3) !important;
}

@media (max-width: 768px) {
    .project-gallery {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 480px) {
    .project-gallery {
        grid-template-columns: 1fr !important;
    }
}
