招牌配方
The Yellow Frame
The signature 4px `#FFCE00` border wrapped around editorial content blocks — NatGeo's most recognizable design element, used for featured imagery, pull quotes, and hero cards.
.ngs-yellow-frame {
position: relative;
padding: 4px;
background: #FFCE00;
display: inline-block;
}
.ngs-yellow-frame > .ngs-yellow-frame__inner {
display: block;
background: #FFFFFF;
padding: 24px;
}
/* photographic variant: the frame hugs a full-bleed image */
.ngs-yellow-frame--photo {
padding: 4px;
background: #FFCE00;
}
.ngs-yellow-frame--photo > img {
display: block;
width: 100%;
height: auto;
}
Paper Grain Ground
A subtle warm noise texture over `#F5F0E8` that gives pages the tactility of uncoated editorial stock without overpowering photography.
.ngs-paper {
background-color: #F5F0E8;
background-image:
radial-gradient(rgba(160, 139, 91, 0.06) 1px, transparent 1px),
radial-gradient(rgba(26, 26, 26, 0.025) 1px, transparent 1px);
background-size: 3px 3px, 7px 7px;
background-position: 0 0, 1px 2px;
}
Caption Block
The condensed-uppercase caption with a 2px yellow rule above — the visual signature of a NatGeo photo cutline, used beneath any image or data figure.
.ngs-caption {
font-family: 'Roboto Condensed', system-ui, sans-serif;
font-size: 13px;
font-weight: 500;
line-height: 1.4;
letter-spacing: 0.05em;
text-transform: uppercase;
color: #5A5A5A;
border-top: 2px solid #FFCE00;
padding-top: 8px;
margin-top: 12px;
max-width: 60ch;
}
.ngs-caption strong {
color: #1A1A1A;
font-weight: 700;
margin-right: 8px;
}