/* ====== BLOGGSEKSJON (layout) ====== */

/* Full bredde – valgfri bakgrunn via CSS-variabel */
.blog-feature-module {
  width: 100%;
  background: var(--blog-feature-bg, transparent); /* sett til f.eks. #f7f7f7 for lys stripe */
}

/* Smal, sentrert kolonne inni modulen */
.blog-feature-module .blog-feature-inner {
  max-width: 820px !important;     /* juster til 760–860px etter smak */
  margin: 40px auto !important;     /* sentrerer og gir luft over/under */
  padding: 0 16px;                  /* litt sideluf t (mobilvennlig) */
  box-sizing: border-box;
  text-align: left;                 /* sørger for venstrejustert tekst */
}

/* Bildet følger kolonnebredden */
.blog-feature-module .blog-feature-image {
  max-width: 100%;
  margin: 0 0 20px 0;
}

.blog-feature-module .blog-feature-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

/* Typografi beholdes som i dag; disse er bare små, trygge justeringer */
.blog-feature-module .blog-feature-title {
  margin: 0 0 15px;
  line-height: 1.2;
}

.blog-feature-module .blog-feature-ingress {
  margin: 0 0 20px;
}

/* ====== RESPONSIVT ====== */
@media (max-width: 1200px) {
  .blog-feature-module .blog-feature-inner {
    max-width: 800px !important; /* litt smalere på store skjermer hvis ønskelig */
  }
}

@media (max-width: 768px) {
  .blog-feature-module .blog-feature-inner {
    max-width: 100% !important;
    margin: 24px auto !important;
    padding: 0 15px;
  }

  .blog-feature-module .blog-feature-image img {
    max-height: none; /* la bildet være fritt på mobil */
  }
.blog-feature-stikktittel {
  font-size: 14px;
  font-weight: 600;
  color: #003d99;
  text-transform: uppercase;
  padding-left: 12px;
  border-left: 3px solid #003d99;
  margin-bottom: 10px;
  display: inline-block;
}
.blog-post-style { background:#eee !important; padding:60px 0; }
.blog-post-style .card, 
.blog-post-style .content { background:transparent !important; }
