.organigram {
    margin: 2rem 0;
}

.organigram-group {
    margin-bottom: 3rem;
}

.organigram-group h2 {
    margin-bottom: 1.5rem;
}

.organigram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.organigram-card {
    text-align: center;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.organigram-photo {
    width: 100%;
    max-width: 200px;      /* ✅ limit to 200px */
    aspect-ratio: 1 / 1;   /* ✅ perfect square */
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto 1rem auto;  /* ✅ center horizontally */
}

.organigram-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;     /* ✅ crop nicely */
}