body {margin:0;padding:0;font-family: Arial,Helvetica Neue,Helvetica,sans-serif;}

.container {min-height: 500px;}

/* Entfernt Abstände der Sektion, damit das Bild bündig abschließt */
.section-header {
    padding: 0 !important;
}

/* Erzwingt volle Breite für das Bild */
.section-header .image-embed-item {
    width: 100vw;
    height: auto;
    display: block;
    object-fit: cover;
    /* Optional: Begrenze die Höhe, damit das Bild nicht zu riesig wird */
    max-height: 500px; 
    margin-left: calc(-50vw + 50%);
}

.section-header .container, 
.section-header .ce-outer, 
.section-header .ce-inner {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
}

.logo h1 {
margin:0;
padding: 0;
color:#000;
padding-bottom: 2px;
font-size: 0.95em;
line-height: 100%;
    font-weight: 300;
    text-transform: uppercase;
    
}

.logo p {
margin:0;
padding: 0;
color:#999;
padding-bottom: 5px;
font-size: 1.6em;
line-height: 100%;

    text-transform: uppercase;
}

.logo b {

color:#000;

}

.logo a {text-decoration: none;}

#h2 {
    font-size: 2.5rem;
    font-weight: 400;
    color: #2d3436;
    position: relative;
    padding-bottom: 15px;
    display: inline-block;
    background: linear-gradient(90deg, #000, #999);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px; /* Länge des Strichs */
    height: 4px;
    background-color: #999; /* Deine Wunschfarbe */
    border-radius: 2px;
}

.divider-heading {
    /* Wichtig für die Zentrierung des gesamten Elements auf der Seite */
    margin: 40px auto; 
    
    /* Flexbox für das Layout innerhalb der Überschrift */
    display: flex;
    align-items: center;
    justify-content: center; /* Zentriert den Inhalt (Linien + Text) innerhalb des h2 */
    
    /* Falls die Überschrift nicht über die volle Breite gehen soll */
    max-width: 800px; 
    
    gap: 20px; /* Abstand zwischen Text und Linien */
     color: #888;
}

.divider-heading::before,
.divider-heading::after {
    content: "";
    flex: 1; /* Linien wachsen */
    max-width: 60px; /* Begrenzung der Länge der Linien */
    height: 1px;
    background: #ccc;
}