/* Layout angepasst nach Screenshots: Startseite Desktop, Mobile Startseite und Design-Unterseite */
@font-face {
  font-family: "HelveticaLocal";
  src: url("fonts/helvetica.woff2") format("woff2"),
       url("fonts/helvetica.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-inter: "Inter", Arial, sans-serif;
  --font-helvetica: "HelveticaLocal", Helvetica, Arial, sans-serif;
  --black: #000;
  --white: #fff;
  --orange: #e84e0f;
  --orange-2: #d7592a;
  --line: rgba(0, 0, 0, .55);
  --soft: #e0e0e0;
  --max: 1440px;
  --x: clamp(40px, 6vw, 110px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-inter);
  color: var(--black);
  background: var(--white);
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
p { line-height: 1.12; }
.text-black { color: var(--black); }
.text-rgb-232-78-15, .text-rgb-215-89-42 { color: var(--orange); }
.prototype-link { display: contents; color: inherit; text-decoration: none; }

/* kleine Navigation links oben */
.site-header {
  position: absolute;
  top: 38px;
  left: 52px;
  z-index: 50;
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
}
.logo { display: none; }
.main-nav { display: grid; gap: 4px; }
.main-nav a {
  width: fit-content;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--orange);
  background: transparent;
  font-size: 10px;
  line-height: 11px;
  letter-spacing: .7px;
  text-decoration: none;
}
.main-nav a:hover { color: var(--black); background: transparent; }

.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-left: var(--x);
  padding-right: var(--x);
  border: 0;
  background: var(--white);
}
.section-kicker {
  margin: 0;
  color: var(--black);
  font-size: 13px;
  line-height: 15px;
  letter-spacing: .45px;
  font-weight: 700;
}
h1, h2, h3 {
  margin: 0;
  font-family: var(--font-helvetica);
  font-weight: 700;
  line-height: .88;
  letter-spacing: -.045em;
  color: var(--black);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 18px;
  padding: 2px 12px;
  border: 1px solid var(--black);
  border-radius: 0;
  background: var(--white);
  color: var(--black);
  font: 10px/12px var(--font-inter);
  letter-spacing: .35px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}
.button:hover { background: var(--black); color: var(--white); }
.button-secondary { background: var(--white); color: var(--black); }

/* STARTSEITE / HERO */
.hero {
  position: relative;
  width: min(100%, var(--max));
  min-height: 760px;
  margin: 0 auto;
  padding: 112px var(--x) 0;
  display: block;
  overflow: hidden;
  background: var(--white);
}
.hero::before {
  content: "";
  position: absolute;
  left: -8vw;
  top: 315px;
  width: 120vw;
  height: 1px;
  background: var(--orange);
  transform: rotate(-10deg);
  transform-origin: left center;
}
.hero .section-kicker, .hero .button { display: none; }
.hero-content { position: relative; z-index: 2; display: block; }
.hero h1 {
  position: absolute;
  left: 108px;
  top: 315px;
  width: 470px;
  color: var(--orange);
  font-size: clamp(76px, 7.3vw, 116px);
  line-height: .78;
  letter-spacing: -.09em;
}
.hero h1::after {
  content: "Excellence in Practice";
  position: absolute;
  left: 610px;
  top: -125px;
  width: 350px;
  color: var(--orange);
  font-size: clamp(38px, 3vw, 54px);
  line-height: .78;
  letter-spacing: -.06em;
}
.hero-image {
  position: absolute;
  top: 88px;
  left: 285px;
  width: 760px;
  height: 455px;
  min-height: 0;
  overflow: visible;
  background: transparent;
  z-index: 1;
}
.hero-image img { width: 100%; height: 100%; object-fit: contain; }

/* ABOUT */
.about { padding-top: 70px; min-height: 520px; }
.about .section-kicker { display: none; }
.about .section-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  column-gap: 135px;
  align-items: start;
}
.about h2 {
  position: relative;
  max-width: 555px;
  padding-left: 34px;
  text-align: center;
  font-size: clamp(31px, 3.1vw, 47px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 400;
}
.about h2::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -34px;
  font-size: 28px;
  line-height: 1;
}
.text-column { display: block; }
.about .text-column { position: relative; min-height: 310px; }
.about .text-column p {
  font-size: 10px;
  line-height: 12px;
  letter-spacing: .45px;
  font-weight: 600;
}
.about .text-column p:first-child { width: 420px; margin-top: 88px; }
.about .text-column p:first-child::before {
  content: "About";
  display: block;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 13px;
  line-height: 15px;
}
.about .text-column p:nth-child(2) {
  width: 380px;
  margin-top: 112px;
  margin-left: -210px;
  text-align: center;
}

/* SKILLS */
.skills {
  position: relative;
  display: grid;
  grid-template-columns: .72fr 1fr;
  column-gap: 84px;
  min-height: 560px;
  padding-top: 60px;
  padding-bottom: 70px;
}
.skills::before {
  content: "";
  position: absolute;
  left: calc(var(--x) + 270px);
  top: 42px;
  width: 235px;
  height: 250px;
  background: url("img/element-1-1.svg") center/contain no-repeat;
}
.skills > .section-kicker {
  position: absolute;
  left: calc(var(--x) + 615px);
  top: 138px;
  font-size: 14px;
  line-height: 16px;
}
.skills .section-grid { grid-column: 2; display: block; width: 520px; margin-top: 132px; }
.skills h2 { display: none; }
.cards { display: grid; gap: 0; border-top: 1px solid var(--line); }
.card {
  min-height: auto;
  padding: 14px 0 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}
.card-label {
  margin: 0 0 7px;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: .15px;
  font-weight: 700;
  text-transform: none;
}
.card h3 { display: none; }
.card p:last-child {
  margin: 0;
  max-width: 470px;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: .1px;
  opacity: 1;
  text-transform: none;
}

/* WORK */
.work { padding-top: 95px; padding-bottom: 170px; }
.work .section-kicker { margin-bottom: 12px; font-size: 14px; line-height: 16px; }
.work-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 31px; }
.work-item { display: block; padding: 0; border: 0; }
.work-image {
  display: block;
  width: 100%;
  aspect-ratio: 1.61 / 1;
  min-height: 0;
  overflow: hidden;
  background: var(--soft);
}
.work-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
a.work-image:hover img { transform: scale(1.025); }
.work-content { display: block; padding-top: 8px; }
.work-number {
  display: inline;
  margin: 0;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0;
  font-weight: 400;
}
.work-content h3 {
  display: inline;
  margin: 0;
  font-family: var(--font-inter);
  font-size: 15px;
  line-height: 16px;
  letter-spacing: 0;
  font-weight: 700;
}
.work-title-link, .text-link { color: inherit; text-decoration: none; }
.work-title-link:hover, .text-link:hover { color: var(--orange); text-decoration: underline; text-underline-offset: .14em; }
.work-content ul {
  display: grid;
  gap: 1px;
  margin-top: 5px;
  padding: 0;
  list-style: none;
  max-width: 100%;
  font-size: 10px;
  line-height: 12px;
  letter-spacing: .25px;
}
.work-content li::before { content: "→ "; }
.text-link { display: none; }

/* CONNECT */
.connect {
  position: relative;
  width: min(100%, var(--max));
  min-height: 470px;
  margin: 0 auto;
  padding: 0 var(--x) 135px;
  overflow: visible;
  background: var(--white);
  color: var(--black);
  text-align: center;
}
.connect::before {
  content: "";
  position: absolute;
  left: -12vw;
  top: 45px;
  width: 112vw;
  height: 1px;
  background: var(--orange);
  transform: rotate(4deg);
  transform-origin: left center;
}
.connect .section-kicker { display: none; }
.connect-background {
  position: relative;
  width: 210px;
  height: 225px;
  margin: 0 auto 12px;
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}
.connect-background img { width: 100%; height: 100%; object-fit: contain; }
.connect .section-grid { display: block; }
.connect h2 {
  margin: 0 auto 8px;
  font-family: var(--font-inter);
  font-size: 15px;
  line-height: 17px;
  letter-spacing: 0;
  font-weight: 700;
}
.contact-area { display: block; }
.contact-form { display: grid; gap: 4px; width: 160px; margin: 0 auto; }
.contact-form label { display: none; }
.contact-form input, .contact-form textarea {
  height: 18px;
  width: 100%;
  border: 1px solid var(--black);
  padding: 1px 6px;
  color: var(--black);
  background: transparent;
  font: inherit;
  font-size: 10px;
  line-height: 12px;
  text-transform: none;
}
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus { outline: 1px solid var(--black); outline-offset: 1px; }
.contact-form .button { width: 100%; order: -1; }
.contact-links { display: grid; gap: 4px; width: 160px; margin: 4px auto 0; }
.contact-links .button { width: 100%; }
.site-footer {
  position: relative;
  z-index: 2;
  display: block;
  width: 160px;
  margin: -132px auto 0;
  padding: 0 0 72px;
  border: 0;
  background: transparent;
  text-align: center;
  font-size: 8px;
  line-height: 11px;
  letter-spacing: .3px;
  text-transform: none;
}
.site-footer a { display: none; }

.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* DESIGN / PROJEKTUNTERSEITEN */
.project-page { background: var(--white); color: var(--black); }
.project-page .site-header { display: none; }
.project-main { width: 100%; min-height: 100vh; padding: 70px 0 110px; }
.project-main::before {
  content: "";
  display: block;
  height: 138px;
  margin-top: -70px;
  margin-bottom: 55px;
  background: var(--black);
}
.project-hero, .project-details, .project-bottom-nav {
  width: min(776px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}
.project-images { display: block; width: 100%; }
.project-images figure { margin: 0; width: 100%; min-height: 0; height: auto; overflow: hidden; background: var(--soft); }
.project-images img { width: 100%; height: auto; object-fit: contain; }
.project-intro { position: relative; display: block; padding: 0; border: 0; }
.project-intro .section-kicker {
  position: absolute;
  left: 0;
  top: 42px;
  color: var(--black);
  font-size: 10px;
  line-height: 12px;
  letter-spacing: .25px;
}
.project-intro h1 {
  margin-top: 0;
  font-family: var(--font-inter);
  font-size: 38px;
  line-height: 36px;
  letter-spacing: -.045em;
  font-weight: 700;
}
.round-button {
  position: fixed;
  right: 58px;
  top: 178px;
  z-index: 30;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--black);
  border-radius: 50%;
  color: var(--black);
  background: var(--white);
  text-decoration: none;
  font-size: 28px;
  line-height: 1;
}
.round-button:hover { background: var(--black); color: var(--white); }
.project-details { display: block; padding: 0; border: 0; }
.project-description { display: block; max-width: 100%; margin-top: 18px; }
.project-description p {
  margin: 0;
  max-width: 760px;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: .1px;
  text-transform: uppercase;
}
.project-description p + p { margin-top: 0; }
.project-description .button {
  margin-top: 72px;
  padding: 0;
  border: 0;
  min-height: 0;
  font-size: 10px;
  line-height: 12px;
  text-decoration: underline;
  background: transparent;
}
.project-description .button:hover { color: var(--orange); background: transparent; }
.project-meta { display: block; margin-top: 46px; padding: 0; border: 0; background: transparent; }
.project-meta p {
  margin: 0;
  max-width: 760px;
  font-family: var(--font-inter);
  font-size: 28px;
  line-height: 34px;
  letter-spacing: -.015em;
  text-transform: uppercase;
}
.project-bottom-nav { display: flex; justify-content: center; padding-top: 135px; }
.project-bottom-nav .button {
  width: 26px;
  height: 26px;
  min-height: 0;
  padding: 0;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-size: 0;
  background: transparent;
}
.project-bottom-nav .button::before { content: "⌃"; font-size: 14px; line-height: 1; }
.project-bottom-nav .button + .button { display: none; }

/* Knowledge Transfer / Impressum bleiben funktional */
.knowledge-hero { display: grid; gap: 32px; }
.knowledge-visual { min-height: 52vh; display: grid; place-items: center; padding: 48px; overflow: hidden; background: var(--white); border: 1px solid rgba(0,0,0,.16); }
.knowledge-visual img { width: min(760px, 90%); max-height: 58vh; object-fit: contain; }
.publications-section { padding: 72px 0; border-bottom: 1px solid rgba(0,0,0,.16); }
.publications-section h2 { max-width: 980px; margin-bottom: 32px; }
.publications-grid { display: grid; grid-template-columns: repeat(2, minmax(260px, 1fr)); gap: 18px; }
.publication-card { display: grid; grid-template-columns: 160px 1fr; gap: 20px; align-items: start; min-height: 260px; padding: 20px; border: 1px solid rgba(0,0,0,.16); background: var(--white); }
.publication-card > img { width: 100%; max-height: 220px; object-fit: contain; }
.publication-card h3 { font-size: clamp(24px, 3vw, 42px); }
.publication-authors { margin: 0 0 16px; font-size: 14px; letter-spacing: .04em; }
.publication-authors a { text-decoration: underline; text-underline-offset: .16em; }
.publisher-logo { width: 120px; max-height: 80px; object-fit: contain; margin-top: 24px; }
.legal-page { background: var(--white); color: var(--black); }
.legal-main { padding: 32px; }
.legal-topbar { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; padding: 32px 0 48px; }
.legal-content { max-width: 1120px; padding-bottom: 72px; border-bottom: 1px solid rgba(0,0,0,.16); }
.legal-content h1 { margin-bottom: 56px; }
.legal-section { display: grid; grid-template-columns: minmax(240px,.8fr) minmax(280px,1.2fr); gap: 48px; padding: 40px 0; border-top: 1px solid rgba(0,0,0,.16); }
.legal-section h2 { font-size: clamp(28px, 4vw, 54px); }
.legal-section h3 { margin: 36px 0 12px; font-size: clamp(22px, 2.4vw, 34px); letter-spacing: -.04em; }
.legal-section h3:first-of-type { margin-top: 0; }
.legal-section p, .legal-section address { margin: 0; font-size: clamp(18px, 1.7vw, 24px); line-height: 1.35; text-transform: none; font-style: normal; }
.legal-section address a { text-decoration: underline; text-underline-offset: .16em; }

@media (max-width: 1100px) {
  :root { --x: 52px; }
  .hero { min-height: 640px; }
  .hero h1 { left: 84px; top: 280px; }
  .hero h1::after { left: 470px; top: -105px; }
  .hero-image { left: 210px; width: 650px; }
  .about .section-grid { column-gap: 70px; }
  .work-list { gap: 22px; }
  .project-main::before { height: 110px; }
  .round-button { right: 36px; top: 145px; }
}

/* Mobile Startseite nach Screenshot: schmale mittige Spalte */
@media (max-width: 760px) {
  :root { --mobile-col: min(260px, calc(100vw - 40px)); --x: calc((100vw - var(--mobile-col)) / 2); }
  body { text-transform: uppercase; }
  .site-header { top: 24px; left: var(--x); }
  .main-nav a { font-size: 8px; line-height: 9px; letter-spacing: .45px; }
  .hero, .section, .connect { width: var(--mobile-col); padding-left: 0; padding-right: 0; }
  .hero { min-height: 330px; padding-top: 70px; overflow: visible; }
  .hero::before { top: 122px; left: calc(-1 * var(--x)); width: 100vw; transform: rotate(-11deg); }
  .hero h1 { left: 0; top: 128px; width: 154px; max-width: 154px; font-size: 32px; line-height: .78; letter-spacing: -.09em; }
  .hero h1::after { left: 102px; top: 38px; width: 102px; font-size: 16px; line-height: .82; letter-spacing: -.06em; }
  .hero-image { top: 44px; left: 31px; width: 228px; height: 160px; }
  .about { min-height: 360px; padding-top: 22px; }
  .about .section-grid { display: block; }
  .about h2 { width: 184px; margin: 0 auto; padding-left: 0; font-size: 18px; line-height: .98; letter-spacing: -.05em; text-align: center; }
  .about h2::before { display: none; }
  .about .text-column { min-height: 250px; }
  .about .text-column p { font-size: 7px; line-height: 8px; letter-spacing: .25px; }
  .about .text-column p:first-child { width: 84px; margin-top: 84px; margin-left: 0; }
  .about .text-column p:first-child::before { margin-bottom: 5px; font-size: 8px; line-height: 9px; }
  .about .text-column p:nth-child(2) { width: 72px; margin-top: -8px; margin-left: auto; text-align: right; }
  .skills { display: block; min-height: 435px; padding-top: 55px; padding-bottom: 45px; }
  .skills::before { left: 14px; top: 8px; width: 102px; height: 112px; }
  .skills > .section-kicker { position: static; margin: 115px 0 4px; font-size: 8px; line-height: 9px; }
  .skills .section-grid { display: block; width: 100%; margin-top: 0; }
  .cards { border-top: 1px solid rgba(0,0,0,.45); }
  .card { padding: 8px 0 10px; }
  .card-label { margin-bottom: 3px; font-size: 7px; line-height: 8px; }
  .card p:last-child { max-width: 100%; font-size: 6px; line-height: 7px; letter-spacing: .05px; }
  .work { padding-top: 35px; padding-bottom: 130px; }
  .work .section-kicker { margin-bottom: 5px; font-size: 8px; line-height: 9px; }
  .work-list { display: block; }
  .work-item { margin-bottom: 36px; }
  .work-image { aspect-ratio: 1.62 / 1; }
  .work-content { padding-top: 5px; }
  .work-number { font-size: 7px; line-height: 8px; }
  .work-content h3 { font-size: 8px; line-height: 9px; }
  .work-content ul { margin-top: 3px; font-size: 6px; line-height: 7px; letter-spacing: .1px; }
  .connect { min-height: 360px; padding-bottom: 92px; }
  .connect::before { top: 86px; left: calc(-1 * var(--x)); width: 100vw; transform: rotate(5deg); }
  .connect-background { width: 120px; height: 150px; margin-bottom: 6px; }
  .connect h2 { font-size: 8px; line-height: 9px; margin-bottom: 5px; }
  .contact-form, .contact-links, .site-footer { width: 92px; }
  .contact-form { gap: 2px; }
  .contact-form input, .contact-form textarea, .button { min-height: 0; height: 11px; padding: 0 4px; font-size: 5.5px; line-height: 6px; letter-spacing: .1px; }
  .contact-links { gap: 2px; margin-top: 2px; }
  .site-footer { margin-top: -91px; padding-bottom: 40px; font-size: 4.8px; line-height: 6px; }
  .project-main { padding: 0 0 70px; }
  .project-main::before { height: 86px; margin: 0 0 36px; }
  .project-hero, .project-details, .project-bottom-nav { width: min(100% - 34px, 520px); }
  .project-intro h1 { font-size: 28px; line-height: 27px; }
  .project-intro .section-kicker { position: static; margin-top: 2px; font-size: 8px; line-height: 9px; }
  .round-button { width: 30px; height: 30px; right: 18px; top: 104px; font-size: 22px; }
  .project-description p { font-size: 10px; line-height: 14px; }
  .project-description .button { margin-top: 32px; height: auto; font-size: 8px; line-height: 9px; }
  .project-meta { margin-top: 32px; }
  .project-meta p { font-size: 18px; line-height: 21px; }
  .project-bottom-nav { padding-top: 70px; }
  .publications-grid, .legal-section { grid-template-columns: 1fr; }
  .publication-card { grid-template-columns: 1fr; }
}

/* ------------------------------------------------------------
   Knowledge Transfer – angepasst nach Screenshot
   ------------------------------------------------------------ */

.knowledge-page {
  --kt-width: 620px;
  background: var(--white, #fff);
}

.knowledge-page .project-main {
  padding: 0 0 96px;
}

.knowledge-page .project-main::before {
  height: 112px;
  margin: 0 0 54px;
  background: #000;
}

.knowledge-page .knowledge-hero,
.knowledge-page .project-details,
.knowledge-page .publications-section,
.knowledge-page .project-bottom-nav {
  width: min(var(--kt-width), calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

.knowledge-page .knowledge-hero {
  display: block;
}

.knowledge-page .knowledge-visual {
  width: 100%;
  height: 600px;
  min-height: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}

.knowledge-page .knowledge-visual img {
  width: min(520px, 92%);
  max-width: none;
  max-height: none;
  height: auto;
  object-fit: contain;
  margin-top: -38px;
}

.knowledge-page .project-intro {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
}

.knowledge-page .project-intro::after {
  content: "+";
  position: absolute;
  top: 2px;
  right: 4px;
  font-family: var(--font-family-inter, Arial, sans-serif);
  font-size: 30px;
  line-height: 1;
  font-weight: 400;
}

.knowledge-page .project-intro h1 {
  max-width: calc(100% - 48px);
  font-family: var(--font-family-inter, Arial, sans-serif);
  font-size: 36px;
  line-height: 34px;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.knowledge-page .project-intro .section-kicker {
  position: static;
  margin: 2px 0 0;
  color: #000;
  font-size: 9px;
  line-height: 11px;
  letter-spacing: 0.3px;
  font-weight: 600;
}

.knowledge-page .project-details {
  display: block;
  padding: 0;
  border: 0;
}

.knowledge-page .project-description {
  display: block;
  max-width: 100%;
  margin-top: 4px;
}

.knowledge-page .project-description p {
  margin: 0;
  max-width: 100%;
  font-family: var(--font-family-inter, Arial, sans-serif);
  font-size: 10.5px;
  line-height: 15px;
  letter-spacing: 0.12px;
  font-weight: 600;
  text-transform: uppercase;
}

.knowledge-page .project-description p + p {
  margin-top: 0;
}

.knowledge-page .project-meta {
  display: none;
}

.knowledge-page .round-button {
  position: fixed;
  top: 150px;
  right: 50px;
  width: 34px;
  height: 34px;
  border: 1px solid #000;
  background: #fff;
  color: #000;
  font-size: 24px;
  z-index: 40;
}

.knowledge-page .publications-section {
  padding: 72px 0 0;
  border: 0;
}

.knowledge-page .publications-section > .section-kicker,
.knowledge-page .publications-section > h2 {
  display: none;
}

.knowledge-page .publications-grid {
  display: block;
}

.knowledge-page .publication-card {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 24px;
  align-items: center;
  min-height: 0;
  margin: 0 0 58px;
  padding: 0;
  border: 0;
  background: transparent;
}

.knowledge-page .publication-card > img {
  width: 170px;
  height: 210px;
  max-height: none;
  object-fit: contain;
  object-position: left center;
}

.knowledge-page .publication-authors {
  margin: 0 0 8px;
  font-family: var(--font-family-inter, Arial, sans-serif);
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.2px;
  font-weight: 500;
  text-transform: uppercase;
}

.knowledge-page .publication-authors a {
  text-decoration: none;
}

.knowledge-page .publication-card h3 {
  max-width: 430px;
  font-family: var(--font-family-inter, Arial, sans-serif);
  font-size: 27px;
  line-height: 31px;
  letter-spacing: -0.04em;
  font-weight: 400;
}

.knowledge-page .publisher-logo {
  display: none;
}

.knowledge-page .project-bottom-nav {
  display: flex;
  justify-content: center;
  padding-top: 78px;
}

.knowledge-page .project-bottom-nav .button {
  width: 24px;
  height: 24px;
  min-height: 0;
  padding: 0;
  border: 1px solid var(--orange, #e84e0f);
  border-radius: 50%;
  color: var(--orange, #e84e0f);
  background: transparent;
  font-size: 0;
}

.knowledge-page .project-bottom-nav .button::before {
  content: "⌃";
  font-size: 13px;
  line-height: 1;
}

.knowledge-page .project-bottom-nav .button + .button {
  display: none;
}

@media (max-width: 760px) {
  .knowledge-page {
    --kt-width: min(280px, calc(100vw - 36px));
  }

  .knowledge-page .project-main::before {
    height: 86px;
    margin-bottom: 36px;
  }

  .knowledge-page .knowledge-visual {
    height: 365px;
  }

  .knowledge-page .knowledge-visual img {
    width: min(300px, 105%);
    margin-top: -20px;
  }

  .knowledge-page .project-intro h1 {
    font-size: 25px;
    line-height: 24px;
  }

  .knowledge-page .project-intro::after {
    font-size: 22px;
  }

  .knowledge-page .project-description p {
    font-size: 8px;
    line-height: 11px;
  }

  .knowledge-page .round-button {
    top: 104px;
    right: 18px;
    width: 30px;
    height: 30px;
    font-size: 22px;
  }

  .knowledge-page .publications-section {
    padding-top: 48px;
  }

  .knowledge-page .publication-card {
    grid-template-columns: 92px 1fr;
    gap: 14px;
    margin-bottom: 38px;
  }

  .knowledge-page .publication-card > img {
    width: 92px;
    height: 122px;
  }

  .knowledge-page .publication-authors {
    margin-bottom: 5px;
    font-size: 7px;
    line-height: 8px;
  }

  .knowledge-page .publication-card h3 {
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.035em;
  }

  .knowledge-page .project-bottom-nav {
    padding-top: 48px;
  }
}

/* ------------------------------------------------------------
   Impressum – angepasst nach Screenshot
   ------------------------------------------------------------ */

.impressum-page {
  background: #fff;
  color: #000;
}

.impressum-page .site-header {
  display: none;
}

.impressum-page .legal-main {
  position: relative;
  min-height: 100vh;
  padding: 0 0 120px;
}

.impressum-page .legal-main::before {
  content: "";
  position: absolute;
  left: -6vw;
  top: 300px;
  width: 112vw;
  height: 1px;
  background: var(--color-orange, #e84e0f);
  transform: rotate(-7deg);
  transform-origin: left center;
  z-index: 0;
}

.impressum-page .legal-close {
  position: fixed;
  top: 42px;
  right: 52px;
  z-index: 20;
  width: 34px;
  height: 34px;
  border: 1px solid #000;
  border-radius: 50%;
  background: #fff;
  color: #000;
  font-size: 24px;
  line-height: 1;
  text-decoration: none;
}

.impressum-page .impressum-visual {
  position: relative;
  z-index: 1;
  width: min(330px, 42vw);
  height: 360px;
  margin: 100px auto 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
}

.impressum-page .impressum-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.impressum-page .legal-content {
  position: relative;
  z-index: 2;
  width: min(430px, calc(100% - 40px));
  max-width: none;
  margin: 48px auto 0;
  padding: 0;
  border: 0;
}

.impressum-page .legal-section {
  display: block;
  padding: 0;
  border: 0;
}

.impressum-page .legal-section + .legal-section {
  margin-top: 42px;
}

.impressum-page .legal-content h1,
.impressum-page .legal-content h2,
.impressum-page .legal-content h3 {
  font-family: var(--font-family-inter, Arial, sans-serif);
  letter-spacing: 0;
  line-height: 1.05;
  font-weight: 700;
}

.impressum-page .legal-content h1 {
  margin: 0;
  font-size: 13px;
  text-transform: uppercase;
}

.impressum-page .legal-content h2 {
  margin: 0;
  font-size: 15px;
  text-transform: uppercase;
}

.impressum-page .legal-content h3 {
  margin: 0 0 2px;
  font-size: 12px;
  text-transform: uppercase;
}

.impressum-page .legal-section p,
.impressum-page .legal-section address {
  margin: 0;
  font-family: var(--font-family-inter, Arial, sans-serif);
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.2px;
  font-weight: 500;
  font-style: normal;
  text-transform: uppercase;
}

.impressum-page .legal-intro p {
  margin-bottom: 22px;
}

.impressum-page .legal-intro address {
  margin-top: 0;
}

.impressum-page .legal-section address a {
  color: inherit;
  text-decoration: none;
}

.impressum-page .legal-section h3:first-of-type {
  margin-top: 13px;
}

.impressum-page .legal-section h3:not(:first-of-type) {
  margin-top: 28px;
}

.impressum-page .legal-section h3 + p {
  margin-bottom: 18px;
}

.impressum-page .legal-section p + p {
  margin-top: 0;
}

.impressum-page .legal-bottom-nav {
  width: min(430px, calc(100% - 40px));
  margin: 158px auto 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.impressum-page .legal-bottom-nav .button {
  width: 24px;
  height: 24px;
  min-height: 0;
  padding: 0;
  border: 1px solid var(--color-orange, #e84e0f);
  border-radius: 50%;
  color: var(--color-orange, #e84e0f);
  background: transparent;
  font-size: 0;
}

.impressum-page .legal-bottom-nav .button::before {
  content: "⌃";
  font-size: 13px;
  line-height: 1;
}

@media (max-width: 760px) {
  .impressum-page .legal-main {
    padding-bottom: 80px;
  }

  .impressum-page .legal-main::before {
    top: 185px;
    transform: rotate(-8deg);
  }

  .impressum-page .legal-close {
    top: 22px;
    right: 18px;
    width: 30px;
    height: 30px;
    font-size: 22px;
  }

  .impressum-page .impressum-visual {
    width: min(190px, 54vw);
    height: 235px;
    margin-top: 58px;
  }

  .impressum-page .legal-content {
    width: min(280px, calc(100% - 36px));
    margin-top: 35px;
  }

  .impressum-page .legal-section + .legal-section {
    margin-top: 30px;
  }

  .impressum-page .legal-content h1,
  .impressum-page .legal-content h2 {
    font-size: 10px;
  }

  .impressum-page .legal-content h3,
  .impressum-page .legal-section p,
  .impressum-page .legal-section address {
    font-size: 8px;
    line-height: 9.5px;
    letter-spacing: 0.1px;
  }

  .impressum-page .legal-section h3:not(:first-of-type) {
    margin-top: 18px;
  }

  .impressum-page .legal-section h3 + p {
    margin-bottom: 12px;
  }

  .impressum-page .legal-bottom-nav {
    margin-top: 85px;
  }
}


/* Clickable publication covers */
.publication-cover-link {
  display: block;
  width: fit-content;
  text-decoration: none;
}

.publication-cover-link img {
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.publication-cover-link:hover img {
  transform: scale(1.025);
  opacity: 0.86;
}


/* ------------------------------------------------------------
   Custom Cursor Animation
   Kreis + Punkt + weicher Nachlauf.
   ------------------------------------------------------------ */

@media (pointer: fine) {
  body.custom-cursor-enabled,
  body.custom-cursor-enabled a,
  body.custom-cursor-enabled button,
  body.custom-cursor-enabled input,
  body.custom-cursor-enabled textarea,
  body.custom-cursor-enabled select,
  body.custom-cursor-enabled label {
    cursor: none;
  }

  .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0;
    will-change: transform, opacity, width, height, border-color, background-color;
  }

  body.custom-cursor-visible .custom-cursor {
    opacity: 1;
  }

  .custom-cursor-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-orange, #e84e0f);
    transition: opacity 0.18s ease, width 0.18s ease, height 0.18s ease, background-color 0.18s ease;
  }

  .custom-cursor-ring {
    width: 34px;
    height: 34px;
    border: 1px solid var(--color-orange, #e84e0f);
    border-radius: 50%;
    background: rgba(232, 78, 15, 0.02);
    transition:
      width 0.22s ease,
      height 0.22s ease,
      border-color 0.22s ease,
      background-color 0.22s ease,
      opacity 0.22s ease;
  }

  .custom-cursor-trail {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(232, 78, 15, 0.25);
    transition: opacity 0.25s ease;
  }

  body.custom-cursor-hover .custom-cursor-ring {
    width: 62px;
    height: 62px;
    background: rgba(232, 78, 15, 0.07);
    border-color: var(--color-orange, #e84e0f);
  }

  body.custom-cursor-hover .custom-cursor-dot {
    width: 3px;
    height: 3px;
    opacity: 0.55;
  }

  body.custom-cursor-hover .custom-cursor-trail {
    opacity: 0.28;
  }

  body.custom-cursor-pressed .custom-cursor-ring {
    width: 24px;
    height: 24px;
    background: rgba(232, 78, 15, 0.16);
  }

  body.custom-cursor-pressed .custom-cursor-dot {
    width: 9px;
    height: 9px;
  }
}

@media (pointer: coarse), (prefers-reduced-motion: reduce) {
  .custom-cursor {
    display: none !important;
  }
}


/* ------------------------------------------------------------
   Custom Cursor Override: roter Punkt-Schweif
   ------------------------------------------------------------ */

@media (pointer: fine) {
  body.custom-cursor-trail-mode .custom-cursor-dot,
  body.custom-cursor-trail-mode .custom-cursor-ring,
  body.custom-cursor-trail-mode .custom-cursor-trail {
    display: none !important;
  }

  body.custom-cursor-trail-mode .custom-cursor-particle {
    width: 6px;
    height: 6px;
    border: 0;
    border-radius: 50%;
    background: var(--color-orange, #e84e0f);
    opacity: 0;
    transform: translate3d(-100px, -100px, 0);
    transition:
      width 0.18s ease,
      height 0.18s ease,
      opacity 0.22s ease,
      background-color 0.18s ease;
  }

  body.custom-cursor-visible.custom-cursor-trail-mode .custom-cursor-particle {
    opacity: var(--cursor-opacity);
  }

  body.custom-cursor-hover.custom-cursor-trail-mode .custom-cursor-particle {
    width: 8px;
    height: 8px;
    background: var(--color-orange, #e84e0f);
  }

  body.custom-cursor-pressed.custom-cursor-trail-mode .custom-cursor-particle {
    width: 7px;
    height: 7px;
    background: var(--color-orange, #e84e0f);
  }

  body.custom-cursor-trail-mode .custom-cursor-particle:nth-of-type(odd) {
    opacity: calc(var(--cursor-opacity) * 0.92);
  }
}

/* ------------------------------------------------------------
   Änderungsliste 01 – Layout, Abstände, Links, Buttons
   Basis: Cursor-Schweif mit Hover-Vergrößerung
   ------------------------------------------------------------ */

/* STARTSEITE / HERO: Navigation oben links sticky/fixed */
.site-header {
  position: fixed !important;
  top: 38px !important;
  left: 52px !important;
  z-index: 9000 !important;
}

/* STARTSEITE / HERO: Bild ca. 100% größer */
.hero {
  min-height: 920px;
}

.hero-image {
  top: 12px !important;
  left: 80px !important;
  width: 1460px !important;
  height: 875px !important;
  max-width: none !important;
}

.hero-image img {
  object-fit: contain !important;
}

/* STARTSEITE / HERO: großer linker Text ist jetzt "strategic visions".
   Die rechte kleinere Headline bleibt "Excellence in Practice". */
.hero h1 {
  text-transform: uppercase;
}

/* STARTSEITE / ABOUT: Textblock rechtsbündig */
.about h2 {
  text-align: right !important;
}

/* STARTSEITE / SKILLS: Element 1.1 durch Portrait ersetzen */
.skills::before {
  background-image: url("img/Gerald-Portrait-03.png") !important;
  width: 350px !important;
  height: 430px !important;
  top: 28px !important;
  left: calc(var(--page-x) + 185px) !important;
  background-size: cover !important;
  background-position: center center !important;
  transform: none !important;
  opacity: 1 !important;
}

/* STARTSEITE / CONNECT: nur drei Buttons, größerer Abstand */
.contact-area.contact-buttons-only {
  display: grid !important;
  gap: 6px !important;
  width: 160px !important;
  margin: 0 auto !important;
}

.contact-area.contact-buttons-only .button {
  width: 100% !important;
}

/* ALLE SEITEN: Fließtexte ca. 30% größer */
.about .text-column p {
  font-size: 13px !important;
  line-height: 15.6px !important;
}

.card p:last-child {
  font-size: 13px !important;
  line-height: 15.6px !important;
}

.work-content ul {
  font-size: 13px !important;
  line-height: 15.6px !important;
}

.project-description p {
  font-size: 18px !important;
  line-height: 26px !important;
}

.knowledge-page .project-description p {
  font-size: 13.7px !important;
  line-height: 19.5px !important;
}

.legal-section p,
.legal-section address {
  font-size: 15.6px !important;
  line-height: 18.2px !important;
}

.impressum-page .legal-section p,
.impressum-page .legal-section address {
  font-size: 15.6px !important;
  line-height: 18.2px !important;
}

/* DESIGN, LECTURING, KNOWLEDGE TRANSFER, IMPRESSUM:
   X-Button oben rechts immer invers bei Hover */
.round-button:hover,
.impressum-page .legal-close:hover {
  background: #000 !important;
  color: #fff !important;
  border-color: #000 !important;
}

/* DESIGN, LECTURING, KNOWLEDGE TRANSFER, IMPRESSUM:
   Unterer Kreisbutton immer invers bei Hover */
.project-bottom-nav .button:hover,
.impressum-page .legal-bottom-nav .button:hover {
  background: var(--color-orange, #e84e0f) !important;
  color: #fff !important;
  border-color: var(--color-orange, #e84e0f) !important;
}

/* Der Pfeil im unteren Kreis soll beim Hover weiß bleiben */
.project-bottom-nav .button:hover::before,
.impressum-page .legal-bottom-nav .button:hover::before {
  color: #fff !important;
}

@media (max-width: 1100px) {
  .hero {
    min-height: 780px;
  }

  .hero-image {
    top: 18px !important;
    left: 0 !important;
    width: 1180px !important;
    height: 705px !important;
  }

  .skills::before {
    left: calc(var(--page-x) + 95px) !important;
    width: 300px !important;
    height: 380px !important;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 24px !important;
    left: var(--page-x) !important;
  }

  .hero {
    min-height: 420px !important;
  }

  .hero-image {
    top: 2px !important;
    left: -88px !important;
    width: 520px !important;
    height: 365px !important;
  }

  .hero h1 {
    top: 154px !important;
  }

  .about h2 {
    text-align: right !important;
  }

  .about .text-column p {
    font-size: 9.1px !important;
    line-height: 10.9px !important;
  }

  .skills::before {
    left: 0 !important;
    top: 0 !important;
    width: 138px !important;
    height: 170px !important;
  }

  .skills > .section-kicker {
    margin-top: 175px !important;
  }

  .card p:last-child {
    font-size: 7.8px !important;
    line-height: 9.4px !important;
  }

  .work-content ul {
    font-size: 7.8px !important;
    line-height: 9.4px !important;
  }

  .contact-area.contact-buttons-only {
    gap: 3px !important;
    width: 92px !important;
  }

  .project-description p {
    font-size: 13px !important;
    line-height: 18.2px !important;
  }

  .knowledge-page .project-description p {
    font-size: 10.4px !important;
    line-height: 14.3px !important;
  }

  .legal-section p,
  .legal-section address,
  .impressum-page .legal-section p,
  .impressum-page .legal-section address {
    font-size: 10.4px !important;
    line-height: 12.4px !important;
  }
}

/* ------------------------------------------------------------
   Änderungsliste 02 – Hero-Linie, Skills-Portrait, Connect, KT
   ------------------------------------------------------------ */

/* STARTSEITE / HERO: rote Linie oberhalb des Bildes löschen */
.hero::before {
  display: none !important;
  content: none !important;
}

/* STARTSEITE / SKILLS: Pseudo-Hintergrund deaktivieren, echtes Portrait anzeigen */
.skills::before {
  display: none !important;
  content: none !important;
}

.skills {
  position: relative !important;
}

.skills-portrait {
  position: absolute;
  left: calc(var(--page-x) + 185px);
  top: 28px;
  width: 350px;
  height: 430px;
  object-fit: cover;
  object-position: center;
  display: block;
  z-index: 1;
}

/* Textblöcke bleiben rechts daneben */
.skills > .section-kicker,
.skills .section-grid {
  position: relative;
  z-index: 2;
}

/* STARTSEITE / ABOUT: zweiter Textblock linksbündig und weiter rechts */
.about .text-column p:nth-child(2) {
  text-align: left !important;
  margin-left: -80px !important;
  width: 430px !important;
}

/* STARTSEITE / CONNECT: Buttons 75% größer und Abstand bleibt vergrößert */
.contact-area.contact-buttons-only {
  width: 280px !important;
  gap: 10px !important;
}

.contact-area.contact-buttons-only .button {
  min-height: 32px !important;
  padding: 6px 20px !important;
  font-size: 17.5px !important;
  line-height: 20px !important;
  letter-spacing: 0.55px !important;
}

/* STARTSEITE / CONNECT: Bild 100% größer */
.connect-background {
  width: 420px !important;
  height: 450px !important;
  margin-bottom: 22px !important;
}

/* CONNECT-Layout bei größerem Bild etwas höher machen */
.connect {
  min-height: 760px !important;
}

/* KNOWLEDGE TRANSFER: Fließtext-Schriftschnitt an Design/Lecturing angleichen,
   keine sichtbaren harten Umbrüche */
.knowledge-page .project-description p {
  font-family: var(--font-family-inter, Arial, sans-serif) !important;
  font-weight: 400 !important;
  letter-spacing: 0.1px !important;
  text-transform: uppercase !important;
  white-space: normal !important;
}

/* DESIGN, LECTURING, KNOWLEDGE TRANSFER: Hero-Bilder nicht abschneiden */
.project-images figure {
  background: var(--color-soft, #e0e0e0);
}

.project-images img {
  display: block !important;
}

/* Hover-Inversion robuste Version */
.round-button:hover,
.impressum-page .legal-close:hover {
  background: #000 !important;
  color: #fff !important;
  border-color: #000 !important;
}

.project-bottom-nav .button:hover,
.impressum-page .legal-bottom-nav .button:hover {
  background: var(--color-orange, #e84e0f) !important;
  color: #fff !important;
  border-color: var(--color-orange, #e84e0f) !important;
}

/* Responsive */
@media (max-width: 1100px) {
  .skills-portrait {
    left: calc(var(--page-x) + 95px);
    width: 300px;
    height: 380px;
  }

  .connect-background {
    width: 360px !important;
    height: 390px !important;
  }
}

@media (max-width: 760px) {
  .skills-portrait {
    left: 0;
    top: 0;
    width: 138px;
    height: 170px;
  }

  .about .text-column p:nth-child(2) {
    width: 105px !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    text-align: left !important;
  }

  .contact-area.contact-buttons-only {
    width: 161px !important;
    gap: 5px !important;
  }

  .contact-area.contact-buttons-only .button {
    height: 19px !important;
    min-height: 19px !important;
    padding: 0 8px !important;
    font-size: 9.6px !important;
    line-height: 10px !important;
  }

  .connect-background {
    width: 240px !important;
    height: 300px !important;
    margin-bottom: 10px !important;
  }

  .connect {
    min-height: 530px !important;
  }
}

/* ------------------------------------------------------------
   Änderungsliste 03 – Skills-Portrait, Design-Hero, Knowledge
   ------------------------------------------------------------ */

/* STARTSEITE / SKILLS:
   Portrait mehr zur Mitte, Breite wie Work-Vorschaubilder */
.skills {
  --work-preview-width: calc((min(100vw, var(--page-max, 1440px)) - (2 * var(--page-x)) - 62px) / 3);
}

.skills-portrait {
  left: calc(var(--page-x) + 240px) !important;
  top: 34px !important;
  width: var(--work-preview-width) !important;
  height: calc(var(--work-preview-width) * 1.25) !important;
  object-fit: cover !important;
  object-position: center center !important;
}

/* Textblöcke weiterhin rechts daneben, aber mit sauberem Abstand zum Portrait */
.skills > .section-kicker {
  left: calc(var(--page-x) + 690px) !important;
}

.skills .section-grid {
  margin-left: 52px !important;
}

/* DESIGN:
   Nur ein Hero-Bild anzeigen, in der bestehenden Content-Spalte */
body:not(.knowledge-page) .project-images {
  display: block !important;
}

body:not(.knowledge-page) .project-images figure {
  width: 100% !important;
}

body:not(.knowledge-page) .project-images figure + figure {
  display: none !important;
}

/* KNOWLEDGE TRANSFER:
   Bild 30% kleiner und Text beginnt erst darunter */
.knowledge-page .knowledge-visual {
  height: auto !important;
  min-height: 0 !important;
  padding-bottom: 42px !important;
  align-items: center !important;
}

.knowledge-page .knowledge-visual img {
  width: min(364px, 70%) !important;
  margin-top: 0 !important;
  max-height: none !important;
}

.knowledge-page .project-intro {
  clear: both !important;
}

.knowledge-page .project-details {
  margin-top: 18px !important;
  clear: both !important;
}

.knowledge-page .project-description {
  margin-top: 18px !important;
}

.knowledge-page .project-description p {
  display: block !important;
  max-width: 100% !important;
  white-space: normal !important;
}

/* Letzten Umbruch entfernen: ein zusammenhängender Absatz */
.knowledge-page .project-description p + p {
  margin-top: 0 !important;
}

/* Responsive */
@media (max-width: 1100px) {
  .skills-portrait {
    left: calc(var(--page-x) + 145px) !important;
    width: min(330px, var(--work-preview-width)) !important;
    height: calc(min(330px, var(--work-preview-width)) * 1.25) !important;
  }

  .skills > .section-kicker {
    left: calc(var(--page-x) + 520px) !important;
  }

  .skills .section-grid {
    margin-left: 28px !important;
  }
}

@media (max-width: 760px) {
  .skills {
    --work-preview-width: var(--mobile-col);
  }

  .skills-portrait {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    width: var(--work-preview-width) !important;
    height: calc(var(--work-preview-width) * 0.62) !important;
    margin: 0 0 18px !important;
  }

  .skills > .section-kicker {
    position: static !important;
    margin-top: 0 !important;
  }

  .skills .section-grid {
    margin-left: 0 !important;
  }

  .knowledge-page .knowledge-visual {
    padding-bottom: 28px !important;
  }

  .knowledge-page .knowledge-visual img {
    width: min(210px, 70%) !important;
  }

  .knowledge-page .project-details {
    margin-top: 10px !important;
  }
}

/* ------------------------------------------------------------
   Änderungsliste 04 – Skills-Portrait mittig + Lecturing 2 Bilder
   ------------------------------------------------------------ */

/* STARTSEITE / SKILLS:
   Portrait als echtes Grid-Element neben den Textblöcken.
   Breite entspricht der Work-Vorschaubild-Breite. */
.skills {
  --work-preview-width: calc((min(100vw, var(--page-max, 1440px)) - (2 * var(--page-x)) - 62px) / 3);
  display: grid !important;
  grid-template-columns: var(--work-preview-width) 520px !important;
  column-gap: 42px !important;
  justify-content: center !important;
  align-items: start !important;
  min-height: 560px !important;
}

.skills-portrait {
  position: relative !important;
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  left: auto !important;
  top: auto !important;
  width: var(--work-preview-width) !important;
  height: calc(var(--work-preview-width) * 1.25) !important;
  margin: 0 !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  z-index: 2 !important;
}

/* Kicker und Textblöcke rechts neben dem Portrait */
.skills > .section-kicker {
  position: relative !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
  left: auto !important;
  top: auto !important;
  margin: 70px 0 14px !important;
}

.skills .section-grid {
  position: relative !important;
  grid-column: 2 !important;
  grid-row: 2 !important;
  display: block !important;
  width: 520px !important;
  margin: 0 !important;
}

/* LECTURING:
   Dort sollen wieder beide Hero-Bilder sichtbar sein.
   Die allgemeine Regel aus der Design-Anpassung wird nur für design.html angewendet. */
body.project-page:not(.knowledge-page) .project-images {
  display: block !important;
}

body.project-page:not(.knowledge-page) .project-images figure + figure {
  display: block !important;
  margin-top: 0 !important;
}

/* Nur die Design-Seite zeigt weiterhin ein einzelnes Bild.
   Das erkennt die Seite über den Title im Body nicht, daher über das erste GWA-Bild:
   Design hat nur noch eine Figure im HTML; diese Regel ist nur Absicherung. */
body.project-page .project-images figure:has(img[src="img/GWA-02-2.png"]) {
  display: none !important;
}

/* Lecturing-Bilder direkt untereinander wie in der vorherigen Vision */
body.project-page .project-images img[src="img/bildschirmfoto-2025-06-26-um-13-23-50-1.png"],
body.project-page .project-images img[src="img/bildschirmfoto-2025-06-25-um-16-34-39-1.png"] {
  display: block !important;
  width: 100% !important;
  height: auto !important;
  object-fit: contain !important;
}

/* Responsive */
@media (max-width: 1100px) {
  .skills {
    grid-template-columns: min(330px, var(--work-preview-width)) 1fr !important;
    column-gap: 34px !important;
    justify-content: start !important;
  }

  .skills-portrait {
    width: min(330px, var(--work-preview-width)) !important;
    height: calc(min(330px, var(--work-preview-width)) * 1.25) !important;
  }

  .skills .section-grid {
    width: min(520px, 100%) !important;
  }
}

@media (max-width: 760px) {
  .skills {
    display: block !important;
    --work-preview-width: var(--mobile-col);
  }

  .skills-portrait {
    position: relative !important;
    width: var(--work-preview-width) !important;
    height: calc(var(--work-preview-width) * 0.62) !important;
    margin: 0 auto 18px !important;
  }

  .skills > .section-kicker {
    position: static !important;
    margin: 0 0 5px !important;
  }

  .skills .section-grid {
    width: 100% !important;
    margin: 0 !important;
  }
}
