@font-face {font-family: 'Figtree';src: url('/figtree/figtree.eot');src: url('/figtree/figtree.eot?#iefix') format('embedded-opentype'),url('/figtree/figtree.woff2') format('woff2'),url('/figtree/figtree.woff') format('woff'),url('/figtree/figtree.ttf') format('truetype');font-weight:400;font-style:normal;font-display:swap;}

@font-face {font-family: 'Figtree Bold';src: url('/figtree/figtree-bold.woff2') format('woff2'),url('/figtree/figtree-bold.woff') format('woff'),url('/figtree/figtree-bold.ttf') format('truetype'),url('/figtree/figtree-black.woff2') format('woff2'),url('/figtree/figtree-black.woff') format('woff'),url('/figtree/figtree-black.ttf') format('truetype');font-weight:900;font-style:normal;font-display:swap;}

/* --- Allgemeine Stile --- */

body {
  margin: 0;
  font: 400 1rem/1.625 "Figtree", Arial, sans-serif;
  color: #252e2d;
  cursor: default;
  -moz-hyphens: auto;
  -o-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

/* --- Grid-Layout --- */
.grid {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 100vh;
}

.portrait-container {
  position: sticky;
  top: 0;
  height: 100vh; /* bleibt immer im Viewport */
}
.portrait {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
h1 {
  font-family: "Figtree Black", Arial, sans-serif;
  font-size: clamp(2.5rem, 6vw, 6rem); /* min 2.5rem, dynamisch, max 6rem */
  letter-spacing: 0.5rem;
  margin: 0 0 3rem -8px;
  line-height: 1.1;
  text-transform: uppercase; /* optional, für ein noch stärkeres Branding */
  font-weight:900 !important;
}
.portrait-container h2 {
  font-family: "Figtree Black", Arial, sans-serif;
  position: absolute;
  bottom: 0px;
  right: 30px;
  color: #fff;
  opacity: 80%;
  text-align:right;
}
.portrait-container h2 span {
  letter-spacing: 0.3rem;
}
.content {
  background: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column; /* Spalten-Layout */
  justify-content: flex-start; /* Oben beginnen */
  align-items: flex-start; /* Links ausrichten */
  text-align: left;
  transition: background 0.4s ease, color 0.4s ease;
}

.content:hover {
  background: #252e2d;
  color: #fff;
}
/* Effekt beim Scroll */
.content.scrolled {
  background: #252e2d;
  color: #fff;
}

.content a {
  color: #252e2d;
  text-decoration: none;
  transition: color 0.3s;
}
.content.scrolled a {
  color: #fff;
}

.content a:hover {
  color: #11536c;
}
.content.scrolled a:hover {
  color: #97a4ac;
}

.content-inner {
  max-width:70%;
}
.content-inner b {
  text-decoration: underline;
}

.logos {
  display: flex;
  justify-content: left;
  gap: 10px;
  margin: 2rem 0 0 -4px;
  flex-wrap: wrap;
}

.logos img {
  height: 20px;
  width: auto;
  object-fit: contain;
}

b, strong {
  font-weight: 800;
}

/* --- Responsive für Mobile --- */
@media screen and (max-width: 768px) {
  body {
	  font-size: 16px;
	}
.grid {
    grid-template-columns: 1fr;
  }

  .portrait-container {
  width: 100%;
  height: 45vh;   /* statt 100% */
  overflow: hidden; /* verhindert Scrollen */
}

.portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center calc(0% - 50px); /* 30px nach oben */
  display: block;
}

  .content {
    padding: 20px 20px 20px 20px;
    font-size: 1rem;
  }

.content-inner {
  max-width:100%;
}
 h1 {
  font-family: "Figtree Black", Arial, sans-serif;
  margin: 0 0 1.2rem 0;
  line-height: 1.1;
  text-transform: uppercase; /* optional, für ein noch stärkeres Branding */
}
.portrait-container h2 {
  font-family: "Figtree Black", Arial, sans-serif;
  font-size: 22px;
  line-height:1.1;
  position: absolute;
  bottom: 0px;
  right: 30px;
  color: #fff;
  opacity: 80%;
  text-align:right;
}
.portrait-container h2 span {
  letter-spacing: 0.3rem;
  margin-right:-4px;
}
}