:root {
  --content-width: 100%;
}

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

html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";;
  font: normal normal 400 1em/1.5;
  scroll-behavior: smooth;
}

li {
  list-style: none;
}

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

strong, b {
  font-weight: 500;
}

img {
  width: 100%;
}

.page {
  padding-top: 0;
  padding-bottom: 0;

}
.page > * {
  max-width: var(--content-width);
  margin: 0 auto;
}
/* -----  Links  ------------------------------------------------------------ */

a {
  color: inherit;
}

a,
a:link,
a:hover,
a:focus,
a:active {
  color: inherit;
}

/* -----  Headings  --------------------------------------------------------- */

h1, .h1 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.125;
  margin-bottom: 1.5rem;
}

h2, .h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.125;
  margin-bottom: 1.5rem;
}

h3, .h3 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

h4, .h4 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5em;
  margin-bottom: 0;
}

h5, .h5 {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0;
}

h6, .h6 {
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/*intro banner mit balken quer von arentfox.com/perspectives */
.intro {
  content: '';
  background: rgba(3,54,67,.1);
  width: 100%;
  height: 100vh;
  display: block;
  top: 0;
}
.intro-image{
  position: relative;
  object-fit: cover;
  height: 100vh;
  max-width: 100vw;
}
.intro-image img{
  object-fit: cover;
  object-position: 35% 20%;
  height: 100%;
  width: 100%;
}
.intro-image h1 {
  position: absolute;
  font-family: "akzidenz-grotesk",Helvetica,"Nimbus Sans L",sans-serif;
  padding-top: 30vh;
  padding-left:5vw;
  font-size: 6.5vw;
  margin-bottom: 48px;
  color: #fff;
  text-shadow: 0 0 2.5rem rgba(3,54,67,.2);
  line-height: 1.2;
  letter-spacing: -0.3vw;
}

.intro-image h1:after {
  content: '';
  display: block;
  position: absolute;
  border-bottom: 1px solid #fff;
  margin-bottom: 16px;
  padding-bottom: 16px;
  width: 90vw;
}

h1 .introText {
  position: absolute;
  font-family: "akzidenz-grotesk",Helvetica,"Nimbus Sans L",sans-serif;
  padding-top: 30vh;
  padding-left:5vw;
  font-size: 15vw;
  margin-bottom: 48px;
  color: #fff;
  text-shadow: 0 0 2.5rem rgba(3,54,67,.2);
  line-height: 1.2;
  letter-spacing: -0.3vw;
  text-align: left;
}


.tags {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  font-size: .75rem;
  font-weight: 600;
}

.text {
  line-height: 1.5em;
}
.text p,
.text figure,
.text ul,
.text ol {
  margin-bottom: 1.5em;
}
.text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.text > *:first-child {
  margin-top: 0;
}
.text a {
  position: relative;
  white-space: nowrap;
  font-weight: 500;
  z-index: 1;
  display: inline-block;
  border-bottom: 2px solid #000;
}
.text figure {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.text img {
  width: 100%;
}

.social a {
  margin: 0 .75rem;
  padding: .5rem 1rem;
  border: 2px solid #000;
  width: 7.5rem;
}
.social a:hover {
  background: #000;
  color: #fff;
}

