/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

/* Responsiv og uten oppdelte ord i H1 */

h1,
.hs_cos_wrapper_type_header h1 {
  /* responsiv størrelse */
  font-size: clamp(1.6rem, 4vw + 0.3rem, 3rem);
  line-height: 1.2;

  /* hindrer at ord brytes midt i */
  word-break: normal; !important;
  overflow-wrap: normal; !important;
  hyphens: none; !important;
}

/* litt mindre H1 på veldig små skjermer om det trengs */
@media (max-width: 480px) {
  h1,
  .hs_cos_wrapper_type_header h1 {
    font-size: clamp(1.5rem, 5vw, 2.4rem);
  }
}