/* ================= CANVAS ================= */

#orgCanvas {
    position: relative;
    transform-origin: top left;
    background: #ffffff;
}

/* ================= CARD ================= */

.org-card {
    position: absolute;
    width: 260px;
    height: 300px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    padding: 18px;
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: all .2s ease;
}

.org-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.org-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 14px;
    border: 4px solid #f0fdf4;
}

.org-name {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    min-height: 48px;
}

.org-position {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: #047857;
}

/* ================= MOBILE ================= */

.mobile-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    transition: all .2s ease;
}

.mobile-card:hover {
    transform: translateY(-3px);
}

.mobile-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 14px;
}

.mobile-name {
    font-weight: 700;
    font-size: 16px;
    color: #111827;
}

.mobile-position {
    font-size: 14px;
    color: #047857;
    margin-top: 6px;
}
