body * {
    font-family: 'rossmann' !important;
}

/*a:not(.re-button, .bremas-button, .menu-item) {
    color: inherit !important;
}*/

a {
  color: inherit;
}

.re-button {
  color: color(3);
}

p, h3 {
    word-wrap: break-word;
    hyphens: auto;
    
}

p {
    font-size: clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.767), 1rem) !important;
    text-align: justify;
  }
  
.heading1 {
  font-size: clamp(2.5rem, 2.5rem + ((100vw - 400px) * 0.04), 5rem) !important;
    letter-spacing: 0px !important;
    font-weight: 700;
  }
  
h2:not(.brlbs-cmpnt-h2,.brlbs-cmpnt-container, .brlbs-text-2xl), .heading2 , .heading2 * {
    font-size: clamp(2rem, 2rem + ((100vw - 400px) * 0.04), 3.5rem) !important;
    /*font-size: clamp(2rem, 2rem + (2rem - 3.5rem) * ((100vw - 480px) / (1200px - 480px)), 3.5rem) !important;*/
    letter-spacing: 0px !important;
    font-weight: 300;
  }
  
.heading3 {
    font-size: clamp(1.375rem, 1.375rem + ((1vw - 0.2rem) * 0.767), 2.25rem) !important;
    letter-spacing: 0px !important;
    font-weight: 300;
    line-height: 1.2 !important;
  }
  
.heading4, .heading4 * {
    font-size: clamp(1rem, 1rem + ((1vw - 0.2rem) * 0.667), 1.75rem) !important;
    letter-spacing: 0px !important;
    font-weight: 300;
  }

.highlight {
    color: #2f3678 !important;
    font-weight: 700 !important;
}

.gradient-text {
    background: linear-gradient(90deg, #2f3678, #7f8fb3, #7f8fb3, #2f3678);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    
    /* Maskierung für bessere Kompatibilität */
    -webkit-mask-image: linear-gradient(90deg, #2f3678, #7f8fb3, #2f3678, #2f3678);
    mask-image: linear-gradient(90deg, #2f3678, #7f8fb3, #2f3678, #2f3678);
    -webkit-mask-size: 300% 100%;
    mask-size: 300% 100%;

    animation: gradientShift 5s infinite linear;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}