.staff-card {
    display: flex;
    gap: 32px;
    padding: 32px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e6e9ec;
    border-left: 5px solid #2a7f9e;
    transition: all 0.25s ease;
    align-items: center;
    margin-bottom: 30px;
}

.staff-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.staff-image {
    position: relative;
    flex-shrink: 0;
}

.staff-image::before {
    display: none;
}

.staff-image img {
    width: 230px;
    height: 280px;
    object-fit: cover;
    object-position: top;
    border-radius: 14px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.staff-card:hover img {
    transform: scale(1.02);
}

.staff-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    flex: 1;
}

.staff-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.staff-name {
    font-size: 26px;
    font-weight: 800;
    color: #1f3b4d;
    line-height: 1.3;
}

.staff-position {
    font-size: 17px;
    color: #6c757d;
}

.staff-divider {
    height: 1px;
    background: #e5e5e5;
    margin: 10px 0;
    width: 100%;
}

.staff-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.staff-item {
    font-size: 15px;
}

.label {
    color: #6c757d;
    margin-right: 6px;
}

.value {
    color: #1f3b4d;
    font-weight: 600;
}

@media (max-width: 900px) {
    .staff-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .staff-image img {
        width: 240px;
        height: 300px;
    }

    .staff-content {
        align-items: center;
    }

    .staff-divider {
        width: 100%;
    }
}