/* Inner page styles — breadcrumb, page card, section headings, tables, downloads */

/* ── Breadcrumb bar ── */
.inner-breadcrumb-bar {
    background: #f0f5fa;
    border-bottom: 1px solid #dde8f0;
    font-size: 0.82rem;
}
.inner-breadcrumb-bar .breadcrumb {
    background: transparent;
    padding: 0;
}
.inner-breadcrumb-bar .breadcrumb-item a {
    color: var(--nsic-blue);
    text-decoration: none;
}
.inner-breadcrumb-bar .breadcrumb-item a:hover { text-decoration: underline; }
.inner-breadcrumb-bar .breadcrumb-item.active { color: #555; }
.inner-breadcrumb-bar .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: #999;
}

/* ── Inner page card ── */
.inner-page-card {
    border: none;
    border-radius: 0.75rem;
    box-shadow: 0 1px 4px rgba(0,0,0,.06), 0 6px 20px rgba(0,0,0,.05);
    margin-bottom: 1.5rem;
}
.inner-page-card .inner-page-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid #e2e8f0;
    border-radius: 0.75rem 0.75rem 0 0;
    background: #fff;
}
.inner-page-card .inner-page-card-header h1 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: #c0392b;
}
.inner-page-card .inner-page-card-body {
    padding: 1.5rem 1.25rem;
}

/* ── Section headings inside content ── */
.inner-section-heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: #c0392b;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    border-left: 3px solid #c0392b;
    padding-left: 0.6rem;
    margin: 1.25rem 0 0.5rem;
}
.inner-section-heading.blue {
    color: var(--nsic-blue);
    border-left-color: var(--nsic-blue);
}

/* ── Content typography ── */
.inner-page-card-body p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #2f4050;
    margin-bottom: 0.75rem;
}
.inner-page-card-body ol,
.inner-page-card-body ul {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #2f4050;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}
.inner-page-card-body strong { color: #2f4050; }

/* ── Tables ── */
.inner-page-card-body .table {
    font-size: 0.875rem;
    border-color: #dee2e6;
    margin-top: 0.5rem;
}
.inner-page-card-body .table thead th {
    background: #1a6ea0;
    color: #fff;
    font-weight: 600;
    border-color: #1a6ea0;
    vertical-align: middle;
    padding: 0.6rem 0.75rem;
}
.inner-page-card-body .table tbody tr:nth-child(even) { background: #f8fafc; }
.inner-page-card-body .table tbody tr:hover { background: #edf4fb; }
.inner-page-card-body .table td { vertical-align: middle; padding: 0.55rem 0.75rem; }

/* ── Download card ── */
.download-card {
    background: #f0f5fa;
    border: 1px solid #c8e0f0;
    border-radius: 0.5rem;
    padding: 1rem 1.25rem;
    margin-top: 1.25rem;
}
.download-card h2 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--nsic-blue);
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 0.75rem;
}
.download-card .download-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #d0e4f0;
    font-size: 0.875rem;
    color: #2f4050;
}
.download-card .download-item:last-child { border-bottom: none; }

/* ── NTSC Centre Cards ── */
.ntsc-centre-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--nsic-border, #e2e8f0);
    border-radius: 0.5rem;
    background: #fff;
    color: var(--nsic-dark, #2f4050);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.ntsc-centre-card:hover {
    border-color: var(--nsic-blue, #005B99);
    box-shadow: 0 4px 14px rgba(0,91,153,0.12);
    transform: translateY(-2px);
    color: var(--nsic-blue, #005B99);
}
.ntsc-centre-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e8f1f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--nsic-blue, #005B99);
    font-size: 1rem;
    transition: background 0.2s;
}
.ntsc-centre-card:hover .ntsc-centre-icon {
    background: var(--nsic-blue, #005B99);
    color: #fff;
}
.ntsc-centre-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.ntsc-centre-city {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.3;
}
.ntsc-centre-state {
    font-size: 0.75rem;
    color: #6c757d;
}
.ntsc-centre-arrow {
    flex-shrink: 0;
    font-size: 0.75rem;
    color: #adb5bd;
    transition: color 0.2s, transform 0.2s;
}
.ntsc-centre-card:hover .ntsc-centre-arrow {
    color: var(--nsic-blue, #005B99);
    transform: translateX(3px);
}

/* ── CTA strip at bottom ── */
.inner-cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e2e8f0;
    font-size: 0.8rem;
    color: #555;
}

/* ── Responsive ── */
@media (max-width: 576px) {
    .inner-page-card .inner-page-card-header { flex-direction: column; align-items: flex-start; }
    .inner-page-card .inner-page-card-header h1 { font-size: 1.05rem; }
    .inner-page-card .inner-page-card-body { padding: 1rem 0.875rem; }
}
