/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 07 2026 | 08:26:47 */
.kadra-box {
    text-align: center;
    margin-bottom: 30px;
    max-width: 300px;
}

.kadra-avatar-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 100%; /* Proporcja 1:1 (Kwadrat). Zmień jeśli wolisz prostokąt */
    margin-bottom: 15px;
}

.kadra-avatar-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease-in-out;
}

/* Stan początkowy */
.kadra-img-first {
    opacity: 1;
    z-index: 2;
}

.kadra-img-hover {
    opacity: 0;
    z-index: 1;
}

/* Efekt Hover na całym boksie pracownika */
.kadra-box:hover .kadra-img-first {
    opacity: 0;
}

.kadra-box:hover .kadra-img-hover {
    opacity: 1;
}

.kadra-name {
    margin: 10px 0 5px 0;
    font-size: 1.2rem;
    font-weight: bold;
}

.kadra-desc {
    font-size: 0.9rem;
    color: #555;
}