
:root {
    --navy: #1a4d66;
    --navy-dark: #0f3549;
    --blue-link: #1a6b96;
    --gold: #e0a821;
    --bg-light: #eef2f5;
    --bg-white: #ffffff;
    --border: #dde3e8;
    --text: #33393e;
    --text-muted: #6b7580;
    --green: #1c9c6b;
    --amber: #e08a1e;
    --red: #b3231f;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif;
    color: var(--text);
    line-height: 1.55;
    background: var(--bg-white);
}

h1, h2, h3 {
    font-family: Georgia,"Times New Roman",serif;
    color: var(--navy);
    font-weight: 600;
    line-height: 1.2;
}

a {
    color: var(--blue-link);
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

.wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 64px 0;
}

/*.section-alt {
    background: var(--bg-light);
}*/

section:nth-child(even) {
    background-color: var(--lightBlueBkgd04) !important;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 14px;
}

    .eyebrow::before {
        content: "";
        display: inline-block;
        width: 28px;
        height: 3px;
        background: var(--gold);
    }

h1.title {
    font-size: 38px;
    margin-bottom: 14px;
}

h2.title {
    font-size: 32px;
    margin-bottom: 14px;
}

.lede {
    font-size: 17px;
    color: #3f4650;
    max-width: 640px;
    margin-bottom: 32px;
}

.lede-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

    .lede-row .lede {
        margin-bottom: 0;
    }

/* Topic cards */
.card-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.topic-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px;
}

.topic-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #e6eef3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
    color: var(--navy);
}

.topic-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1c2530;
}

.topic-card p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.topic-card .more {
    font-size: 14px;
    font-weight: 600;
}

/* Stat cards */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    margin-top: 8px;
}

.stat-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px 22px;
}

    .stat-card .stat-label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .06em;
        text-transform: uppercase;
        color: var(--text-muted);
        margin-bottom: 10px;
    }

    .stat-card .stat-value {
        font-size: 30px;
        font-weight: 700;
        color: var(--navy);
    }

        .stat-card .stat-value span {
            font-size: 16px;
            font-weight: 400;
            color: var(--text-muted);
            margin-left: 4px;
        }

.stat-link {
    display: inline-block;
    margin-top: 24px;
    font-weight: 600;
}

/* News cards */
.news-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 28px;
    flex-wrap: wrap;
    gap: 8px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.news-card {
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-white);
}

.news-thumb {
    height: 150px;
    background: #f3f5f7;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9aa3ab;
    font-size: 13px;
    overflow: hidden;
}

    .news-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.news-body {
    padding: 18px;
}

.news-tag {
    display: inline-block;
    background: #e6eef3;
    color: var(--navy);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-right: 8px;
}

.news-date {
    font-size: 13px;
    color: var(--text-muted);
}

.news-body h3 {
    font-size: 17px;
    margin: 12px 0 6px;
    color: #1c2530;
    font-family: Georgia,serif;
}

    .news-body h3 a {
        color: inherit;
        text-decoration: underline;
    }

.news-body p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Behandling / steps */
.hero-photo {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 32px;
    background: linear-gradient(135deg,#2f7a9e,#1a4d66);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dfeaf0;
    font-size: 14px;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px 18px;
    font-size: 15px;
}

.step-num {
    flex: none;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e6eef3;
    color: var(--navy);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-download {
    background: #dceaf4 !important;
    border-color: #c7dced !important;
    font-weight: 600;
    color: var(--navy);
}

    .step-download .step-num {
        background: transparent;
        font-size: 18px;
    }

/* Sortering checklist */
.sort-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 28px;
    align-items: start;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 15px;
}

.check-icon {
    flex: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #e3f5ec;
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
}

.sort-photo {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    background: linear-gradient(135deg,#3d3226,#6b5540);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e8dfd2;
    font-size: 13px;
}

.info-box {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 20px;
    background: var(--bg-white);
}

    .info-box h4 {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 16px;
        color: #1c2530;
        margin-bottom: 10px;
        font-family: Georgia,serif;
    }

    .info-box .info-icon {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: #e3eff8;
        color: var(--blue-link);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        flex: none;
    }

    .info-box p {
        font-size: 14px;
        color: var(--text-muted);
    }

/* Kvalitet cards */
.qual-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.qual-card {
    border-radius: 10px;
    overflow: hidden;
    background: var(--bg-white);
    border: 2px solid var(--border);
}

    .qual-card.ja {
        border-color: var(--green);
    }

    .qual-card.sjekk {
        border-color: var(--amber);
    }

    .qual-card.nei {
        border-color: var(--red);
    }

.qual-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    margin: 14px;
}

    .qual-badge.ja {
        background: var(--green);
    }

    .qual-badge.sjekk {
        background: var(--amber);
    }

    .qual-badge.nei {
        background: var(--red);
    }

.qual-thumb {
    height: 190px;
    background: #eceff1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b939a;
    font-size: 13px;
    text-align: center;
    padding: 0 20px;
    border-top: 1px solid var(--border);
}

    .qual-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.qual-body {
    padding: 20px;
    border-top: 1px solid var(--border);
}

    .qual-body h3 {
        font-size: 18px;
        margin-bottom: 6px;
        color: #1c2530;
        font-family: Georgia,serif;
    }

    .qual-body > p {
        font-size: 14px;
        color: var(--text-muted);
        margin-bottom: 12px;
    }

    .qual-body ul {
        list-style: none;
        font-size: 14px;
        color: var(--text);
        border-top: 1px solid var(--border);
        padding-top: 12px;
    }

        .qual-body ul li {
            padding: 5px 0;
            position: relative;
            padding-left: 16px;
        }

            .qual-body ul li::before {
                content: "•";
                position: absolute;
                left: 0;
                color: var(--text-muted);
            }

.qual-price {
    display: block;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    font-weight: 700;
    font-size: 14px;
}

    .qual-price.ja {
        color: var(--green);
    }

    .qual-price.sjekk {
        color: var(--amber);
    }

    .qual-price.nei {
        color: var(--red);
    }

/* Minstepris table */
.reg-badges {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    font-size: 14px;
    color: var(--text-muted);
}

.reg-tag {
    background: #e6eef3;
    color: var(--navy);
    font-weight: 700;
    font-size: 13px;
    padding: 5px 12px;
    border-radius: 20px;
}

table.price-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 0 1px var(--border);
}

    table.price-table thead tr {
        background: var(--newBlue);
    }

    table.price-table thead th {
        color: #fff;
        text-align: left;
        font-size: 14px;
        font-weight: 700;
        padding: 16px 20px;
    }

        table.price-table thead th:last-child, table.price-table tbody td:last-child {
            text-align: right;
        }

    table.price-table tbody td {
        padding: 16px 20px;
        font-size: 15px;
        border-top: 1px solid var(--border);
        background: var(--bg-white);
    }

    table.price-table tbody tr:nth-child(even) td {
        background: #f7f9fb;
    }

    table.price-table td.value {
        font-weight: 700;
    }

.change-up {
    color: var(--green);
    font-weight: 600;
}

.change-same {
    color: var(--text-muted);
}

.change-new {
    color: var(--blue-link);
    font-weight: 600;
}

.table-footnote {
    font-size: 13px;
    color: var(--text-muted);
    margin: 18px 0 32px;
}

.reg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.reg-box {
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 22px;
    background: var(--bg-white);
}

    .reg-box h4 {
        font-size: 17px;
        margin-bottom: 10px;
        color: #1c2530;
        font-family: Georgia,serif;
    }

    .reg-box p {
        font-size: 14px;
        color: var(--text-muted);
        margin-bottom: 10px;
    }

@media only screen and (max-width: 992px) {
    .card-grid, .stat-grid, .news-grid, .qual-grid, .reg-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sort-layout {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 640px) {
    .card-grid, .stat-grid, .news-grid, .qual-grid, .steps-grid, .reg-grid {
        grid-template-columns: 1fr;
    }

    h1.title {
        font-size: 30px;
    }

    h2.title {
        font-size: 26px;
    }

    .lede-row {
        flex-direction: column;
        align-items: flex-start;
    }
}
