/* Hero mit Foto */
.page-hero {
    position: relative;
    height: 60vh;
    min-height: 460px;
    max-height: 640px;
    background: url('../../images/nerd.jpg') center / cover no-repeat;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    /*background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.45) 100%);*/
}
.page-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 4rem;
    color: #fff;
}
.page-hero h1 {
    font-family: 'Titillium Web', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    line-height: 1.15;
    margin: .6rem 0 .9rem;
    text-shadow: 0 2px 12px rgba(0,0,0,.25);
}
.page-hero p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.85);
    max-width: 540px;
    line-height: 1.7;
    margin: 0;
}
.page section {padding: 10px 0;}
.page h2, h3, h4 {font-size: 21px !important;}

