* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
    color: #283036;
    background: radial-gradient(100% 70% at 50% -10%, #f7fafb 0%, #eef2f4 65%);
    line-height: 1.5;
    height: 100vh;
    height: 100svh;
    display: flex;
    flex-direction: column;
}

.seite {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: clamp(1.1rem, 3vh, 2.75rem) clamp(1rem, 4vw, 3.5rem) clamp(1.25rem, 3.5vh, 3rem);
}

.kopf {
    flex: 0 0 auto;
    text-align: center;
    padding-bottom: clamp(0.9rem, 2.5vh, 1.9rem);
}

.praxisname {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: clamp(0.7rem, 0.55rem + 0.6vw, 0.85rem);
    font-weight: 600;
    color: #4a7c7a;
    margin-bottom: clamp(0.5rem, 1.4vh, 1rem);
}

.titel {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    font-size: clamp(1.7rem, 1rem + 4vw, 3.4rem);
}

.bild {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bild img {
    max-width: min(100%, 80rem);
    max-height: min(100%, 70svh);
    width: auto;
    height: auto;
    border-radius: clamp(0.5rem, 1.2vw, 0.9rem);
    box-shadow: 0 1.1rem 3rem rgba(40, 48, 54, 0.16);
}

@media (max-width: 40em) {

    .seite {
        padding: clamp(1rem, 4vh, 1.75rem) 0.9rem 1.25rem;
    }

    .kopf {
        padding-bottom: 0.9rem;
    }

    .bild {
        flex: 0 0 auto;
        align-items: flex-start;
    }

    .bild img {
        width: 100%;
        max-width: 100%;
    }

}
