/* TestSeriesPoint — job-index.css */
/* ══════════════════════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════════════════════ */
:root {
    /* Core palette — deep navy + saffron */
    --c-navy:       #0A1628;
    --c-navy-2:     #0F2040;
    --c-navy-3:     #162d55;
    --c-saffron:    #FF6B1A;
    --c-saffron-lt: #FF8C47;
    --c-gold:       #F59E0B;
    --c-teal:       #0EA5E9;
    --c-emerald:    #10B981;
    --c-rose:       #F43F5E;

    /* Neutrals */
    --c-ink:        #0D1B2A;
    --c-ink-2:      #1E3352;
    --c-muted:      #64748B;
    --c-border:     rgba(255,255,255,.08);
    --c-border-lt:  rgba(0,0,0,.07);
    --c-surface:    #ffffff;
    --c-surface-2:  #F8FAFC;
    --c-surface-3:  #F1F5F9;

    /* Status */
    --c-new:        #10B981;
    --c-new-bg:     #ECFDF5;
    --c-new-bd:     #A7F3D0;
    --c-soon:       #F59E0B;
    --c-soon-bg:    #FFFBEB;
    --c-soon-bd:    #FDE68A;
    --c-closed:     #F43F5E;
    --c-closed-bg:  #FFF1F2;
    --c-closed-bd:  #FECDD3;
    --c-live:       #0EA5E9;
    --c-live-bg:    #F0F9FF;
    --c-live-bd:    #BAE6FD;

    /* Spacing & Shape */
    --r-sm:  6px;
    --r-md:  10px;
    --r-lg:  14px;
    --r-xl:  20px;

    /* Typography */
    --f-display: 'Spectral', Georgia, serif;
    --f-body:    'Plus Jakarta Sans', system-ui, sans-serif;

    /* Shadows */
    --sh-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
    --sh-md:  0 4px 16px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
    --sh-lg:  0 12px 40px rgba(0,0,0,.12), 0 4px 12px rgba(0,0,0,.06);
    --sh-glow: 0 0 20px rgba(255,107,26,.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: var(--f-body); color: var(--c-ink); }

/* ── Scroll bar global ── */
::-webkit-scrollbar      { width: 5px; height: 5px; }
::-webkit-scrollbar-track{ background: transparent; }
::-webkit-scrollbar-thumb{ background: #CBD5E1; border-radius: 99px; }

/* ══════════════════════════════════════════════════════════
   PAGE WRAPPER
══════════════════════════════════════════════════════════ */
.tsp-page { padding: 0 0 3rem; }

/* ══════════════════════════════════════════════════════════
   HERO HEADER STRIP
══════════════════════════════════════════════════════════ */
.tsp-hero {
    background: var(--c-navy);
    background-image:
        radial-gradient(ellipse 60% 50% at 80% 50%, rgba(255,107,26,.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(14,165,233,.08) 0%, transparent 60%);
    padding: 20px 20px 0;
    position: relative;
    overflow: hidden;
}

.tsp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.tsp-hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.tsp-brand-block { display: flex; align-items: center; gap: 12px; }

.tsp-logo-badge {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--c-saffron), var(--c-gold));
    border-radius: var(--r-md);
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--sh-glow);
    flex-shrink: 0;
}

.tsp-logo-badge svg { width: 24px; height: 24px; fill: #fff; }

.tsp-brand-name {
    font-family: var(--f-display);
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.01em;
    line-height: 1.1;
}

.tsp-brand-name em {
    color: var(--c-saffron);
    font-style: normal;
}

.tsp-brand-sub {
    font-size: 11px;
    color: rgba(255,255,255,.45);
    margin-top: 2px;
    letter-spacing: .3px;
}

/* Live badge in hero */
.tsp-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,107,26,.15);
    border: 1px solid rgba(255,107,26,.35);
    border-radius: 99px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 700;
    color: #FF9055;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.tsp-live-dot {
    width: 7px; height: 7px;
    background: var(--c-saffron);
    border-radius: 50%;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: .4; transform: scale(.75); }
}

/* ── Breadcrumb (below hero top) ── */
.tsp-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 6px;
    font-size: 11.5px;
    padding: 10px 0 14px;
    position: relative;
    z-index: 1;
}

.tsp-breadcrumb a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color .15s;
}

.tsp-breadcrumb a:hover { color: var(--c-saffron-lt); }
.tsp-breadcrumb .sep    { color: rgba(255,255,255,.2); }
.tsp-breadcrumb .cur    { color: rgba(255,255,255,.75); font-weight: 600; }

/* ══════════════════════════════════════════════════════════
   STAT BAR  (attached below hero)
══════════════════════════════════════════════════════════ */
.tsp-statbar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--c-navy-2);
    border-top: 1px solid var(--c-border);
    border-bottom: 3px solid var(--c-saffron);
}

.tsp-statbar-item {
    padding: 12px 10px;
    text-align: center;
    border-right: 1px solid var(--c-border);
    position: relative;
    overflow: hidden;
}

.tsp-statbar-item::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--c-saffron), var(--c-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
}

.tsp-statbar-item:hover::before { transform: scaleX(1); }
.tsp-statbar-item:last-child     { border-right: none; }

.tsp-statbar-n {
    font-family: var(--f-display);
    font-size: 26px;
    font-weight: 700;
    color: var(--c-saffron);
    line-height: 1;
    letter-spacing: -.02em;
}

.tsp-statbar-l {
    font-size: 10px;
    color: rgba(255,255,255,.4);
    margin-top: 4px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

@media (max-width: 480px) {
    .tsp-statbar { grid-template-columns: repeat(2, 1fr); }
    .tsp-statbar-item:nth-child(2) { border-right: none; }
    .tsp-statbar-item:nth-child(3) { border-top: 1px solid var(--c-border); }
    .tsp-statbar-item:nth-child(4) { border-top: 1px solid var(--c-border); border-right: none; }
}

/* ══════════════════════════════════════════════════════════
   TOP CATEGORY BANNER  (datatop1–8)
══════════════════════════════════════════════════════════ */
.tsp-catbanner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 16px;
    background: var(--c-surface-2);
    border-bottom: 1px solid var(--c-border-lt);
}

.tsp-catbanner-cell { min-height: 0; }

.tsp-catbanner-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px 8px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--c-navy-3);
    background: var(--c-surface);
    border: 1.5px solid #DDE6F5;
    border-radius: var(--r-md);
    text-decoration: none;
    min-height: 52px;
    line-height: 1.3;
    word-break: break-word;
    transition: all .2s ease;
    box-shadow: var(--sh-sm);
    position: relative;
    overflow: hidden;
}

.tsp-catbanner-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--c-navy), var(--c-navy-3));
    opacity: 0;
    transition: opacity .2s;
}

.tsp-catbanner-link:hover {
    color: #fff;
    border-color: var(--c-navy);
    transform: translateY(-2px);
    box-shadow: var(--sh-md);
}

.tsp-catbanner-link:hover::before { opacity: 1; }

.tsp-catbanner-link span { position: relative; z-index: 1; }

@media (max-width: 768px) { .tsp-catbanner { grid-template-columns: repeat(4, 1fr); gap: 7px; } }
@media (max-width: 540px) { .tsp-catbanner { grid-template-columns: repeat(2, 1fr); } }

/* ══════════════════════════════════════════════════════════
   TICKER SECTION
══════════════════════════════════════════════════════════ */
.tsp-ticker-section {
    padding: 14px 16px;
    background: var(--c-surface);
    border-bottom: 1px solid var(--c-border-lt);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tsp-ticker-row {
    display: flex;
    align-items: center;
    gap: 0;
    border-radius: var(--r-md);
    overflow: hidden;
    background: var(--c-surface-2);
    border: 1px solid var(--c-border-lt);
    min-height: 38px;
}

.tsp-ticker-label {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
    min-height: 38px;
    color: #fff;
}

.tsp-ticker-label.jobs   { background: linear-gradient(135deg, #1D4ED8, #2563EB); }
.tsp-ticker-label.admit  { background: linear-gradient(135deg, #059669, #10B981); }
.tsp-ticker-label.result { background: linear-gradient(135deg, #DC2626, #EF4444); }

.tsp-ticker-label svg { width: 14px; height: 14px; fill: rgba(255,255,255,.85); }

.tsp-ticker-track {
    overflow: hidden;
    flex: 1;
    position: relative;
}

.tsp-ticker-track::before,
.tsp-ticker-track::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 24px;
    z-index: 2;
    pointer-events: none;
}

.tsp-ticker-track::before { left: 0; background: linear-gradient(to right, var(--c-surface-2), transparent); }
.tsp-ticker-track::after  { right: 0; background: linear-gradient(to left, var(--c-surface-2), transparent); }

.tsp-ticker-inner {
    display: inline-flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: ticker-slide 28s linear infinite;
}

.tsp-ticker-track:hover .tsp-ticker-inner { animation-play-state: paused; }

@keyframes ticker-slide {
    0%   { transform: translateX(60px); }
    100% { transform: translateX(-100%); }
}

.tsp-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 16px;
    font-size: 12.5px;
    font-weight: 500;
    color: var(--c-ink-2);
    text-decoration: none;
    transition: color .15s;
    border-right: 1px solid rgba(0,0,0,.06);
    min-height: 38px;
}

.tsp-ticker-item::before {
    content: '›';
    font-size: 14px;
    font-weight: 700;
    opacity: .4;
    flex-shrink: 0;
}

.tsp-ticker-item:hover { color: var(--c-saffron); }

/* ══════════════════════════════════════════════════════════
   MAIN LAYOUT  (sidebar grid + content)
══════════════════════════════════════════════════════════ */
.tsp-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 0;
    align-items: start;
    background: var(--c-surface-2);
}

@media (max-width: 900px) {
    .tsp-layout { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════════
   SIDEBAR
══════════════════════════════════════════════════════════ */
.tsp-sidebar {
    background: var(--c-surface);
    border-right: 1px solid var(--c-border-lt);
    position: sticky;
    top: 0;
    max-height: 100vh;
    overflow-y: auto;
}

@media (max-width: 900px) {
    .tsp-sidebar {
        position: static;
        max-height: none;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        border-right: none;
        border-bottom: 1px solid var(--c-border-lt);
        gap: 0;
    }
}

@media (max-width: 540px) {
    .tsp-sidebar { grid-template-columns: 1fr; }
}

/* ── Widget ── */
.tsp-widget {
    border-bottom: 1px solid var(--c-border-lt);
}

.tsp-widget:last-child { border-bottom: none; }

.tsp-widget-hd {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    position: relative;
    cursor: default;
    background: var(--c-surface);
}

.tsp-widget-hd::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    border-radius: 0 3px 3px 0;
}

.tsp-widget[data-type="jobs"]    .tsp-widget-hd::before { background: #2563EB; }
.tsp-widget[data-type="results"] .tsp-widget-hd::before { background: var(--c-rose); }
.tsp-widget[data-type="admit"]   .tsp-widget-hd::before { background: var(--c-emerald); }
.tsp-widget[data-type="syllabus"].tsp-widget-hd::before { background: var(--c-gold); }
.tsp-widget[data-type="answer"]  .tsp-widget-hd::before { background: var(--c-teal); }

.tsp-widget-icon {
    width: 30px; height: 30px;
    border-radius: var(--r-sm);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.tsp-widget[data-type="jobs"]    .tsp-widget-icon { background: #EFF6FF; }
.tsp-widget[data-type="results"] .tsp-widget-icon { background: #FFF1F2; }
.tsp-widget[data-type="admit"]   .tsp-widget-icon { background: #ECFDF5; }
.tsp-widget[data-type="syllabus"].tsp-widget-icon { background: #FFFBEB; }
.tsp-widget[data-type="answer"]  .tsp-widget-icon { background: #F0F9FF; }

.tsp-widget-icon svg { width: 15px; height: 15px; }
.tsp-widget[data-type="jobs"]    .tsp-widget-icon svg { color: #2563EB; }
.tsp-widget[data-type="results"] .tsp-widget-icon svg { color: var(--c-rose); }
.tsp-widget[data-type="admit"]   .tsp-widget-icon svg { color: var(--c-emerald); }
.tsp-widget[data-type="syllabus"].tsp-widget-icon svg { color: var(--c-gold); }
.tsp-widget[data-type="answer"]  .tsp-widget-icon svg { color: var(--c-teal); }

.tsp-widget-title {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--c-ink);
    flex: 1;
    letter-spacing: .01em;
}

.tsp-widget-count {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 99px;
    background: var(--c-surface-3);
    color: var(--c-muted);
}

/* ── Widget list ── */
.tsp-widget-body {
    max-height: 260px;
    overflow-y: auto;
    padding: 4px 0;
    scrollbar-width: thin;
    scrollbar-color: #CBD5E1 transparent;
}

.tsp-witem {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px 7px 17px;
    border-bottom: 1px solid rgba(0,0,0,.035);
    transition: background .13s;
    text-decoration: none;
}

.tsp-witem:last-child { border-bottom: none; }

.tsp-witem:hover { background: #F8FAFD; }

.tsp-witem-dot {
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #CBD5E1;
    flex-shrink: 0;
    transition: background .13s;
}

.tsp-witem:hover .tsp-witem-dot { background: var(--c-saffron); }

.tsp-witem-text {
    font-size: 11.5px;
    color: var(--c-ink-2);
    font-weight: 500;
    line-height: 1.4;
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tsp-witem:hover .tsp-witem-text { color: var(--c-navy); }

/* ── Pill badges ── */
.tsp-pill {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-size: 8.5px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 99px;
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.tsp-pill-new    { background: var(--c-new-bg);    color: var(--c-new);    border: 1px solid var(--c-new-bd);    }
.tsp-pill-soon   { background: var(--c-soon-bg);   color: var(--c-soon);   border: 1px solid var(--c-soon-bd);   }
.tsp-pill-closed { background: var(--c-closed-bg); color: var(--c-closed); border: 1px solid var(--c-closed-bd); }
.tsp-pill-live   { background: var(--c-live-bg);   color: var(--c-live);   border: 1px solid var(--c-live-bd);   }

.tsp-pill-dot {
    width: 4px; height: 4px;
    border-radius: 50%;
    background: currentColor;
    display: inline-block;
}

/* ── Empty ── */
.tsp-empty-state {
    padding: 20px 14px;
    text-align: center;
    font-size: 11.5px;
    color: var(--c-muted);
}

.tsp-empty-state svg {
    width: 28px; height: 28px;
    opacity: .25;
    margin: 0 auto 6px;
    display: block;
}

/* ══════════════════════════════════════════════════════════
   MAIN CONTENT AREA
══════════════════════════════════════════════════════════ */
.tsp-content { padding: 20px; min-width: 0; }

/* ── Section heading ── */
.tsp-section-hd {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.tsp-section-hd h2 {
    font-family: var(--f-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--c-navy);
    letter-spacing: -.02em;
    margin: 0;
}

.tsp-section-hd .tsp-pill { margin-left: auto; }

/* ── Table card ── */
.tsp-card {
    background: var(--c-surface);
    border: 1px solid var(--c-border-lt);
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: var(--sh-sm);
    transition: box-shadow .2s;
}

.tsp-card:hover { box-shadow: var(--sh-md); }

/* ── Category card header ── */
.tsp-card-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 16px;
    background: linear-gradient(90deg, var(--c-navy) 0%, var(--c-navy-2) 100%);
    position: relative;
    overflow: hidden;
}

.tsp-card-hd::after {
    content: '';
    position: absolute;
    right: -20px; top: -20px;
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,.04);
}

.tsp-card-hd-title {
    font-family: var(--f-display);
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.01em;
    position: relative;
    z-index: 1;
}

.tsp-card-hd-meta {
    font-size: 10px;
    color: rgba(255,255,255,.45);
    font-weight: 600;
    position: relative;
    z-index: 1;
    letter-spacing: .04em;
}

/* ── Table ── */
.tsp-tbl-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tsp-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    min-width: 500px;
}

.tsp-table thead tr { background: var(--c-surface-2); }

.tsp-table thead th {
    padding: 9px 14px;
    text-align: left;
    font-size: 10px;
    font-weight: 800;
    color: var(--c-muted);
    letter-spacing: .08em;
    text-transform: uppercase;
    border-bottom: 1.5px solid var(--c-border-lt);
    white-space: nowrap;
}

.tsp-table tbody tr {
    border-bottom: 1px solid rgba(0,0,0,.04);
    transition: background .13s;
}

.tsp-table tbody tr:last-child { border-bottom: none; }
.tsp-table tbody tr:hover      { background: #F6F9FF; }

.tsp-table td {
    padding: 11px 14px;
    color: var(--c-ink);
    vertical-align: middle;
}

.tsp-td-dept {
    font-weight: 700;
    font-size: 13px;
    color: var(--c-navy);
}

.tsp-td-post {
    font-weight: 500;
    color: var(--c-ink-2);
}

.tsp-td-qual {
    color: var(--c-muted);
    font-size: 12px;
    max-width: 180px;
}

.tsp-td-date { white-space: nowrap; }

/* ── Vacancy count chip ── */
.tsp-vacancy-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 700;
    color: var(--c-navy-3);
    background: var(--c-surface-3);
    padding: 2px 8px;
    border-radius: 99px;
}

/* ── Action button ── */
.tsp-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--c-navy);
    background: var(--c-surface-3);
    border: 1.5px solid #DDE6F5;
    padding: 5px 12px;
    border-radius: var(--r-sm);
    text-decoration: none;
    transition: all .18s ease;
    white-space: nowrap;
    letter-spacing: .01em;
}

.tsp-btn svg { width: 12px; height: 12px; }

.tsp-btn:hover {
    background: var(--c-navy);
    color: #fff;
    border-color: var(--c-navy);
    transform: translateX(2px);
    box-shadow: var(--sh-sm);
}

/* ── Table empty row ── */
.tsp-table-empty {
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--c-muted);
    font-size: 13px;
}

/* ══════════════════════════════════════════════════════════
   PAGE FOOTER
══════════════════════════════════════════════════════════ */
.tsp-footer {
    background: var(--c-navy);
    text-align: center;
    padding: 20px;
    font-size: 12px;
    color: rgba(255,255,255,.35);
    letter-spacing: .02em;
}

.tsp-footer a { color: var(--c-saffron); text-decoration: none; }
.tsp-footer a:hover { color: var(--c-saffron-lt); }

/* ══════════════════════════════════════════════════════════
   ANIMATIONS — staggered entry
══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.tsp-card {
    animation: fadeUp .35s ease both;
}

.tsp-card:nth-child(1) { animation-delay: .04s; }
.tsp-card:nth-child(2) { animation-delay: .08s; }
.tsp-card:nth-child(3) { animation-delay: .12s; }
.tsp-card:nth-child(4) { animation-delay: .16s; }
.tsp-card:nth-child(5) { animation-delay: .20s; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE TWEAKS
══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
    .tsp-hero { padding: 14px 14px 0; }
    .tsp-content { padding: 14px; }
    .tsp-catbanner { padding: 12px; }
    .tsp-section-hd h2 { font-size: 16px; }
    .tsp-ticker-section { padding: 10px 12px; }
    .tsp-statbar-n { font-size: 22px; }
}

/* ══════════════════════════════════════════════════════════
   PRINT
══════════════════════════════════════════════════════════ */
@media print {
    .tsp-hero, .tsp-sidebar, .tsp-ticker-section { display: none; }
    .tsp-layout { display: block; }
    .tsp-table { font-size: 11px; }
}
