/* ==========================================================================
   Work Gallery Component
   Used on: About us page
   ========================================================================== */

.work-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.work-gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.work-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================================================================
   Responsive: Mobile (max-width: 767px)
   ========================================================================== */
@media (max-width: 767px) {
    .work-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .work-gallery-item {
        border-radius: 6px;
    }
}
