/* ==========================================================================
   AKTIE-DATA-GRID (npsd) — ekstremt datadrevne bokse under kurs-panelet.
   Bruger brand-tokens, så det matcher begge sites.
   ========================================================================== */
.npsd { max-width: 920px; margin: 30px auto 0; }
.npsd__head {
	font-family: var(--np-font-display); font-size: 20px; font-weight: 700;
	color: var(--np-ink); letter-spacing: -.02em; margin: 0 0 16px;
	padding-bottom: 10px; border-bottom: 2px solid var(--np-line); position: relative;
}
.npsd__head::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 54px; height: 2px; background: var(--np-accent); }

.npsd__boxes { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 16px; }
.npsd__box {
	background: var(--np-bg); border: 1px solid var(--np-line);
	border-radius: 12px; padding: 15px 17px;
}
.npsd__box-title {
	font-family: var(--np-font-sans); font-size: 12px; font-weight: 600;
	text-transform: uppercase; letter-spacing: .05em; color: var(--np-accent-text);
	margin: 0 0 12px; padding: 0;
}
.npsd__grid { display: grid; grid-template-columns: 1fr; gap: 0; }
.npsd__cell {
	display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
	padding: 7px 0; border-bottom: 1px solid var(--np-bg-alt);
}
.npsd__cell:last-child { border-bottom: 0; }
.npsd__k { font-family: var(--np-font-sans); font-size: 13px; color: var(--np-slate-600); }
.npsd__v {
	font-family: var(--np-font-mono); font-size: 13.5px; font-weight: 600; color: var(--np-ink);
	font-variant-numeric: tabular-nums; text-align: right; white-space: nowrap;
}

/* Regnskabstabel */
.npsd__fin { margin-top: 18px; }
.npsd__fin-scroll { overflow-x: auto; border: 1px solid var(--np-line); border-radius: 12px; }
.npsd__table { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 420px; }
.npsd__table th, .npsd__table td { padding: 10px 14px; text-align: right; white-space: nowrap; }
.npsd__table thead th { background: var(--np-bg-soft); color: var(--np-slate-600); font-weight: 600; font-size: 12.5px; }
.npsd__table thead th:first-child, .npsd__table tbody th { text-align: left; }
.npsd__table tbody th { font-weight: 500; color: var(--np-ink); }
.npsd__table td { font-family: var(--np-font-mono); font-variant-numeric: tabular-nums; color: var(--np-ink); }
.npsd__table tbody tr { border-top: 1px solid var(--np-bg-alt); }

/* Profil + beskrivelse */
.npsd__profile { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 18px; }
@media (max-width: 640px) { .npsd__profile { grid-template-columns: 1fr; } }
.npsd__about {
	background: var(--np-bg-soft); border: 1px solid var(--np-line);
	border-radius: 12px; padding: 15px 17px;
}
.npsd__desc { margin: 0 0 10px; color: var(--np-slate-600); font-size: 14px; line-height: 1.6; }
.npsd__web { font-size: 13.5px; font-weight: 600; color: var(--np-accent-text); }
.npsd__web:hover { color: var(--np-accent-600); }
.npsd__src { margin: 16px 0 0; font-size: 12px; color: var(--np-slate-400); }
