/* =============================================================================
   FOLKETINGSAFSTEMNINGSTESTEN — Editorial, Zetland-inspireret
   Varmt, indbydende, stor typografi, masser af luft
   ============================================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700&display=swap');

:root {
    --bg: #FAF7F2;
    --bg-card: #FFFFFF;
    --text: #1D1D1B;
    --text-muted: #5C5C5A;
    --text-light: #9B9B97;
    --accent: #E8613C;
    --accent-hover: #D14E2B;
    --green: #3A7D44;
    --green-bg: #EEF5EF;
    --red: #C0392B;
    --red-bg: #FBEEED;
    --neutral-bg: #F2F0EC;
    --border: #E8E4DD;
    --border-light: #F0EDE7;
    --serif: 'DM Serif Display', Georgia, serif;
    --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

body {
    font-family: var(--sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
    max-width: 920px;
    margin: 0 auto;
    padding: 32px 24px;
}


/* =============================================================================
   FORSIDE
   ============================================================================= */

.forside {
    max-width: 640px;
    margin: 40px auto 60px;
}

.forside h1 {
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    color: var(--text);
    text-align: center;
}

.intro {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 32px;
    text-align: center;
    font-weight: 400;
}

/* Info-kort (step 1) */
.info-kort {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 32px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
}
.info-kort h2 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
}
.info-afsnit {
    margin-top: 20px;
}
.info-afsnit h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.info-afsnit p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}
.info-afsnit a { color: var(--accent); }

.forside h2 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
}

.hint {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}

/* Slider */
.antal-valg {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 3px;
    background: var(--border);
    outline: none;
    border-radius: 2px;
}
.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(232, 97, 60, 0.3);
}
.slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent);
    cursor: pointer;
    border: none;
}
.slider-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    font-size: 13px;
    color: var(--text-light);
}
.slider-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
}

/* Emne-valg */
.emne-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 24px;
}

.emne-label { cursor: pointer; }
.emne-label input[type="checkbox"] { display: none; }

.emne-box {
    display: block;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 40px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    text-align: center;
    color: var(--text-muted);
}

.emne-label input:checked + .emne-box {
    background: var(--text);
    color: #fff;
    border-color: var(--text);
}

.emne-box:hover {
    border-color: var(--text-muted);
    color: var(--text);
}

.emne-disabled .emne-box {
    opacity: 0.2;
    cursor: not-allowed;
}

.emne-counter {
    margin-top: -8px;
    margin-bottom: 16px;
}

/* Start-knap */
.start-btn {
    width: 100%;
    padding: 16px;
    border-radius: 40px;
    border: none;
    background: var(--accent);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--sans);
    transition: background 0.2s;
}
.start-btn:hover { background: var(--accent-hover); }
.start-btn:disabled {
    background: var(--border);
    color: var(--text-light);
    cursor: not-allowed;
}
.start-btn:disabled:hover { background: var(--border); }


/* =============================================================================
   SPØRGSMÅL
   ============================================================================= */

.progress-wrap {
    margin-bottom: 24px;
}

.progress-bar-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.nav-knap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--text);
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    flex-shrink: 0;
    transition: opacity 0.15s;
}
.nav-knap:hover { opacity: 0.7; text-decoration: none; }
.nav-disabled {
    background: var(--border);
    color: var(--text-light);
    opacity: 0.35;
    pointer-events: none;
}

.progress-track {
    flex: 1;
    height: 3px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.progress-text {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

/* Trekolonne-layout */
.trekolonne {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.side-partier {
    width: 150px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding-top: 48px;
}

.side-partier.hoejre {
    padding-top: 73px; /* extra row offset: venstre har 6 partier, højre 5 */
}

.side-parti {
    display: flex;
    align-items: center;
    gap: 6px;
}

.side-parti-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    min-width: 28px;
}

.venstre .side-parti-label { text-align: right; }
.hoejre .side-parti-label { text-align: left; }

.side-bar-track {
    flex: 1;
    height: 8px;
    background: var(--border-light);
    border-radius: 4px;
    overflow: hidden;
}

.side-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    min-width: 2px;
}

.venstre-fill { float: right; }
.hoejre-fill { float: left; }

.side-parti-pct {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-light);
    min-width: 30px;
    font-variant-numeric: tabular-nums;
}

.venstre .side-parti-pct { text-align: left; }
.hoejre .side-parti-pct { text-align: right; }

.trekolonne .kort { flex: 1; min-width: 0; }
.spoergsmaal-side { max-width: 100%; }

/* Kort */
.kort {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
}

.kort-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.sagsnr-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.3px;
    text-decoration: none;
}
.sagsnr-link:hover { text-decoration: underline; }

.dato {
    color: var(--text-light);
    font-size: 14px;
}

.kort-titel {
    font-family: var(--serif);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.25;
    margin-bottom: 24px;
}

/* Resume */
.resume-sektion { margin-bottom: 28px; }

.resume-original-wrap {
    position: relative;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.resume-original-wrap.collapsed {
    max-height: 100px;
}

.kort-resume-original {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.8;
}

.resume-fade {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(transparent, var(--bg-card));
    pointer-events: none;
}

.fold-ud-knap {
    width: 100%;
    padding: 8px;
    margin-bottom: 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: transparent;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--sans);
    transition: background 0.15s;
}
.fold-ud-knap:hover { background: var(--neutral-bg); }

.resume-simpel {
    border-left: 3px solid var(--accent);
    padding: 20px 24px;
    margin-top: 8px;
    background: #FDF8F5;
    border-radius: 0 12px 12px 0;
}
.resume-simpel-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: var(--sans);
}
.resume-simpel-chevron {
    font-size: 14px;
    color: var(--text-light);
}
.resume-simpel-label {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 0;
}
.resume-simpel-content {
    margin-top: 8px;
}
.resume-simpel-tekst {
    color: var(--text);
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
    font-family: var(--serif);
    font-style: italic;
}

/* Side-panel argumenter */
.side-arg {
    margin-top: 16px;
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
}

.side-arg-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.for-arg-label { color: var(--green); }
.imod-arg-label { color: var(--red); }

.side-arg-preview {
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.side-arg-preview.arg-collapsed {
    max-height: 72px;
    -webkit-mask-image: linear-gradient(to bottom, #000 50%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 50%, transparent 100%);
}

.side-arg-tekst {
    font-size: 12px;
    line-height: 1.55;
    color: var(--text-muted);
    margin-bottom: 8px;
    padding: 8px 10px;
    border-radius: 8px;
}

.venstre .side-arg-tekst {
    background: #f4f9f4;
}

.hoejre .side-arg-tekst {
    background: #fdf5f5;
}

.side-arg-tekst:last-child { margin-bottom: 0; }

.side-arg-more {
    width: 100%;
    padding: 4px;
    border: none;
    background: transparent;
    font-size: 11px;
    color: var(--text-light);
    cursor: pointer;
    font-family: var(--sans);
    margin-top: 4px;
}
.side-arg-more:hover { color: var(--text); }

/* Align side panels to same height */
.side-partier {
    align-self: start;
}

/* Stemme-knapper */
.knap-gruppe {
    display: flex;
    gap: 10px;
}

.stemme-knap {
    flex: 1;
    padding: 16px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-family: var(--sans);
    transition: all 0.2s;
}

.knap-ikon { font-size: 20px; }

.for-knap {
    background: var(--green-bg);
    color: var(--green);
    border: 1.5px solid #c8dfc8;
}
.for-knap:hover {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}

.hverken-knap {
    background: var(--neutral-bg);
    color: var(--text-muted);
    border: 1.5px solid var(--border);
}
.hverken-knap:hover {
    background: var(--text-muted);
    color: #fff;
    border-color: var(--text-muted);
}

.imod-knap {
    background: var(--red-bg);
    color: var(--red);
    border: 1.5px solid #e8c8c8;
}
.imod-knap:hover {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}


/* =============================================================================
   AFSTEMNINGSRESULTAT
   ============================================================================= */

.afstemning-resultat {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--border-light);
}

.resultat-banner {
    padding: 14px 18px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 18px;
}

.vedtaget {
    background: var(--green-bg);
    color: var(--green);
}

.forkastet {
    background: var(--red-bg);
    color: var(--red);
}

.din-stemme {
    font-size: 13px;
    font-weight: 400;
    color: var(--text-muted);
}
.din-stemme strong { font-weight: 700; color: var(--text); }

.parti-bar {
    display: flex;
    height: 6px;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 14px;
}
.parti-bar-for { background: var(--green); }
.parti-bar-imod { background: var(--red); }

.parti-liste { margin-bottom: 24px; }

.parti-rad {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.parti-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    min-width: 40px;
}

.parti-badges { display: flex; gap: 4px; flex-wrap: wrap; }

.parti-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.naeste-knap {
    display: block;
    text-align: center;
    padding: 14px;
    background: var(--accent);
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.2s;
}
.naeste-knap:hover { background: var(--accent-hover); color: #fff; text-decoration: none; }


/* =============================================================================
   RESULTAT-SIDE
   ============================================================================= */

.resultat-side {
    padding-top: 60px;
    max-width: 620px;
    margin: 0 auto;
}

.resultat-header {
    text-align: center;
    margin-bottom: 48px;
}

.resultat-header h1 {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 10px;
}

.resultat-sub {
    color: var(--text-light);
    font-size: 16px;
    font-weight: 400;
}

/* Parti-ranking */
.resultat-kort {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 48px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.04);
}

.resultat-parti-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}
.resultat-parti-row:last-child { border-bottom: none; }

.resultat-rank {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    background: var(--neutral-bg);
    color: var(--text-muted);
    flex-shrink: 0;
}
.rank-1 { background: var(--accent); color: #fff; }

.resultat-bar-track {
    flex: 1;
    height: 6px;
    background: var(--border-light);
    border-radius: 3px;
    overflow: hidden;
}
.resultat-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width 1s ease;
}

.resultat-pct {
    font-weight: 700;
    font-size: 17px;
    min-width: 45px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.resultat-parti-navn {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    min-width: 100px;
    white-space: nowrap;
}

.resultat-chevron {
    font-size: 14px;
    color: var(--text-light);
    min-width: 20px;
    text-align: center;
}

.resultat-parti-row:hover {
    background: var(--neutral-bg);
    border-radius: 8px;
    margin: 0 -8px;
    padding: 10px 8px;
}

.parti-detalje {
    padding: 12px 0 16px 38px;
}

.detalje-gruppe {
    margin-bottom: 12px;
}
.detalje-gruppe:last-child { margin-bottom: 0; }

.detalje-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
}

.detalje-item {
    display: flex;
    gap: 8px;
    align-items: baseline;
    padding: 5px 8px;
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-muted);
    transition: background 0.15s;
    cursor: pointer;
}
.detalje-item:hover {
    background: var(--neutral-bg);
    text-decoration: none;
    color: var(--text);
}

.detalje-sagsnr {
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
    flex-shrink: 0;
}

.detalje-titel {
    font-size: 13px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.detalje-item:hover .detalje-titel {
    white-space: normal;
    overflow: visible;
}

.enig-item { border-left: 2px solid var(--green); }
.uenig-item { border-left: 2px solid var(--red); }

/* Sektioner */
.sektion {
    margin-bottom: 48px;
}
.sektion h2 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 4px;
}
.sektion-sub {
    color: var(--text-light);
    font-size: 15px;
    margin-bottom: 24px;
    font-weight: 400;
}

/* Blok-analyse */
.blok-kort-wrap {
    display: flex;
    gap: 16px;
}
.blok-kort {
    flex: 1;
    background: var(--bg-card);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.03);
}
.blok-navn {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 8px;
    color: var(--text-muted);
}
.blok-pct {
    font-family: var(--serif);
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 12px;
}
.blok-bar-track {
    height: 4px;
    background: var(--border-light);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: 14px;
}
.blok-bar-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 2px;
}
.blok-partier {
    display: flex;
    gap: 4px;
    justify-content: center;
    flex-wrap: wrap;
}

.mini-badge {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
}

/* Emne-breakdown */
.emne-kort-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.emne-kort {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.emne-kort-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 14px;
}
.emne-kort-titel {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 15px;
}
.emne-kort-antal {
    font-size: 11px;
    color: var(--text-light);
}
.emne-parti-bars { display: flex; flex-direction: column; gap: 4px; }
.emne-parti-row {
    display: flex;
    align-items: center;
    gap: 6px;
}
.emne-parti-label {
    font-size: 10px;
    font-weight: 700;
    min-width: 24px;
    text-align: right;
}
.emne-bar-track {
    flex: 1;
    height: 5px;
    background: var(--border-light);
    border-radius: 3px;
    overflow: hidden;
}
.emne-bar-fill {
    height: 100%;
    border-radius: 3px;
}
.emne-parti-pct {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-light);
    min-width: 28px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

/* Overraskende enigheder */
.overrask-wrap {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.overrask-kort {
    background: var(--bg-card);
    border-radius: 40px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.overrask-pct {
    font-weight: 600;
    font-size: 14px;
}

/* Kontroversielle svar */
.kontro-kort {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}
.kontro-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.kontro-stemme {
    font-size: 12px;
    color: var(--text-light);
}
.kontro-titel {
    font-family: var(--serif);
    font-size: 14px;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}
.kontro-partier { display: flex; flex-direction: column; gap: 6px; }
.kontro-rad {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}
.kontro-label {
    font-size: 11px;
    font-weight: 700;
    min-width: 48px;
}
.enig-label { color: var(--green); }
.uenig-label { color: var(--red); }

/* Svar-fordeling */
.fordeling-wrap { margin-top: 16px; }
.fordeling-bar {
    display: flex;
    height: 40px;
    border-radius: 10px;
    overflow: hidden;
    font-size: 13px;
    font-weight: 600;
}
.fordeling-del {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}
.for-del { background: var(--green-bg); color: var(--green); }
.hverken-del { background: var(--neutral-bg); color: var(--text-light); }
.imod-del { background: var(--red-bg); color: var(--red); }

/* Footer */
.resultat-footer {
    text-align: center;
    margin: 48px 0 60px;
}

.footer {
    text-align: center;
    padding: 24px 0;
    color: var(--text-light);
    font-size: 13px;
    margin-top: 48px;
}
.footer a { color: var(--text-muted); }


/* =============================================================================
   RESPONSIVE
   ============================================================================= */

/* Mobil-argumenter (skjult på desktop, vist på mobil) */
.mobil-argumenter {
    display: none;
}

@media (max-width: 900px) {
    .side-partier { display: none; }
    .trekolonne { display: block; }
    .mobil-argumenter { display: block; margin-top: 16px; }
    .mobil-arg-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .mobil-arg-panel {
        padding: 12px;
        border-radius: 10px;
    }
    .mobil-arg-for { background: #f4f9f4; }
    .mobil-arg-imod { background: #fdf5f5; }
}

@media (max-width: 600px) {
    .emne-kort-wrap { grid-template-columns: 1fr; }
    .blok-kort-wrap { flex-direction: column; }
    .forside h1 { font-size: 34px; }
    .forside { margin: 40px auto 40px; }
    .kort { padding: 24px; }
    .kort-titel { font-size: 22px; }
    .emne-grid { grid-template-columns: 1fr; }
    .mobil-arg-grid { grid-template-columns: 1fr; }
}