html {
    font-family: Arial;
    font-size: 13pt;
    line-height: 1.5em;
    height: 100%;
}


body {
    background-color: #FFFFFF;
    height: 100%;
}

.footer {
    display: flex;
    justify-content: center;
    flex-direction: column;
    border-top: 1px #DDDDDD solid;
    padding-top: 16px;

    a {
        font-weight: bold;
    }

    .imprint {
        text-align: center;
    }

    .socials {
        display: flex;
        justify-content: center;
        gap: 32px;

        .social a {
            display: inline-block;
            padding: 8px;
            overflow: hidden;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            flex-shrink: 1;
            border-bottom: none;
            img {
                height: 32px;
            }
        }
    }
}

a,
a:active,
a:visited {
    color: #000000;
    text-decoration: none;
    border-bottom: 1px dotted #000000;
}

a:hover {
    border-bottom: 1px solid #000000;
}

.root {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page {
    display: flex;
    flex-direction: column;
    gap: 32px;
    border: #FFFFFF 1px solid;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;

    .content {
        max-width: 1000px;
		
		h1 {
			margin-bottom: 48px;
		}

        h2 {
            margin-top: 64px;
        }

        h3 {
            margin-bottom: 0;
        }

        .bookTitle {
            margin-top:8px;
        }

        .contact {
            margin-bottom: 32px;
        }

        .centered-headline {
            text-align: center;
        }

        .external-services {
            
            border-radius:32px;
            padding: 32px;

            h3 {
                margin-bottom: 32px;
            }
        }

        .publications {
            display: flex;
            flex-direction: column;
            gap: 32px;

            .item {
                display: flex;
                flex-direction: column;
                gap: 32px;
                border: 1px solid white;
                padding: 16px;
                border-radius: 8px;
				
                h4 {
                    margin: 0;
                }

                h5 {
                    margin: 0;
                }

                .description {
                    display: flex;
                    gap: 36px;
                    .cover {
                        img {
                            width: 250px;
                        }
                    }

                    .facts {
                        display: flex;
                        flex-direction: column;
                        line-height: 1.5em;
                    }
                }
				
				
				.summary {
					p {
						margin: 0 0;
					}

                    .highlight {
                        font-weight:bold;
                    }
				}


                .shops {
                    display: flex;
                    justify-content: center;
                    gap: 32px;
                    flex-wrap: wrap;

                    a {
                        display: inline-block;
                        background-color: #DDDDDD;
                        padding: 8px;
                        border-radius: 8px;
                        border: 1px solid darkgrey;
                        overflow: hidden;
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        flex-shrink: 1;
                        width: 150px;
                        text-align: center;
                    }
                }

                .press {
                    display: flex;
                    justify-content: center;
                    gap: 32px;
                    flex-wrap: wrap;

                    a {
                        white-space: nowrap;
                    }

                    .pressitem {
                        p {
                            margin: 0 0 16px 0;
                            line-height: 1.75em;
                        }
                        .pressquote{
                            font-style: italic;
                        }
                        .source {
                            font-size: 0.75em;
                            margin-top:16px;
                            font-weight: bold;
                        }
                    }
                }                
            }
        }
        
        .imprintContact {
            margin: 48px 0;
            h3 {
                margin-bottom:0;
            }
        }

        .event {
            border-left: 4px solid #DDDDDD;
            padding-left: 16px;
            margin-bottom: 32px;
        }

        .biography {
            display: flex;
            flex-direction: row;
            gap: 16px;

            img {
                width: 450px;
                /* border-radius: 75px; */
            }

            .remark {
                font-size: 0.75em;
            }
        }
		
		.quote {
			font-size: 2.2em;
			line-height: 1.5em;
			justify-content: center;
			text-align: center;
		}
		.quote_author {
			text-align: center;
			font-size: 1.75em;
			margin-bottom:75px;
		}

        .awards {
            .received {
                font-weight: bold;
            }
        }
    }

}

@media (max-width: 1000px) {
    .page{
        .content {
            .biography{
                flex-direction: column;
                align-items: center;

                img {
                    width: 300px;
                    /* border-radius: 150px; */
                }
            }
            .publications{
                .item{
                    .description{
                        flex-direction: column;
                    }
                }
            }
			
			.quote {
				font-size: 1.5em;
				line-height: 1.15em;
				justify-content: center;
				text-align: center;
				margin-bottom: 50px;
			}
		.quote_author {
			text-align: center;
			font-size: 1em;
			margin-bottom:75px;
		}
        }
    }
}