UNIT 18 • STAGE 4 OF 7
Nation profiles: Mille Lacs Band, Red Lake Nation, Pine Ridge. grid-column: 1 / -1 reinforced on the My Nation card.
Stage 4 adds three nation profiles to the website. Each profile is a card with two distinct zones: a header area containing the nation's name and location, and a body area containing an introduction, status tags, and a timeline of key events from the Self-Determination Era. The three nations are the Mille Lacs Band of Ojibwe, the Red Lake Nation, and the Oglala Sioux Tribe at Pine Ridge.
These profiles are not just background. Each nation's experience during this era is different. Mille Lacs fought for its 1837 Treaty rights in federal court for nine years. Red Lake entered the era already holding unique protections it had negotiated in the 1800s. Pine Ridge was the site of Wounded Knee II and later won the largest Indian Claims case in U.S. history, and then refused the money.
The three nation profiles sit in a 2-column grid. The third card wraps to the second row. Below all three profiles, a "My Nation" student card spans the full width using grid-column: 1 / -1, the same technique from Stage 3's Cabazon callout. This is the second time you are using it. By Stage 5, it will feel automatic.
The nations grid is a 2-column layout. Each .nation-profile card has overflow: hidden, which clips the header's background color to the card's border radius. Without overflow: hidden, the header background would extend past the card's rounded corners and look broken.
The profile header uses background: var(--bg-section), a slightly lighter shade than the card background. That header background fills all the way to the top edges. Without overflow: hidden on the parent, the header's color would bleed past the card's border-radius at the top corners, creating a square notch on what should be a smooth rounded card. overflow: hidden tells the browser to clip any child content at the parent's boundary, including its rounded corners.
The profile header sits at the top of each card with a slightly elevated background. The profile body holds the written content below it. Status tags use a flex-wrap layout so they flow naturally across multiple lines if needed.
Each profile includes a timeline of key events. Each item is a 2-column grid: the year on the left, the event description on the right. The :not(:last-child) selector adds a dividing line between items without adding one after the last item.
Below the three nation profiles, a "My Nation" card spans the full width of the 2-column grid. This is the same technique as the Cabazon callout in Stage 3, grid-column: 1 / -1, but now inside a 2-column grid instead of a 3-column grid. The value works the same way regardless of column count: start at the first grid line, end at the last.
Three nation profiles are now on your page. Scroll down in the preview and read each one. Verify that the Mille Lacs, Red Lake, and Pine Ridge cards appear in the 2-column grid, and that the My Nation card spans the full width below them. Stage 5 adds the court cases.