.org-card {
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 12px;
    text-align: center;
    position: relative;
    margin-top: 20px;
    padding-top: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 98%;
}

.org-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
}

/* กรอบรูปสีเหลือง (อยู่ภายในตัวการ์ด) */
.photo-frame {
    width: 180px;
    height: 220px;
    border: 6px solid #ffffff;
    background-color: #fff;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 0px;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* แถบชื่อสีเหลือง */
.name-band {
    background-color: #ffffff;
    padding: 18px 10px;
    margin-top: 25px;
    position: relative;
    z-index: 1;
}

.name-band h4,
.name-band h5 {
    margin: 0;
    color: #1a1a1a;
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
}

/* แถบตำแหน่งสีขาว */
.role-band {
    padding: 25px 20px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.role-band p {
    margin: 0;
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    font-weight: 500;
}

/* ปรับแต่งสำหรับหน้าจอมือถือ */
@media (max-width: 768px) {
    .org-card {
        margin-bottom: 80px;
    }
}