:root{--bg:#0f1928;--panel:#122033;--text:#e6e9f0;--muted:#a8b3cf;--accent:#094256;--accent-2:#0aa06e;--border:#1b2a3a;--shadow:0 10px 30px rgba(0,0,0,.35)}
*{box-sizing:border-box}
html,body{height:100%}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Helvetica,Arial,sans-serif;background:var(--bg);color:var(--text);line-height:1.6}
.container{max-width:1100px;margin:0 auto;padding:clamp(16px,4vw,32px)}
header{display:flex;align-items:center;justify-content:space-between;gap:16px;padding-block:12px}
header img{height:48px}
.hero{display:grid;grid-template-columns:1.15fr .85fr;gap:24px;align-items:center;padding:24px;border:1px solid var(--border);border-radius:16px;background:linear-gradient(180deg,var(--panel),#0f1730)}
.hero h1{font-size:clamp(28px,3vw,40px);margin:0 0 8px}
.badges{display:flex;flex-wrap:wrap;gap:8px;margin:10px 0 0}
.badge{background:#0e1a36;border:1px solid var(--border);color:var(--muted);padding:6px 10px;border-radius:999px;font-size:14px}
.cta{display:flex;flex-wrap:wrap;gap:12px;margin-top:16px}
.cta a{background:var(--accent);border:none;color:#fff;padding:10px 14px;border-radius:10px;text-decoration:none;font-weight:600;box-shadow:var(--shadow)}
.cta a.secondary{background:#25314f}
section{margin-top:36px}
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:16px}
.card{background:var(--panel);border:1px solid var(--border);padding:18px;border-radius:14px}
.card h3{margin:0 0 8px}
footer{margin-top:40px;padding-top:16px;border-top:1px solid var(--border);color:var(--muted)}
.kicker{color:var(--accent-2);font-weight:700;text-transform:uppercase;letter-spacing:.06em;font-size:12px}
.small{font-size:14px;color:var(--muted)}
.links{display:flex;gap:12px;align-items:center}
.skip-link{position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden}
.skip-link:focus{position:static;width:auto;height:auto;padding:8px;background:#000;color:#fff}
/* === Avatar styles (circular portrait) === */
.avatar{width:128px;height:128px;border-radius:50%;object-fit:cover;border:3px solid rgba(255,255,255,.18);box-shadow:0 6px 18px rgba(0,0,0,.35)}
.avatar.lg{width:220px;height:220px}
.avatar.sm{width:34px;height:34px;border-width:2px}
.profile-flex{display:flex;gap:16px;align-items:flex-start;flex-wrap:wrap}
.profile-flex .avatar{flex:0 0 auto}
.profile-flex .profile-text{flex:1 1 260px}
@media (max-width:800px){.hero{grid-template-columns:1fr}}


:root {
  --link: #7FD3FF;          /* lys cyan-blå */
  --link-hover: #C8ECFF;    /* lysere ved hover */
  --link-visited: #B0E2FF;  /* nuance til visited */
  --focus-ring: #07C6A4;    /* tydelig fokusmarkering */
}

a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-thickness: 2px;
}
a:hover,
a:focus {
  color: var(--link-hover);
}
a:visited {
  color: var(--link-visited);
}
a:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
  border-radius: 3px;
}

/* Header-sproglinks uden underline */
header .links a {
  text-decoration: none;
}
header .links a:hover,
header .links a:focus {
  text-decoration: underline;
}
