/* ===== GOVERNANCE PAGE ===== */

.gov-hero {
    background-color: #0a1223;
    position: relative;
    padding: 220px 0 80px;
    overflow: hidden;
}

.gov-hero-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
    position: relative;
    z-index: 2;
}

.gov-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 32px;
}

.gov-breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s;
}

.gov-breadcrumb a:hover { color: #fff; }
.gov-breadcrumb .sep { color: rgba(255, 255, 255, 0.25); }
.gov-breadcrumb .current { color: #ea232a; }

.gov-hero-label {
    font-size: 13px;
    font-weight: 800;
    color: #ea232a;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.gov-hero-title {
    font-size: 72px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -3px;
    margin: 0 0 24px;
}

.gov-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    max-width: 520px;
    line-height: 1.65;
}

/* ===== SHARED ===== */

.gov-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
}

.gov-section-label {
    font-size: 13px;
    font-weight: 800;
    color: #ea232a;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.gov-section-title {
    font-size: 40px;
    font-weight: 900;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: -1.5px;
    line-height: 1;
    margin: 0;
}

/* ===== TEXT SECTION ===== */

.gov-text-section {
    background: #fff;
    padding: 80px 0 100px;
}

.gov-text-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 64px;
    align-items: start;
}

.gov-text-main p {
    font-size: 17px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.gov-text-main p:last-child { margin-bottom: 0; }

/* Principles sidebar */
.gov-principles {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
    position: sticky;
    top: 100px;
}

.gov-principles-title {
    font-size: 14px;
    font-weight: 800;
    color: #1e293b;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e2e8f0;
}

.gov-principle-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

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

.gov-principle-icon {
    width: 36px;
    height: 36px;
    background: #fef2f2;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.gov-principle-icon i {
    font-size: 15px;
    color: #ea232a;
}

.gov-principle-name {
    font-size: 14px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 3px;
}

.gov-principle-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
}

/* ===== DOC SECTION ===== */

.gov-doc-section {
    background: #f8fafc;
    padding: 80px 0 100px;
}

.gov-section-header {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 2px solid #e2e8f0;
}

.gov-docs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.gov-doc-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gov-doc-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.gov-doc-top {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.gov-doc-footer {
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: flex-end;
}

.gov-doc-icon {
    width: 48px;
    height: 48px;
    background: #fef2f2;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.gov-doc-icon i {
    font-size: 22px;
    color: #ea232a;
}

.gov-doc-type {
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.gov-doc-title {
    font-size: 17px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.4;
    margin-bottom: 4px;
}

.gov-doc-meta {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.btn-gov-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1e293b;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 12px 22px;
    border-radius: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-gov-download:hover {
    background: #ea232a;
    transform: translateY(-1px);
}

/* ===== CTA STRIP ===== */

.gov-cta-strip {
    background: #1e293b;
    padding: 48px 0;
}

.gov-cta-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.gov-cta-text h3 {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.gov-cta-text p {
    font-size: 15px;
    color: #94a3b8;
}

.btn-gov-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ea232a;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.btn-gov-cta:hover { background: #d21f25; }

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
    .gov-hero-title { font-size: 52px; letter-spacing: -2px; }

    .gov-text-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gov-principles { position: static; }

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

    .gov-hero-container,
    .gov-container,
    .gov-cta-container { padding: 0 24px; }

    .gov-cta-container { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
    .gov-hero-title { font-size: 38px; }
    .gov-section-title { font-size: 28px; }
}
