@font-face {
    font-family: 'Mint Grotesk';
    src: url('font/MintGrotesk-Regular.woff2') format('woff2'),
         url('font/MintGrotesk-Regular.woff') format('woff');
}

html {
    margin: 0;
    height: 100%;
}

body {
    /* erlauben vertikales Scrollen, um Abschneiden von Text zu vermeiden */
    overflow-x: hidden;
    overflow-y: auto;
    text-align: center;
    font-family: 'Mint Grotesk', sans-serif;
    font-size: 11pt;
    font-weight: normal;
    margin: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

body p {
    margin: 0;
    line-height: 18px;
    letter-spacing: 0.03em;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container für alle Inhalte */
.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Logo-Bildgröße */
div img {
    margin: 0px 20px 5px 20px;
    width: 80vw;
}

@media (min-width: 300px) {
    .main-container img {
        max-width: 217px;
    }
}

.title {
    display: none;
}

.name {
    font-size: 15pt;
    margin-bottom: 3px;
}

.subtitle {
    margin-bottom: 35px;
}

.address {
    margin-bottom: 15px;
}

.contact {
    margin-bottom: 40px;
}

.specializations {
    /* Standard bleibt unverändert; Großschreibung wird per Inline-Stil im HTML aktiviert */
}

/* Therapie-Schwerpunkte Liste */
.details {
    margin: 0 40px;
    line-height: 1.4;
}

/* Auf kleineren Bildschirmen wird der Seitenrand reduziert,
   damit der Text nicht abgeschnitten wird. */
@media (max-width: 600px) {
    .details {
        margin: 0 20px;
    }
}