/* Галерея работ */
#main-work-image {
    transition: transform 0.3s ease;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#main-work-image:hover {
    transform: scale(1.02);
}

.thumbnail {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    aspect-ratio: 1/1;
}

.thumbnail:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.thumbnail.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(51, 51, 255, 0.3);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumbnail:hover img {
    transform: scale(1.1);
}

/* Адаптивность */
@media (max-width: 767.98px) {
    .thumbnail {
        border-width: 1px;
    }
}