AI Bias in the Workplace
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
–navy: #0B1F3A;
–navy-mid: #122848;
–navy-light: #1A3560;
–accent: #C4833A;
–accent-light: #E8A85A;
–white: #FFFFFF;
–off-white: #F7F5F0;
–rule-line: #D0D8E4;
–text-muted: #7A8FA8;
}
html, body {
width: 8.5in;
min-height: 11in;
background: var(–off-white);
font-family: ‘DM Sans’, sans-serif;
}
.page {
width: 8.5in;
min-height: 11in;
background: var(–white);
display: flex;
flex-direction: column;
position: relative;
overflow: hidden;
}
/* ── HEADER ── */
.header {
background: var(–navy);
padding: 0.42in 0.55in 0.38in;
position: relative;
overflow: hidden;
}
.header::before {
content: ”;
position: absolute;
top: -60px; right: -60px;
width: 220px; height: 220px;
border-radius: 50%;
border: 2px solid rgba(196,131,58,0.18);
}
.header::after {
content: ”;
position: absolute;
top: -30px; right: -30px;
width: 130px; height: 130px;
border-radius: 50%;
background: rgba(196,131,58,0.07);
}
.header-eyebrow {
font-size: 8.5pt;
font-weight: 600;
letter-spacing: 0.2em;
color: var(–accent);
text-transform: uppercase;
margin-bottom: 10px;
}
.header h1 {
font-family: ‘Playfair Display’, serif;
font-size: 26pt;
font-weight: 900;
color: var(–white);
line-height: 1.08;
max-width: 5.8in;
margin-bottom: 10px;
}
.header h1 span {
color: var(–accent);
}
.header-tagline {
font-family: ‘Playfair Display’, serif;
font-style: italic;
font-size: 10.5pt;
color: rgba(255,255,255,0.62);
margin-top: 12px;
padding-top: 12px;
border-top: 1px solid rgba(255,255,255,0.12);
}
/* ── BODY ── */
.body {
flex: 1;
display: flex;
flex-direction: column;
padding: 0.35in 0.55in 0.3in;
gap: 0.22in;
}
/* Two-column row */
.two-col {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 0.28in;
}
/* Section label */
.section-label {
font-size: 6.8pt;
font-weight: 700;
letter-spacing: 0.22em;
text-transform: uppercase;
color: var(–accent);
margin-bottom: 10px;
display: flex;
align-items: center;
gap: 7px;
}
.section-label::after {
content: ”;
flex: 1;
height: 1px;
background: var(–rule-line);
}
.section-title {
font-family: ‘Playfair Display’, serif;
font-size: 13pt;
font-weight: 700;
color: var(–navy);
margin-bottom: 13px;
line-height: 1.2;
}
/* Bias items */
.bias-list { display: flex; flex-direction: column; gap: 9px; }
.bias-item {
display: flex;
gap: 10px;
align-items: flex-start;
}
.bias-icon {
width: 30px; height: 30px;
background: var(–navy);
border-radius: 7px;
display: flex; align-items: center; justify-content: center;
flex-shrink: 0;
margin-top: 1px;
}
.bias-icon svg { width: 14px; height: 14px; }
.bias-content {}
.bias-type {
font-size: 8.5pt;
font-weight: 700;
color: var(–navy);
letter-spacing: 0.03em;
}
.bias-arrow {
color: var(–accent);
margin: 0 4px;
font-weight: 700;
}
.bias-desc {
font-size: 8pt;
color: #4A5E78;
line-height: 1.4;
font-weight: 400;
display: inline;
}
/* Why it matters */
.matter-list { display: flex; flex-direction: column; gap: 10px; }
.matter-item {
display: flex;
gap: 11px;
align-items: flex-start;
}
.matter-dot {
width: 6px; height: 6px;
border-radius: 50%;
background: var(–accent);
flex-shrink: 0;
margin-top: 5px;
}
.matter-text {
font-size: 9pt;
color: var(–navy);
font-weight: 500;
line-height: 1.35;
}
/* ── RULE BOX ── */
.rule-box {
background: var(–navy);
border-radius: 10px;
padding: 0.26in 0.4in;
position: relative;
overflow: hidden;
}
.rule-box::before {
content: ”;
position: absolute;
left: 0; top: 0; bottom: 0;
width: 5px;
background: var(–accent);
border-radius: 10px 0 0 10px;
}
.rule-box-label {
font-size: 6.5pt;
font-weight: 700;
letter-spacing: 0.25em;
text-transform: uppercase;
color: var(–accent);
margin-bottom: 10px;
display: flex;
align-items: center;
gap: 8px;
}
.rule-box-label .rule-icon {
width: 18px; height: 18px;
background: rgba(196,131,58,0.2);
border-radius: 4px;
display: flex; align-items: center; justify-content: center;
}
.rule-box-text {
font-family: ‘Playfair Display’, serif;
font-size: 12.5pt;
font-weight: 700;
color: var(–white);
line-height: 1.45;
max-width: 6.8in;
}
/* ── BOTTOM SECTIONS ── */
.orgs-list { display: flex; flex-direction: column; gap: 9px; }
.org-item {
display: flex;
gap: 10px;
align-items: flex-start;
}
.org-num {
width: 20px; height: 20px;
background: var(–accent);
border-radius: 4px;
display: flex; align-items: center; justify-content: center;
font-size: 7.5pt;
font-weight: 700;
color: white;
flex-shrink: 0;
margin-top: 1px;
}
.org-text {
font-size: 8.8pt;
color: var(–navy);
font-weight: 500;
line-height: 1.35;
padding-top: 2px;
}
/* Safeguard */
.safeguard-box {
background: var(–off-white);
border: 1.5px solid var(–rule-line);
border-radius: 8px;
padding: 0.18in 0.22in;
}
.safeguard-intro {
font-size: 8.5pt;
font-weight: 600;
color: var(–navy);
margin-bottom: 10px;
font-style: italic;
}
.safeguard-list { display: flex; flex-direction: column; gap: 8px; }
.safeguard-item {
display: flex;
gap: 9px;
align-items: flex-start;
}
.safeguard-check {
color: var(–accent);
font-size: 10pt;
font-weight: 700;
flex-shrink: 0;
line-height: 1.3;
}
.safeguard-text {
font-size: 8.5pt;
color: #3D5270;
line-height: 1.35;
}
/* ── FOOTER ── */
.footer {
background: var(–navy);
padding: 0.16in 0.55in;
display: flex;
align-items: center;
justify-content: space-between;
}
.footer-left {}
.footer-name {
font-family: ‘Playfair Display’, serif;
font-size: 10pt;
font-weight: 700;
color: var(–white);
}
.footer-sub {
font-size: 7.5pt;
color: rgba(255,255,255,0.5);
margin-top: 2px;
letter-spacing: 0.03em;
}
.footer-right {
text-align: right;
}
.footer-url {
font-size: 9pt;
font-weight: 600;
color: var(–accent);
letter-spacing: 0.04em;
}
.footer-divider {
width: 1px;
height: 30px;
background: rgba(255,255,255,0.15);
margin: 0 0.3in;
flex-shrink: 0;
}
.footer-tag {
font-size: 7.5pt;
color: rgba(255,255,255,0.38);
letter-spacing: 0.12em;
text-transform: uppercase;
text-align: center;
}
@media print {
html, body { width: 8.5in; height: 11in; }
.page { page-break-after: always; }
}
AI Bias in the Workplace:
Executive Briefing · Workplace AI
AI Bias in the Workplace:
What Leaders Miss and How to Respond
“AI does not remove responsibility; it redistributes it.”
Section 01
The Risk
DATA
BIAS
Flawed data,
bad decisions
SAMPLING
BIAS
Missing groups
distort outcomes
CONFIRM-
ATION
Reinforces
assumptions
AVAIL-
ABILITY
Trusted too
quickly
Section 02
Why It Matters
Poor hiring and evaluation decisions that disadvantage qualified candidates
Reduced trust in leadership when AI-driven choices go unexplained
Legal and reputational exposure from unvetted automated outcomes
Non-Negotiable Rule
“If an AI-assisted decision impacts a person, it must be independently verified using a credible source and clearly explained before action is taken.”
Section 03
What Effective Organizations Do
1
Treat AI as input, not authority
2
Require evidence, not assumptions
3
Evaluate patterns over time, not isolated incidents
4
Train employees to question outputs systematically
Section 04
Built-In Safeguard
Pause and review when:
◆
A decision directly affects a person’s role, compensation, or opportunity
◆
The output seems unusually confident or definitive
◆
The result lacks clear, traceable evidentiary support