@charset "UTF-8";

@font-face {
	font-family: 'BuenosAires';
	src: url('BuenosAiresWeb-Book.woff2') format('woff2'),
		url('BuenosAiresWeb-Book.woff') format('woff');
	font-weight: 300;
	font-style: normal;
}

/*
——————————————————————————————————————————
	reset						        */

*,
*::before,
*::after {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	text-size-adjust: none;
}

/*
——————————————————————————————————————————
	font / color /	custom property		*/

html,
h1,
h2 {
	font-family: 'BuenosAires';
	font-size: 10pt;
	font-weight: 300;
	font-style: normal;
	line-height: 1.25;

	--unit: calc(1rem * 1.25);
	/* leerzeile, somit verknüpft mit schriftgrösse */

}

/*
——————————————————————————————————————————
	links                               */

a:link,
a:visited,
a:hover,
a:active,
a:focus {
	color: black;
	text-decoration: none;
}

/*
——————————————————————————————————————————
	content							*/

.content-wrapper {
	display: block;
	margin: 5% 5% 5% 30%;
}


.content__address-and-portrait {
	padding-top: calc(2 * var(--unit));

}

.content__more-info {
	display: none;
}

img {
	display: none;
}

h1 {
	text-transform: uppercase;
	letter-spacing: 0.25rem;
	padding-bottom: calc(3 * var(--unit));

}

h2 {
	padding-left: 2rem;
	padding-bottom: calc(0.5 * var(--unit));
}

p,
ul {
	padding-bottom: var(--unit);
}

ul {
	list-style-type: "─";
	padding-left: 1rem;
	/* scheint der strichbreite zu entsprechen */
}


li {
	padding-left: 1rem;
}

li:last-child {
	padding-bottom: 0;
}

.address ul {
	list-style-type: none;
	padding-left: 0;
	padding-bottom: 0;
}

.address li {
	padding-left: 0;
	padding-bottom: calc(0.5 * var(--unit));

}