/* =========================================================
   TØRSLEFF – TM NO FORSIDE (ISOLERT)
   Fil: /tm-no/tm.css
   Brukes av: /tm-no/index.html
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;700;800&display=swap');

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

/* =========================================================
   VARIABLES
   ========================================================= */
:root {
    --wix-gray-1: #dedada;
    --wix-gray-2: #cfcaca;
    --wix-pink: #e06575;
    --wix-pink-hover: #f08a97;

    --text-strong: rgba(0, 0, 0, .78);
    --text-body: rgba(0, 0, 0, .72);
    --text-muted: rgba(0, 0, 0, .62);
}

/* =========================================================
   PAGE BASE
   ========================================================= */
body.page-wix {
    background: var(--wix-gray-1);
    color: #2b2b2b;
    font-family: "Montserrat", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

a {
    color: inherit;
}

/* =========================================================
   TOP STRIP (logo + tynn linje)
   ========================================================= */
.wix-top {
    background: var(--wix-gray-1);
    padding: 16px 0 0;
    border-bottom: 1px solid rgba(0, 0, 0, .10);
}

.wix-logo {
    max-width: 1100px;
    margin: 0 auto;
    padding: 6px 16px 12px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.wix-logo img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    display: block;
}

/* =========================================================
   PATTERN STRIP + BUTTON GRID
   ========================================================= */
.wix-pattern {
    background-color: #bfb9b8;
    background-image: url("/assets/pattern.png");
    background-size: 520px auto;
    background-repeat: repeat;
    padding: 26px 16px 34px;
    border-bottom: 1px solid rgba(0, 0, 0, .10);
}

.wix-navgrid {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 32px;
}

.wix-btn {
    min-height: 56px;
    padding: 12px 16px;
    background: var(--wix-pink);
    border-radius: 2px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: .2px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.wix-btn:hover {
    background: var(--wix-pink-hover);
}

/* =========================================================
   PINK BAND (headline)
   ========================================================= */
.wix-band {
    background: var(--wix-pink);
    padding: 16px 16px;
    text-align: center;
}

.wix-title {
    margin: 0;
    font-weight: 300;
    font-size: clamp(30px, 4.4vw, 60px);
    line-height: 1.06;
    color: #fff;
}

/* =========================================================
   LOWER GRAY (subtitle + tag)
   ========================================================= */
.wix-lower {
    background: var(--wix-gray-2);
    padding: 62px 16px 70px;
    text-align: center;
}

.wix-subtitle {
    margin: 0 0 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, .92);
    font-size: clamp(30px, 4.4vw, 60px);
    line-height: 1.0;
}

.wix-tag {
    margin: 0;
    color: rgba(255, 255, 255, .88);
    font-weight: 400;
    font-size: clamp(14px, 1.7vw, 22px);
    line-height: 1.35;
}

/* =========================================================
   INFO SECTION (Ragna + Kirsten)
   ========================================================= */
.wix-info {
    background: #ffffff;
    text-align: center;
    padding: 44px 16px 36px;
}

.wix-info-title {
    margin: 0 0 28px;
    font-weight: 600;
    font-size: 22px;
    color: rgba(0, 0, 0, .78);
}

.wix-people {
    display: flex;
    justify-content: center;
    gap: 120px;
    flex-wrap: wrap;
}

.wix-person {
    margin: 0;
    width: 260px;
}

.wix-person img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 2px;
    background: #f2f2f2;
    display: block;
}

.wix-person-name {
    margin-top: 10px;
    font-size: 15px;
    color: rgba(0, 0, 0, .72);
}

.wix-person-mail {
    display: inline-block;
    font-size: 14px;
    color: rgba(0, 0, 0, .62);
    text-decoration: underline;
}

.wix-person-mail:hover {
    color: rgba(0, 0, 0, .78);
}

/* =========================================================
   SPONSORS STRIP
   ========================================================= */
.wix-sponsors {
    background: var(--wix-gray-2);
    padding: 52px 16px 72px;
    text-align: center;
}

.wix-sponsor-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    background: var(--wix-pink);
    color: #fff;
    text-decoration: none;
    border-radius: 2px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, .12);
    font-weight: 500;
    letter-spacing: .2px;
}

.wix-sponsor-btn:hover {
    background: var(--wix-pink-hover);
}

/* =========================================================
   FOOTER
   ========================================================= */
.wix-footer {
    text-align: center;
    padding: 18px 0 28px;
    background: var(--wix-gray-2);
    color: rgba(0, 0, 0, .55);
    font-size: 12px;
    border-top: 1px solid rgba(0, 0, 0, .08);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
    .wix-people {
        gap: 48px;
    }

    .wix-person {
        width: 240px;
    }

    .wix-person img {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 720px) {
    .wix-navgrid {
        grid-template-columns: 1fr;
    }

    .wix-pattern {
        padding: 18px 14px 26px;
    }

    .wix-logo img {
        width: 64px;
        height: 64px;
    }
}