UNIT 16 • STAGE 3 OF 7

The Land

Add the land section: what the IRA stopped, what it restored, and what it could not undo

UNIT
STEP 1

Stage 3: The Land

The Policy section in Stage 2 documented what the IRA authorized. Stage 3 documents the land outcomes: what the IRA stopped, what was partially restored, and what remained unchanged. The gap between those three categories is the story of this era's limits.

By 1934, Tribal land holdings had dropped from 138 million acres in 1887 to approximately 48 million acres. The IRA ended new allotments and returned some surplus land to Tribal trust ownership. But land that had already passed to non-Native ownership through fee patents, tax sales, or homesteading was not returned. The result was a Tribal land base that stabilized in the 1930s at far below what existed before allotment, with a permanent patchwork of ownership across many reservations.

Two specific consequences of this era deserve their own space in your site: checkerboard ownership and fractionation. These are not historical abstractions. They affect how Tribal nations govern today, how land is used, and who has authority over what happens on reservation land.

Checkerboard Ownership

On many reservations, fee-patented land (owned by individuals and subject to state property taxes), Tribal trust land (owned by the Tribe, held in trust by the federal government), and individual allotments (held in trust for individual Tribal members) all exist side by side on the same reservation. This pattern is called checkerboard ownership. Federal jurisdiction, Tribal jurisdiction, and state jurisdiction can vary parcel by parcel. Checkerboard ownership creates complex, ongoing legal questions about who has authority to regulate land use, criminal jurisdiction, and taxation across a reservation.

Fractionation

When an allottee died without a will, their allotment passed to all their heirs in equal shares. Those heirs could not divide the physical land, so over generations, each parcel accumulated dozens or hundreds of fractional ownership interests. A 160-acre allotment might have 50 or 100 co-owners, each holding a fraction of a fraction of an interest. No single owner could use, lease, or sell the parcel without agreement from the others. The federal government managed these fractionated allotments, often leasing them for minimal revenue. The Indian Land Consolidation Act of 1983 and the Cobell Settlement of 2010 addressed parts of this problem, but fractionation still affects millions of acres today.

STEP 2

The New CSS

Stage 3 introduces a three-column status card grid and a two-column impact layout. The teaching concept is using a small status label with a distinct color to communicate the outcome category before the reader reaches the text.

Land status grid

// Three outcome cards, what the IRA stopped, restored, and left unchanged. .land-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
  • grid-template-columns: repeat(3, 1fr): Three equal columns. Same shorthand pattern as the four-column repeat(4, 1fr) you used in Stage 2, now with three items. You change one number to change how many columns the grid produces.
  • margin-bottom: 64px: Space between the three-card grid above and the two-card impact section below. Vertical rhythm signals that these are two distinct sub-sections within the same section.

Status label with color variant

// Base label, color changes to signal the outcome. .land-status {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.land-status.ended  { color: var(--text-muted); }
.land-status.restored { color: var(--gold); }
.land-status.lost   { color: var(--text-muted); }
  • .land-status: The base class. Sets the typography shared by all three status labels: small, uppercase, tracked. The same structure you have seen on .section-label and .policy-card-label.
  • .land-status.ended and .land-status.lost: Both use var(--text-muted), the darkest text color in the palette. Muted color signals a historical, settled fact rather than an ongoing positive.
  • .land-status.restored: Uses var(--gold), the full accent color. Gold signals something that actually happened, something real and measurable, even if limited. The color carries meaning without a single extra word.

Land number at scale

// A number large enough to be the argument, not just text. .land-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 8px;
}
  • font-family: 'Playfair Display': Same serif used for the h1 and .section-title. Numbers in Playfair carry the weight of the historical record. They read as documented facts, not infographics.
  • font-size: clamp(2.5rem, 4vw, 4rem): The same clamp() pattern from Unit 14's stat callouts, scaled down slightly. The minimum is 2.5rem on narrow screens, grows to up to 4rem at wider viewports. You know this pattern: clamp(min, preferred, max).
  • line-height: 1: Collapses vertical space above and below the number. At display scale, the default line-height would create too much gap between the number and the label below it.

Impact card (two-column layout)

// Two cards at equal width for the deeper consequence content. .impact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.impact-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 12px 12px;
  padding: 32px 28px;
}
  • border: 1px solid var(--gold-border): The standard card border at 22% opacity. This defines the full card edge at low weight.
  • border-top: 3px solid var(--gold): A thicker top border at full gold opacity that overrides the border shorthand on the top edge. This is the same temporal signal technique you used in Unit 14. The top border is the first thing the eye reaches when scanning down the page, so using it to mark these cards as a distinct pair draws attention before any text is read.
  • border-radius: 0 0 12px 12px: Rounds only the bottom two corners. The flat top with the gold line reads as a header. The round bottom connects it visually to other cards on the page. Four values in border-radius go: top-left, top-right, bottom-right, bottom-left.
STEP 3

Fill In Your Content

Find the <!-- REPLACE: ... --> comments in the editor. Three places to fill in:

  • Section intro paragraph: Write 2 to 3 sentences in your own words. What did the IRA accomplish for the land? What did it not accomplish?
  • Land cards: The three cards are pre-written. Read them carefully. If you found different specific numbers in your research, update them. The facts should match what your sources say.
  • Regional connection card: Find the <!-- ADD YOUR NATION --> comment. Add a paragraph about how the land situation in this era affected your own Tribal nation or a nation from your region.

Writing about land

Land loss is a subject that can be described in numbers or in practice. Use both. A number like "90 million acres" is a documented fact. A description like "each parcel of checkerboard land may have different legal jurisdiction from the parcel next to it" is a consequence. The strongest land sections in this series use both: first the number, then what that number produces in practice.

STEP 4

Why This Section Matters

The land section makes the limits of the IRA legible. A reader who only encountered Stage 2 might think the IRA was a success story. Stage 3 gives the full picture: the law changed, some land was returned, but the majority of what was lost stayed lost. The three-card layout is designed to hold that tension. All three outcomes are true simultaneously.

The impact cards below the grid go one level deeper. Checkerboard ownership and fractionation are not just historical records. They are active legal and practical challenges that Tribal nations navigate today. Your site documents where they came from.

Red Lake Nation: A Different Starting Point

Red Lake Nation in northwestern Minnesota is one of the few reservations in the country that entered the Indian Reorganization Era with its land base largely intact. Because Red Lake is a closed reservation that resisted allotment under the Nelson Act (1889) through political and legal pressure, its land was not subject to the same checkerboard ownership and fractionation that affected most reservations. Red Lake adopted an IRA-era constitution in the 1930s. The contrast between Red Lake's closed reservation and the heavily checkerboarded land bases of White Earth, Standing Rock, and Spirit Lake shows the long reach of which policies were applied and which were resisted in earlier eras.

Stage 3 Complete!

The Land section is built. Stage 4 adds The Constitutions: the section about the IRA's constitutional process and the boilerplate governance model that many Tribes adopted. That is where the new UX pattern for Unit 16 lives. The comparison slider lets readers drag between "The IRA Model" and "Traditional Governance," making the contrast interactive and visible.

Code Editor
Live Preview