/* QBS Welkom-dashboard */
.qbs-dash {
    --qbs-ink: #0e1116;
    --qbs-ink-2: #3b4149;
    --qbs-muted: #6b7280;
    --qbs-line: #e4e7eb;
    --qbs-bg: #f7f8fa;
    --qbs-brand: #1f2c5c;   /* QBS-navy */
    --qbs-brand-2: #4b6bd6; /* QBS-accent */
    padding: 28px 32px 40px;
    color: var(--qbs-ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.55;
    max-width: 1180px;
}

.qbs-dash * { box-sizing: border-box; }

.qbs-dash__hero {
    background: linear-gradient(135deg, #ffffff 0%, var(--qbs-bg) 100%);
    border: 1px solid var(--qbs-line);
    border-radius: 12px;
    padding: 32px 36px;
    margin-bottom: 24px;
}

.qbs-dash__eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 11px;
    color: var(--qbs-brand-2);
    font-weight: 600;
    margin-bottom: 8px;
}

.qbs-dash__hero h1 {
    margin: 0 0 12px;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 600;
    color: var(--qbs-ink);
}

.qbs-dash__hero h1 em {
    font-style: normal;
    color: var(--qbs-brand-2);
}

.qbs-dash__lead {
    margin: 0;
    color: var(--qbs-ink-2);
    max-width: 62ch;
    font-size: 15px;
}

.qbs-dash__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 20px;
}

@media (max-width: 900px) {
    .qbs-dash__grid { grid-template-columns: 1fr; }
    .qbs-dash { padding: 20px; }
    .qbs-dash__hero { padding: 24px; }
}

.qbs-dash__card {
    background: #fff;
    border: 1px solid var(--qbs-line);
    border-radius: 12px;
    padding: 26px 28px;
}

.qbs-dash__card h2 {
    margin: 0 0 14px;
    font-size: 17px;
    font-weight: 600;
    color: var(--qbs-ink);
}

.qbs-dash__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.qbs-dash__list li {
    padding: 10px 0;
    border-top: 1px solid var(--qbs-line);
    font-size: 14px;
    color: var(--qbs-ink-2);
}

.qbs-dash__list li:first-child { border-top: none; }
.qbs-dash__list li strong { color: var(--qbs-ink); font-weight: 600; }

.qbs-dash__card--brand {
    background: linear-gradient(180deg, #ffffff 0%, #f4f6fb 100%);
    border-color: #d9dff0;
}

.qbs-dash__brand-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.qbs-dash__logo {
    width: 130px;
    height: auto;
    display: block;
    flex-shrink: 0;
    object-fit: contain;
}

.qbs-dash__brand-sub {
    margin: 4px 0 0;
    color: var(--qbs-muted);
    font-size: 13px;
}

.qbs-dash__card--brand p {
    margin: 0 0 18px;
    color: var(--qbs-ink-2);
    font-size: 14px;
}

.qbs-dash__contact {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 8px 14px;
    margin: 0 0 22px;
    font-size: 14px;
}

.qbs-dash__contact dt {
    color: var(--qbs-muted);
    font-weight: 500;
}

.qbs-dash__contact dd {
    margin: 0;
    color: var(--qbs-ink);
}

.qbs-dash__contact a {
    color: var(--qbs-brand-2);
    text-decoration: none;
    font-weight: 500;
}

.qbs-dash__contact a:hover { text-decoration: underline; }

.qbs-dash__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--qbs-brand);
    color: #fff;
    text-decoration: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: background 160ms ease;
}

.qbs-dash__cta:hover {
    background: var(--qbs-brand-2);
    color: #fff;
}
