/* ===========================
   US GOVERNMENT WEBSITE TEMPLATE
   Customs & Border Protection Style
   =========================== */

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* USWDS-inspired color palette */
    --primary-darkest: #0b1a2e;
    --primary-darker: #002a5c;
    --primary-dark: #003875;
    --primary: #005ea2;
    --primary-light: #345d96;
    --primary-lighter: #d9e8f6;
    --primary-lightest: #eff6fb;

    --accent-gold: #c5a44e;
    --accent-gold-light: #e8d48a;
    --accent-gold-dark: #8a6d3b;

    --red-dark: #8b0000;
    --red: #b50909;
    --red-light: #f4e3db;

    --gray-darkest: #1b1b1b;
    --gray-dark: #3d4551;
    --gray-medium: #5b616b;
    --gray: #71767a;
    --gray-light: #a9aeb1;
    --gray-lighter: #dfe1e2;
    --gray-lightest: #f0f0f0;
    --white: #ffffff;

    --font-serif: 'Merriweather', Georgia, 'Times New Roman', serif;
    --font-sans: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    --container-max: 1200px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 2px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 4px 16px rgba(0,0,0,0.2);
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--gray-darkest);
    background: var(--gray-lightest);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    display: block;
}

/* ===========================
   GOV BANNER (top stripe)
   =========================== */
.gov-banner {
    background: var(--gray-lightest);
    border-bottom: 1px solid var(--gray-lighter);
    font-size: 0.8125rem;
    color: var(--gray-dark);
}

.gov-banner > .container {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
}

.flag-icon {
    width: 16px;
    height: 12px;
}

.gov-banner-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.8125rem;
    cursor: pointer;
    font-family: var(--font-sans);
    padding: 2px 6px;
}

.gov-banner-btn:hover {
    text-decoration: underline;
}

.caret {
    font-size: 0.625rem;
}

.gov-banner-info {
    display: none;
    background: var(--gray-lightest);
    padding: 16px 0;
    border-top: 1px solid var(--gray-lighter);
}

.gov-banner-info.active {
    display: block;
}

.gov-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.gov-info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.gov-info-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.gov-info-item p {
    margin-top: 4px;
    font-size: 0.8125rem;
    line-height: 1.5;
}

/* ===========================
   AGENCY HEADER
   =========================== */
.agency-header {
    background: linear-gradient(135deg, var(--primary-darkest) 0%, var(--primary-darker) 50%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 16px 0;
    border-bottom: 4px solid var(--accent-gold);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.agency-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.agency-seal svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.agency-dept {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.85;
    display: block;
    margin-bottom: 2px;
}

.agency-title h1 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.header-search {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
}

.header-search input {
    padding: 8px 14px;
    border: 2px solid rgba(255,255,255,0.3);
    border-right: none;
    background: rgba(255,255,255,0.1);
    color: white;
    font-size: 0.875rem;
    width: 220px;
    border-radius: 4px 0 0 4px;
    font-family: var(--font-sans);
}

.header-search input::placeholder {
    color: rgba(255,255,255,0.6);
}

.header-search input:focus {
    outline: none;
    background: rgba(255,255,255,0.2);
    border-color: var(--accent-gold);
}

.search-btn {
    background: var(--accent-gold);
    border: none;
    padding: 8px 14px;
    cursor: pointer;
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: center;
    transition: background 0.2s;
}

.search-btn:hover {
    background: var(--accent-gold-light);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.report-btn {
    background: var(--red);
    color: white !important;
    padding: 8px 18px;
    border-radius: 4px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    transition: background 0.2s;
}

.report-btn:hover {
    background: var(--red-dark);
    text-decoration: none !important;
}

.tip-line {
    font-size: 0.8125rem;
    opacity: 0.9;
}

/* ===========================
   MAIN NAVIGATION
   =========================== */
.main-nav {
    background: var(--primary-dark);
    border-bottom: 1px solid rgba(0,0,0,0.2);
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 0;
}

.nav-list li a {
    display: block;
    padding: 14px 22px;
    color: rgba(255,255,255,0.9);
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

.nav-list li a:hover {
    background: rgba(255,255,255,0.08);
    color: white;
    text-decoration: none;
}

.nav-list li a.active {
    border-bottom-color: var(--accent-gold);
    color: white;
    background: rgba(255,255,255,0.05);
}

/* ===========================
   BREADCRUMB BAR
   =========================== */
.breadcrumb-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-lighter);
    padding: 12px 0;
}

.breadcrumb-bar > .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.breadcrumb {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 0.8125rem;
}

.breadcrumb li::after {
    content: '>';
    margin-left: 8px;
    color: var(--gray-light);
}

.breadcrumb li:last-child::after {
    display: none;
}

.breadcrumb li.current {
    color: var(--gray-medium);
}

.breadcrumb a {
    color: var(--primary);
}

.share-actions {
    display: flex;
    gap: 8px;
}

.share-actions button {
    background: none;
    border: 1px solid var(--gray-lighter);
    border-radius: 4px;
    padding: 6px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.2s;
}

.share-actions button:hover {
    background: var(--gray-lightest);
}

/* ===========================
   ALERT BANNER
   =========================== */
.alert-banner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--red-light);
    border-left: 6px solid var(--red);
    padding: 16px 20px;
    border-radius: 0 4px 4px 0;
    margin: 24px 0;
}

.alert-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

.alert-text {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--gray-darkest);
}

/* ===========================
   PAGE HEADER
   =========================== */
.page-header {
    margin-bottom: 32px;
}

.case-label {
    display: inline-block;
    background: var(--primary-darker);
    color: var(--white);
    padding: 4px 14px;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 2px;
    margin-bottom: 12px;
}

.page-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1.3;
    color: var(--primary-darkest);
    margin-bottom: 16px;
}

.page-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.8125rem;
    color: var(--gray-medium);
}

.page-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-case {
    font-weight: 700;
    color: var(--primary-dark);
}

/* ===========================
   CONTENT GRID
   =========================== */
.main-content {
    padding: 0 0 48px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 32px;
    align-items: start;
}

.content-main {
    min-width: 0;
}

/* ===========================
   PROFILE CARD
   =========================== */
.profile-card {
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
}

.profile-header {
    background: var(--primary-darker);
    color: var(--white);
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-header h3 {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.status-badge {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 3px;
}

.status-custody {
    background: var(--red);
    color: var(--white);
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.75; }
}

.profile-body {
    display: flex;
    gap: 24px;
    padding: 24px;
}

.profile-photo {
    flex-shrink: 0;
}

.photo-placeholder {
    width: 180px;
    height: 220px;
    background: var(--gray-lightest);
    border: 2px dashed var(--gray-lighter);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.photo-label {
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--gray-light);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.profile-details {
    flex: 1;
    min-width: 0;
}

.detail-table {
    width: 100%;
    border-collapse: collapse;
}

.detail-table tr {
    border-bottom: 1px solid var(--gray-lightest);
}

.detail-table tr:last-child {
    border-bottom: none;
}

.detail-table th {
    text-align: left;
    padding: 10px 16px 10px 0;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--gray-medium);
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    width: 160px;
    vertical-align: top;
}

.detail-table td {
    padding: 10px 0;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-darkest);
}

/* ===========================
   INFO SECTIONS
   =========================== */
.info-section {
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--primary-darker);
    border-bottom: 2px solid var(--primary-lighter);
    background: var(--primary-lightest);
}

/* Physical Description Grid */
.physical-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 0;
}

.phys-item {
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-lightest);
    border-right: 1px solid var(--gray-lightest);
}

.phys-item:nth-child(3n) {
    border-right: none;
}

.phys-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--gray-medium);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.phys-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-darkest);
}

/* Incident Details */
.incident-details,
.court-info {
    padding: 0;
}

.incident-row {
    display: flex;
    border-bottom: 1px solid var(--gray-lightest);
}

.incident-row:last-child {
    border-bottom: none;
}

.incident-label {
    width: 200px;
    flex-shrink: 0;
    padding: 14px 20px;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--gray-medium);
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--gray-lightest);
    border-right: 1px solid var(--gray-lighter);
}

.incident-value {
    flex: 1;
    padding: 14px 20px;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.highlight-value {
    background: #fffde7;
    color: var(--accent-gold-dark);
    font-weight: 600;
}

.bail-denied {
    background: var(--red);
    color: white;
    padding: 2px 10px;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Charges */
.charges-list {
    padding: 0;
}

.charge-item {
    display: flex;
    border-bottom: 1px solid var(--gray-lightest);
}

.charge-item:last-child {
    border-bottom: none;
}

.charge-number {
    width: 100px;
    flex-shrink: 0;
    padding: 18px 16px;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--white);
    background: var(--primary-darker);
    text-align: center;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.charge-detail {
    flex: 1;
    padding: 18px 20px;
}

.charge-detail strong {
    font-size: 1rem;
    color: var(--gray-darkest);
    display: block;
    margin-bottom: 4px;
}

.charge-code {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-lightest);
    padding: 2px 8px;
    border-radius: 3px;
    margin-bottom: 8px;
    font-family: 'Courier New', monospace;
}

.charge-detail p {
    font-size: 0.875rem;
    color: var(--gray-medium);
    line-height: 1.5;
}

/* Evidence Photos Grid */
.evidence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    padding: 20px;
}

.evidence-item {
    text-align: center;
}

.evidence-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--gray-lightest);
    border: 2px dashed var(--gray-lighter);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.evidence-caption {
    font-size: 0.75rem;
    color: var(--gray-medium);
    line-height: 1.4;
}

/* Statement Box */
.statement-box {
    padding: 24px;
}

.statement-box blockquote {
    font-family: var(--font-serif);
    font-size: 1.0625rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--gray-dark);
    border-left: 4px solid var(--accent-gold);
    padding-left: 20px;
    margin-bottom: 12px;
}

.statement-box cite {
    display: block;
    font-style: normal;
    font-size: 0.875rem;
    color: var(--gray-medium);
    padding-left: 24px;
}

/* Disclaimer */
.disclaimer {
    background: var(--gray-lightest);
    border: 1px solid var(--gray-lighter);
    border-radius: 4px;
    padding: 16px 20px;
    margin-top: 8px;
}

.disclaimer p {
    font-size: 0.8125rem;
    color: var(--gray-medium);
    line-height: 1.5;
}

/* ===========================
   SIDEBAR
   =========================== */
.content-sidebar {
    position: sticky;
    top: 24px;
}

.sidebar-card {
    background: var(--white);
    border: 1px solid var(--gray-lighter);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.sidebar-title {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-lighter);
    color: var(--gray-dark);
}

.sidebar-title.light {
    color: var(--white);
    border-bottom-color: rgba(255,255,255,0.2);
}

/* Wanted/Status Card */
.sidebar-wanted {
    border: 2px solid var(--primary-darker);
    background: var(--primary-darkest);
    color: var(--white);
    text-align: center;
}

.wanted-header {
    background: var(--accent-gold);
    color: var(--primary-darkest);
    padding: 10px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.wanted-status {
    padding: 20px;
    font-size: 1.75rem;
    font-weight: 900;
    letter-spacing: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.status-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.arrested {
    background: #4caf50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.6);
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 4px rgba(76, 175, 80, 0.4); }
    50% { box-shadow: 0 0 12px rgba(76, 175, 80, 0.8); }
}

.wanted-date {
    padding: 0 20px 16px;
    font-size: 0.8125rem;
    opacity: 0.7;
}

/* Quick Facts */
.quick-facts {
    list-style: none;
    padding: 0;
}

.quick-facts li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-lightest);
}

.quick-facts li:last-child {
    border-bottom: none;
}

.fact-icon {
    flex-shrink: 0;
    display: flex;
}

.quick-facts li div {
    min-width: 0;
}

.quick-facts li strong {
    display: block;
    font-size: 1rem;
    color: var(--primary-darkest);
}

.quick-facts li span {
    font-size: 0.8125rem;
    color: var(--gray-medium);
}

/* Related Cases */
.related-list {
    list-style: none;
    padding: 0;
}

.related-list li {
    padding: 12px 16px;
    border-bottom: 1px solid var(--gray-lightest);
}

.related-list li:last-child {
    border-bottom: none;
}

.related-list a {
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.4;
    display: block;
    margin-bottom: 4px;
}

.related-date {
    font-size: 0.75rem;
    color: var(--gray-light);
}

/* Report Card */
.sidebar-report {
    background: var(--primary-darker);
    color: var(--white);
    border-color: var(--primary-dark);
}

.sidebar-report p {
    padding: 0 16px;
    font-size: 0.8125rem;
    opacity: 0.85;
    margin-bottom: 16px;
    line-height: 1.5;
}

.report-methods {
    padding: 0 16px 16px;
}

.report-method {
    padding: 8px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8125rem;
}

.report-method strong {
    font-weight: 600;
}

.report-method a {
    color: var(--accent-gold-light);
}

/* Cooperating Agencies */
.agency-logos {
    padding: 8px 16px 16px;
}

.coop-agency {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-lightest);
    font-size: 0.8125rem;
    color: var(--gray-dark);
}

.coop-agency:last-child {
    border-bottom: none;
}

.agency-icon-small {
    width: 36px;
    height: 36px;
    background: var(--primary-darker);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
    margin-top: 0;
}

.footer-top {
    background: var(--primary-darkest);
    padding: 40px 0;
    color: rgba(255,255,255,0.8);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: white;
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.social-icon:hover {
    background: var(--accent-gold);
}

.footer-bottom {
    background: #060d18;
    padding: 20px 0;
    color: rgba(255,255,255,0.5);
    font-size: 0.8125rem;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-agency {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-agency strong {
    color: rgba(255,255,255,0.7);
    display: block;
    font-size: 0.8125rem;
}

.footer-agency span {
    font-size: 0.75rem;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.8125rem;
}

.footer-links a:hover {
    color: rgba(255,255,255,0.8);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .sidebar-wanted {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .header-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-right {
        align-items: flex-start;
        width: 100%;
    }

    .header-search input {
        width: 100%;
    }

    .nav-list {
        flex-wrap: wrap;
    }

    .nav-list li a {
        padding: 10px 14px;
        font-size: 0.8125rem;
    }

    .page-title {
        font-size: 1.375rem;
    }

    .profile-body {
        flex-direction: column;
    }

    .photo-placeholder {
        width: 140px;
        height: 170px;
    }

    .detail-table th {
        width: auto;
    }

    .physical-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .incident-row {
        flex-direction: column;
    }

    .incident-label {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--gray-lighter);
    }

    .charge-item {
        flex-direction: column;
    }

    .charge-number {
        width: 100%;
    }

    .evidence-grid {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .gov-info-grid {
        grid-template-columns: 1fr;
    }

    .breadcrumb-bar > .container {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }

    .page-meta {
        flex-direction: column;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .agency-title h1 {
        font-size: 1.125rem;
    }

    .physical-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}
