@charset "UTF-8";
/* CSS Document */

/*
  ARTIKKELMAL 3
  Redaksjonell artikkel med delt hero, fremhevet innhold
  og fleksibel bilde-/tekstseksjon.
*/


/* =====================================
   ARTIKKEL
   ===================================== */

.newsArticle {
  background: #fdfcf9;
  color: #243342;
  padding: 40px 24px 35px;
}


/* =====================================
   BRØDSMULER
   ===================================== */

.breadcrumbs {
  max-width: 1120px;
  margin: 0 auto 32px;

  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;

  font-family: "Manrope", sans-serif;
  font-size: 0.78rem;
  line-height: 1.5;

  color: #7a8187;
}

.breadcrumbs a {
  color: #52616d;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: #17304a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumbs span[aria-hidden="true"] {
  color: #b7b2aa;
}


/* =====================================
   HERO
   ===================================== */

.articleHero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(45px, 6vw, 80px);
  align-items: center;

  max-width: 1120px;
  margin: 0 auto 52px;
}

.articleHeroText {
  max-width: 500px;
}

.articleMeta {
  margin: 0 0 24px;

  font-family: "Manrope", sans-serif;
  font-size: 0.76rem;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.07em;
  text-transform: uppercase;

  color: #707981;
}

.articleHero h1 {
  margin: 0;

  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 2.3vw, 2.55rem);
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -0.02em;

  color: #17304a;
}

.articleIntro {
  margin: 30px 0 0;

  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.82;

  color: #3d474f;
}


/* =====================================
   HERO-BILDE
   ===================================== */

.articleHeroImage {
  margin: 0;
  padding: 6px;

  background: #fff;
  border: 1px solid #e8e4de;
  border-radius: 16px;

  box-shadow: 0 8px 22px rgba(30, 42, 52, 0.08);
}

.articleHeroImage img {
  display: block;

  width: 100%;
  height: 410px;

  object-fit: cover;
  object-position: center;

  border-radius: 11px;
}


/* =====================================
   BRØDTEKST
   ===================================== */

.articleText {
  max-width: 680px;
  margin: 0 auto;
}

.articleText p {
  margin: 0 0 1.65em;

  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.85;

  color: #333d46;
}


/* =====================================
   FREMHEVET INNHOLD
   ===================================== */

.articleHighlight {
  max-width: 760px;

  margin: 38px auto 48px;
  padding: 26px 34px;

  background: #f4ede3;
  border-radius: 12px;
}

.articleHighlight p {
  max-width: 620px;
  margin: 0;

  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.75;

  color: #35404a;
}


/* =====================================
   BILDE + TEKST
   ===================================== */

.historySection {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(45px, 6vw, 75px);
  align-items: center;

  max-width: 1080px;
  margin: 0 auto 38px;
}

.historyImage {
  margin: 0;
  padding: 6px;

  background: #fff;
  border: 1px solid #e8e4de;
  border-radius: 16px;

  box-shadow: 0 8px 22px rgba(30, 42, 52, 0.07);
}

.historyImage img {
  display: block;

  width: 100%;
  height: auto;

  border-radius: 11px;
}

.historyText {
  max-width: 400px;
}

.historyText h2 {
  margin: 0 0 24px;

  font-family: "Manrope", sans-serif;
  font-size: clamp(1.35rem, 1.7vw, 1.7rem);
  line-height: 1.38;
  font-weight: 400;
  letter-spacing: -0.015em;

  color: #17304a;
}

.historyText p {
  margin: 0;

  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.82;

  color: #3d474f;
}


/* =====================================
   AVSLUTNING
   ===================================== */

.articleEnd {
  padding-bottom: 0;
}


/* =====================================
   FOOTER
   ===================================== */

.siteFooter {
  margin-top: 0;
}


/* =====================================
   NETTBRETT
   ===================================== */

@media (max-width: 900px) {

  .newsArticle {
    padding-top: 40px;
  }

  .articleHero {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .articleHeroText {
    max-width: 650px;
  }

  .articleHeroImage {
    max-width: 760px;
  }

  .articleHeroImage img {
    height: auto;
    max-height: 460px;
  }

  .historySection {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .historyImage {
    max-width: 720px;
  }

  .historyText {
    max-width: 640px;
  }
}


/* =====================================
   MOBIL
   ===================================== */

@media (max-width: 640px) {

  .newsArticle {
    padding: 28px 18px 60px;
  }

  .breadcrumbs {
    margin-bottom: 24px;
    gap: 5px;
    font-size: 0.72rem;
  }

  .articleHero {
    margin-bottom: 52px;
  }

  .articleMeta {
    font-size: 0.7rem;
    margin-bottom: 18px;
  }

  .articleHero h1 {
    font-size: clamp(1.65rem, 7.5vw, 2.1rem);
    line-height: 1.28;
  }

  .articleIntro {
    margin-top: 24px;
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .articleHeroImage,
  .historyImage {
    padding: 4px;
    border-radius: 12px;
  }

  .articleHeroImage img,
  .historyImage img {
    border-radius: 8px;
  }

  .articleText p,
  .historyText p {
    font-size: 0.98rem;
    line-height: 1.78;
  }

  .articleHighlight {
    margin: 42px 0 55px;
    padding: 24px;
    border-radius: 10px;
  }

  .historySection {
    margin-bottom: 58px;
  }

  .historyText h2 {
    font-size: 1.3rem;
    line-height: 1.4;
  }
}