<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Factsheet Title – PopLab</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
/* ── Brand tokens ── */
:root {
--orange: #F68E5B;
--green: #A2D4A5;
--purple: #8E78B7;
--blue: #6FB4C3;
--black: #081418;
--grey: #DDDDDD;
--off-white: #F9F9F9;
--text: #1a2a2e;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: 'Inter', Arial, sans-serif;
background: var(--off-white);
color: var(--text);
font-size: 16px;
line-height: 1.6;
}
/* ── Page wrapper ── */
.fs-page {
max-width: 900px;
margin: 48px auto;
padding: 0 24px 64px;
}
/* ── Header bar ── */
.fs-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: 20px 0 20px;
border-bottom: 3px solid var(--orange);
margin-bottom: 40px;
}
.fs-header-left {
display: flex;
flex-direction: column;
gap: 2px;
}
.fs-tag {
font-size: 0.7em;
font-weight: 700;
letter-spacing: 4px;
text-transform: uppercase;
color: var(--orange);
}
.fs-title {
font-size: 2em;
font-weight: 800;
color: var(--black);
line-height: 1.15;
letter-spacing: -0.5px;
}
.fs-year {
font-size: 0.8em;
font-weight: 500;
color: #7a9a9f;
letter-spacing: 2px;
text-transform: uppercase;
margin-top: 2px;
}
.fs-logo {
flex-shrink: 0;
margin-left: 32px;
}
.fs-logo img {
height: 70px;
width: auto;
}
/* ── Intro ── */
.fs-intro {
font-size: 1.08em;
font-weight: 400;
font-style: italic;
color: var(--text);
line-height: 1.8;
border-left: 4px solid var(--green);
padding-left: 20px;
margin-bottom: 40px;
}
/* ── Key stats row ── */
.fs-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 16px;
margin-bottom: 40px;
}
.fs-stat {
background: #fff;
border-radius: 10px;
padding: 24px 20px;
border-top: 4px solid var(--grey);
box-shadow: 0 2px 12px rgba(8,20,24,0.06);
display: flex;
flex-direction: column;
gap: 6px;
}
.fs-stat:nth-child(1) { border-top-color: var(--purple); }
.fs-stat:nth-child(2) { border-top-color: var(--green); }
.fs-stat:nth-child(3) { border-top-color: var(--blue); }
.fs-stat-number {
font-size: 2.2em;
font-weight: 800;
color: var(--purple);
line-height: 1;
letter-spacing: -1px;
}
.fs-stat:nth-child(2) .fs-stat-number { color: #5aaa64; }
.fs-stat:nth-child(3) .fs-stat-number { color: var(--blue); }
.fs-stat-label {
font-size: 0.88em;
font-weight: 500;
color: #4a6a70;
line-height: 1.4;
}
/* ── Highlight callout ── */
.fs-callout {
background: var(--black);
color: #fff;
border-radius: 10px;
padding: 28px 32px;
margin-bottom: 40px;
display: flex;
align-items: center;
gap: 24px;
}
.fs-callout-number {
font-size: 3em;
font-weight: 800;
color: var(--orange);
line-height: 1;
white-space: nowrap;
letter-spacing: -2px;
}
.fs-callout-text {
font-size: 1em;
font-weight: 400;
line-height: 1.6;
color: #c8d8db;
}
.fs-callout-text strong {
color: #fff;
font-weight: 600;
}
/* ── Section heading ── */
.fs-section-heading {
font-size: 0.72em;
font-weight: 700;
letter-spacing: 3px;
text-transform: uppercase;
color: var(--orange);
margin-bottom: 16px;
display: flex;
align-items: center;
gap: 10px;
}
.fs-section-heading::after {
content: '';
flex: 1;
height: 1px;
background: var(--grey);
}
/* ── Chart area ── */
.fs-chart-wrap {
background: #fff;
border-radius: 10px;
padding: 28px;
margin-bottom: 8px;
box-shadow: 0 2px 12px rgba(8,20,24,0.06);
}
.fs-chart-wrap img {
max-width: 100%;
height: auto;
display: block;
}
.fs-chart-caption {
font-size: 0.82em;
color: #7a9a9f;
margin-bottom: 40px;
padding-left: 4px;
}
/* ── References ── */
.fs-references {
background: #fff;
border-radius: 10px;
padding: 24px 28px;
box-shadow: 0 2px 12px rgba(8,20,24,0.06);
}
.fs-references ol {
padding-left: 20px;
display: flex;
flex-direction: column;
gap: 10px;
}
.fs-references li {
font-size: 0.8em;
color: #5a7a80;
line-height: 1.6;
}
.fs-references a {
color: var(--blue);
text-decoration: none;
word-break: break-all;
}
.fs-references a:hover { text-decoration: underline; }
/* ── Footer ── */
.fs-footer {
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid var(--grey);
display: flex;
align-items: center;
justify-content: space-between;
gap: 16px;
}
.fs-footer-powered {
font-size: 0.75em;
color: #aaa;
text-transform: uppercase;
letter-spacing: 1.5px;
}
.fs-footer-pdf a {
font-size: 0.82em;
font-weight: 600;
color: var(--orange);
text-decoration: none;
border: 1.5px solid var(--orange);
padding: 6px 14px;
border-radius: 20px;
transition: background 0.2s, color 0.2s;
}
.fs-footer-pdf a:hover {
background: var(--orange);
color: #fff;
}
/* ── Responsive ── */
@media (max-width: 640px) {
.fs-stats { grid-template-columns: 1fr; }
.fs-callout { flex-direction: column; gap: 12px; }
.fs-callout-number { font-size: 2.2em; }
.fs-header { flex-direction: column; align-items: flex-start; gap: 16px; }
.fs-logo { margin-left: 0; }
.fs-title { font-size: 1.5em; }
}
</style>
</head>
<body>
<div class="fs-page">
<!-- ══ HEADER ══ -->
<header class="fs-header">
<div class="fs-header-left">
<span class="fs-tag">Factsheet</span>
<h1 class="fs-title">Aboriginal and Torres Strait<br>Islander Peoples</h1>
</div>
<div class="fs-logo">
<img src="https://populationlab.org/wp-content/uploads/2026/03/PopLab-White-BG.png" alt="PopLab – Connecting the dots">
</div>
</header>
<!-- ══ INTRO ══ -->
<p class="fs-intro">
Aboriginal and Torres Strait Islander peoples are the First Peoples of Australia. They are not one group but comprise hundreds of distinct Nations, each with their own languages, histories, and cultural traditions. Together, they are the custodians of the world's oldest living continuous cultures, with evidence of presence in Australia for at least 65,000 years. The experiences of Aboriginal and Torres Strait Islander peoples are diverse and shaped by geography, community, and history.
</p>
<!-- ══ KEY STATS ══ -->
<div class="fs-section-heading">Key figures</div>
<div class="fs-stats">
<div class="fs-stat">
<div class="fs-stat-number">3.8%</div>
<div class="fs-stat-label">of the total Australian population identify as Aboriginal and/or Torres Strait Islander</div>
</div>
<div class="fs-stat">
<div class="fs-stat-number">34.5%</div>
<div class="fs-stat-label">of Aboriginal and Torres Strait Islander people live in New South Wales</div>
</div>
<div class="fs-stat">
<div class="fs-stat-number">15.3%</div>
<div class="fs-stat-label">of Aboriginal and Torres Strait Islander people live in Remote and Very Remote Australia (150,900 people)</div>
</div>
</div>
<!-- ══ CALLOUT ══ -->
<div class="fs-callout">
<div class="fs-callout-number">983,700</div>
<div class="fs-callout-text">
Aboriginal and Torres Strait Islander people were recorded (ERP) in the <strong>2021 Census</strong>
</div>
</div>
<!-- ══ CHART ══ -->
<div class="fs-section-heading">Population structure</div>
<div class="fs-chart-wrap">
<img src="https://populationlab.org/wp-content/uploads/2026/03/Aboriginal-and-Torres-Strait-Islander-population-2.png" alt="Population pyramid of Aboriginal and Torres Strait Islander population 2021">
</div>
<p class="fs-chart-caption">Population pyramid of the Australian Aboriginal and Torres Strait Islander population in 2021, showing males (left) and females (right).</p>
<!-- ══ REFERENCES ══ -->
<div class="fs-section-heading">References</div>
<div class="fs-references">
<ol>
<li>Australian Bureau of Statistics. (2011-to-2031). <em>Estimates and projections, Australian Aboriginal and Torres Strait Islander population.</em> ABS. <a href="https://www.abs.gov.au/statistics/people/aboriginal-and-torres-strait-islander-peoples/estimates-and-projections-australian-aboriginal-and-torres-strait-islander-population/2011-2031">abs.gov.au</a></li>
<li>Australian Institute of Health and Welfare. (2025). <em>Profile of First Nations people.</em> <a href="https://www.aihw.gov.au/reports/australias-welfare/profile-of-indigenous-australians">aihw.gov.au</a></li>
<li>Australian Bureau of Statistics. (2024). <em>Births, Australia.</em> ABS. <a href="https://www.abs.gov.au/statistics/people/population/births-australia/latest-release">abs.gov.au</a></li>
</ol>
</div>
<!-- ══ FOOTER ══ -->
<footer class="fs-footer">
<div class="fs-footer-powered">
Powered by Australian National University
</div>
<div class="fs-footer-pdf">
<a href=" https://populationlab.org/wp-content/uploads/2026/06/Aboriginal-and-Torres-Strait-Islander-population-factsheet-2026.pdf" target="_blank">↓ Download PDF</a>
</div>
</footer>
</div>
</body>
</html>