#module_.nk-side-section1 { 
  width: 100%; 
  display: block; 
  background-color: ; 
  padding: 40px 0; 
}

#module_ .nk-side-container1 { 
  display: flex; 
  width: 100%; 
  max-width: 1200px; 
  margin: 0 auto; 
  min-height: px;  
  align-items: stretch; 
  overflow: hidden; 
  border-radius: 8px;
  flex-direction: ;
  background-color: ;
}

#module_ .nk-side-content1 { 
  flex: 1; 
  display: flex; 
  justify-content: center; 
  padding: 40px 60px; 
  box-sizing: border-box;
  align-items: ;
}

#module_ .nk-side-text-wrapper1 { 
  width: 100%; 
  max-width: 600px; 
}

#module_ .nk-side-text-wrapper1 h2 { 
  font-size: clamp(28px, 4vw, 30px); 
  line-height: 1.2; 
  margin: 0 0 20px 0; 
  font-weight: 500; 
  color:  !important; 
}

#module_ .nk-side-body1, 
#module_ .nk-side-body1 p { 
  font-size: 18px; 
  line-height: 1.6; 
  margin: 0 !important; 
  color:  !important; 
}

/* --- BILDE-DEL --- */
#module_ .nk-side-image-wrapper1 { 
  flex: 1; 
  position: relative; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  overflow: hidden;
}

#module_ .nk-side-image1 { 
  display: block; 
  transition: all 0.2s ease; 
  max-width: 100%;
}

{% if module.image_scale1 == 100 %}
  #module_ .nk-side-image1 { 
    width: 100% !important; 
    height: 100% !important; 
    object-fit: cover !important; 
    position: absolute; 
    top:0; 
    left:0; 
  }
{% else %}
  #module_ .nk-side-image1 { 
    width: % !important; 
    height: auto !important; 
    max-height: 90%; 
    object-fit: contain !important; 
  }
{% endif %}

#module_ .nk-side-button1 { 
  display: inline-block !important; 
  background-color:  !important; 
  color:  !important; 
  padding: 14px 28px !important; 
  border-radius: 6px !important; 
  text-decoration: none !important; 
  font-weight: 600 !important; 
  font-size: 16px !important; 
  margin-top: 30px !important; 
  transition: all 0.2s ease !important;
  border: none !important;
}

#module_ .nk-side-button1:hover { 
  filter: brightness(90%) !important;
  opacity: 1 !important;
}

@media (max-width: 767px) {
  #module_ .nk-side-container1 { 
    flex-direction:  !important;
    min-height: auto !important; 
    width: 95%; 
    margin: 20px auto; 
  }
  
  #module_ .nk-side-image-wrapper1 { 
    width: 100% !important; 
    height: 250px !important;
    flex: none !important; 
  }
  
  #module_ .nk-side-content1 { 
    padding: 30px 25px !important; 
    width: 100% !important; 
  }
}