/**
 * 2025 Your Company
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 *
 * @author    Your Company <email@yourcompany.com>
 * @copyright 2025 Your Company
 * @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */

.toollightgallery-container {
    margin-bottom: 2.5rem;
}

.toollightgallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    grid-gap: 15px;
    margin-top: 1.5rem;
}

.toollightgallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.toollightgallery .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.toollightgallery .gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.toollightgallery .gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .toollightgallery {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .toollightgallery .gallery-item img {
        height: 150px;
    }
}

@media (max-width: 480px) {
    .toollightgallery {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    }
    
    .toollightgallery .gallery-item img {
        height: 120px;
    }
}
