/* Struktur Organisasi CSS */

/* Styling untuk foto staf */
.staff-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 10px;
    overflow: hidden;
    border: 3px solid #0077b6;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f0f0f0;
}

.staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Styling khusus untuk level jabatan */
.org-level-1 .staff-photo {
    width: 100px;
    height: 100px;
    border-width: 4px;
}

.org-level-2 .staff-photo {
    width: 80px;
    height: 80px;
}

.org-level-3 .staff-photo {
    width: 60px;
    height: 60px;
}

/* Modifikasi untuk org-content */
.org-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.org-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.org-content h3 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #0077b6;
}

.org-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .staff-photo {
        width: 60px;
        height: 60px;
    }
    
    .org-content h3 {
        font-size: 14px;
    }
    
    .org-content p {
        font-size: 12px;
    }
}