.rsf-staff-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rsf-staff-member {
    display: flex;
    align-items: stretch;
    background: #2E313E;
    border-radius: 12px;
    overflow: hidden;
}

.rsf-staff-photo {
    flex-shrink: 0;
    width: 120px;
    height: 160px;
    overflow: hidden;
    background: #1e2029;
    margin: 10px;
    border-radius: 6px;
}
.rsf-staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.rsf-staff-no-photo {
    width: 100%;
    height: 100%;
    background: #1e2029;
}

.rsf-staff-name {
    background: #363A48;
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 600;
    color: #f5f5f0;
}

.rsf-staff-details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rsf-staff-body {
    padding: 12px 15px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.rsf-staff-row {
    font-size: 14px;
    line-height: 1.6;
    color: #f5f5f0;
}

.rsf-staff-field {
    font-weight: 600;
    color: #f5f5f0;
}

@media (max-width: 500px) {
    .rsf-staff-member { flex-direction: column; }
    .rsf-staff-photo { width: calc(100% - 20px); height: 200px; }
}
