UNIT 17 • STAGE 4 OF 7
Build The Relocation section: city cards with inline tags, and an asymmetric feature layout for the Twin Cities and AIM
Stage 4 builds The Relocation section, documenting the BIA Urban Relocation Program that ran alongside termination from 1950 through the 1960s. Six city cards show the primary relocation destinations. A feature band below focuses on Minneapolis and the Twin Cities, where the urban Indian community that formed through relocation later founded the American Indian Movement in 1968.
The new CSS patterns are display: inline-block on the city tag and grid-template-columns: 3fr 2fr on the feature band. The asymmetric grid is the key concept for this stage.
The BIA began a voluntary relocation program in 1948 and expanded it significantly after the Indian Relocation Act of 1956 (Public Law 959). The program provided one-way bus or train tickets to designated cities, a small stipend for initial housing, and promises of job training. What it did not provide, in many cases, was the training itself, follow-up support, or any path back if things did not work out.
Minneapolis and St. Paul were designated relocation cities. The BIA opened a relocation office in Minneapolis in 1950. Over the following two decades, the urban Indian population in the Twin Cities grew substantially as people arrived from Ojibwe and Dakota reservations across Minnesota, Wisconsin, and the Dakotas. The community concentrated in South Minneapolis and on the near north side of St. Paul.
That community became the foundation for the American Indian Movement, founded in Minneapolis in July 1968. AIM began as a street patrol, organized in response to documented patterns of police brutality targeting urban Indian community members. Its founding is the direct product of the relocation era: the policy that moved people to cities produced the community that organized to push back against termination policy and its aftermath.
Each relocation city card has a tag indicating whether the city was a primary BIA relocation destination or a secondary destination. The tag uses display: inline-block, which is different from how other badges and labels in this design system are displayed.
display: inline-block: The element takes only as much horizontal space as its content plus its padding. Unlike display: block, which would stretch to fill the full width of the card, an inline-block element hugs its content. The margin-bottom below it then creates space before the city name, as if it were its own line, but without the full-width stretch..term-status in Stage 3, which used flex-shrink: 0 inside a flex row. That badge was in a flex container, so it needed a flex-specific property. .city-tag sits in normal block flow inside the card, so display: inline-block is the right tool instead.border-radius: 3px: A subtle corner radius, not a pill shape. The pill shape (border-radius: 100px) is reserved for the hero buttons, which are primary interactive elements. Tags and badges use a smaller radius to look like labels, not calls to action.The feature band below the city cards uses an asymmetric grid: 3fr 2fr. The left column (3 parts) holds the narrative. The right column (2 parts) holds a stack of sidebar fact cards. This 60/40 split gives the story room to breathe while the facts stay in a tight column.
grid-template-columns: 3fr 2fr: The numbers before fr are ratios. 3 + 2 = 5 total parts. The first column gets 3/5 (60%) and the second gets 2/5 (40%). You can also write this as 60% 40%, but fr units are more flexible because they automatically account for the gap between the columns.align-items: start: Both columns start from the top of the grid row. Without this, CSS grid defaults to stretch, which would make the shorter column stretch to match the taller one's height. Here we want each column to start at the same position but end at its own natural height.background: var(--bg-section) directly on the grid container: The entire feature band gets a background, not just the inner cards. This creates a contained visual zone within the section, making it stand out as a featured region.flex-direction: column on .feature-sidebar: Stacks the sidebar fact cards vertically. The gap: 14px spaces them evenly without needing margin on each individual card..feature-body p:last-child { margin-bottom: 0 }: Removes the bottom margin from the last paragraph in the feature body. Without this, there would be extra space at the bottom of the content column, which would look unbalanced when you compare it to the sidebar column.The six city cards are pre-written. The feature band narrative and sidebar facts are pre-written. The section intro has a REPLACE comment.
The Relocation section is built. Stage 5 adds The Nations: detailed profiles of Menominee and Klamath, the two most studied terminated and restored nations, with a note on Red Lake's exclusion from PL 280. You will also build your own nation research card.