/* =========================================================
   0) DESIGN-TOKENS (Variablen / Theme)
   ========================================================= */
:root{
  /* Farben */
  --bg: #fdfdfd;
  --fg: #333333;
  --muted: #475569;
  --brand: #2f3e46;
  --brand-600: #24333a;
  --accent: #ffd166;

  --surface: #ffffff;
  --surface-soft: #f8f9fa;
  --surface-hero: #e9ecef;

  --border: #e5e7eb;
  --shadow-1: 0 2px 8px rgba(0,0,0,.08);
  --shadow-2: 0 6px 16px rgba(0,0,0,.12);
  --shadow-3: 0 8px 24px rgba(0,0,0,.15);

  /* Typo & Layout */
  --font: "Helvetica Neue", Arial, sans-serif;
  --radius: 12px;
  --radius-lg: 14px;
  --container: 1100px;
  --pad-x: 2rem;

  /* Breakpoints */
  --bp-md: 900px;
  --bp-sm: 768px;
}

/* Weniger Animationen, wenn vom System gewünscht */
@media (prefers-reduced-motion: reduce) {
  *{ animation: none !important; transition: none !important; }
}

/* =========================================================
   1) BASE / RESET / TYPO
   ========================================================= */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { margin: 0; padding: 0; }

body{
  font-family: var(--font);
  line-height: 1.6;
  background: var(--bg);
  color: var(--fg);
}

img{ display: block; max-width: 100%; height: auto; }

/* Links */
a{ color: var(--brand); text-decoration: none; }
a:hover{ color: var(--accent); }

/* Containers */
.container{ max-width: var(--container); margin: 0 auto; padding: 0 var(--pad-x); }

/* Utility */
.muted{ color: var(--muted); }

/* =========================================================
   2) NAVIGATION
   ========================================================= */
nav,
.site-nav {
  background: var(--brand);
  color: #fff;
  padding: 1rem;
  display: flex;
  justify-content: center;
  gap: 2rem;
}

nav a,
.site-nav a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

/* HIER fehlte die geschweifte Klammer */
.site-nav a.active {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-nav a:hover {
  opacity: 0.85;
  transition: opacity 0.2s ease-in-out;
}

/* =========================================================
   3) HERO / LANDING
   ========================================================= */
.hero{
  background: var(--surface-hero);
  padding: 4rem 2rem;
  margin-bottom: 2rem;
}
.hero-inner{
  display:flex; gap:2rem; align-items:center;
  max-width: var(--container);
  margin:0 auto; padding:0 var(--pad-x);
}
.hero-text{ max-width: 620px; }
.hero-text h1{ margin:0; font-size:2.2rem; color: var(--brand); }
.hero-text .subtitle{ font-style: italic; color:#666; margin:.5rem 0 1rem; }

/* Portrait global – TOP-Ausrichtung */
.hero-image img,
.avatar--round,
.avatar--rect{
  object-fit: cover;
  object-position: 50% 10%;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.hero-image img{
  width:220px; height:220px; border-radius:50%;
  transform: translateX(-1cm);
}

/* Statements unter dem Hero */
.statements{
  max-width: var(--container);
  margin: 2rem auto 4rem;
  padding: 0 var(--pad-x);
  display:flex; flex-wrap:wrap; justify-content:center; gap:1.5rem; text-align:center;
}
.statement{
  flex:1 1 250px;
  background: var(--surface);
  padding:1.5rem; border-radius: 8px; box-shadow: var(--shadow-1);
  color: var(--brand);
  transition: transform .3s ease, box-shadow .3s ease;
}
.statement:hover{ transform: translateY(-4px); box-shadow: var(--shadow-2); }

/* ==============================================
   4) Visionen – Layout: Bild links, Text rechts
   ============================================== */

.vision-section {
  max-width: 1000px;        /* gleiche Breite wie page-content */
  margin: 3rem auto;
  padding: 0 1rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

/* Linke Spalte: Bild + Bildunterschrift */
.vision-image-block {
  flex: 1;
  margin: 0;
}

.vision-image-block img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

/*.page-content .vision-image-block figcaption {
  margin-top: 0.4rem;
  font-size: 0.75rem;    /* wirklich kleine, elegante Schrift */
  /*color: #666;
  line-height: 1.3;
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
}*/

/* Bildunterschrift unter dem Vision-Bild */
.vision-image-block figcaption {
  margin-top: 0.4rem;
  font-size: 0.75rem;   /* kleiner als Fließtext */
  line-height: 1.3;
  color: #666;
  max-width: 100%;      /* genauso breit wie das Bild */
  margin-left: 0;
  margin-right: 0;
}


/* Rechte Spalte: Text */

/* Zitat im rechten Vision-Block: nicht mittig, sondern spaltenbündig */
.vision-text-block blockquote,
.vision-text-block .vision-quote {
  margin-left: 0;
  margin-right: 0;
}

.vision-text-block {
  flex: 1;
}

.vision-text-block h2 {
  margin-top: 0;
}

.vision-text-block p {
  line-height: 1.6;
}

.vision-main-text h2 {
  margin-top: 0;
}

.vision-main-text {
  max-width: 1000px;
  margin: 3rem auto 0;
  padding: 0 1rem;
}

/* Mobile Ansicht */
@media (max-width: 800px) {
  .vision-section {
    flex-direction: column;   /* Bild oben, Text unten */
    gap: 1.5rem;
  }
}

/* =========================================================
   5) SEITEN-HEADER
   ========================================================= */
.header--about,
.header--projects,
.header--contact{
  text-align:center; padding:4rem 2rem;
}
.header--about{ background: var(--surface-soft); }
.header--projects{ background: #fff3e6; }
.header--contact{ background: var(--surface-hero); padding:3rem 2rem; }

/* =========================================================
   6) PORTRAIT-KOMPONENTEN
   ========================================================= */
.avatar--round{
  width:200px; height:200px; border-radius:50%; margin:0 auto 1rem;
}
.avatar--rect{
  width:280px; aspect-ratio:3/4; border-radius:12px;
}

/* Dual-Portrait-Karten */
.about-dual{
  display:grid;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 4rem; align-items:start;
  margin: 2rem auto;
}
.about-card{
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 18px; border: 1px solid var(--border);
}
.about-card h3{ margin-top:.5rem; color: var(--brand); }
.about-card p{ margin:.5rem 0 0; }

/* =========================================================
   7) TIMELINE (schlank & robust)
   ========================================================= */
.timeline{ position:relative; margin: 3rem 0; }
.timeline::before{
  content:""; position:absolute; left:50%; top:3rem; bottom:3rem;
  width:4px; background: var(--brand); transform: translateX(-50%);
}
.timeline-title{ text-align:center; margin:1rem 0 2rem; }
.timeline-title h2{
  display:inline-block; background: var(--brand); color:#fff;
  padding:.6rem 1.2rem; border-radius:6px; font-size:1.4rem; box-shadow: var(--shadow-3);
}
.timeline-row{
  display:grid; grid-template-columns:1fr 1fr; gap:2rem; align-items:center; margin:2rem 0;
}
.timeline-col{ position:relative; }
.timeline-box{
  background: var(--surface);
  padding:1rem 1.5rem; border-radius:8px; box-shadow: var(--shadow-1);
  transition: transform .3s ease, box-shadow .3s ease;
}
.timeline-box:hover{ transform: scale(1.03); box-shadow: var(--shadow-2); }

/* Punkte */
.timeline-dot{
  position:absolute; top:50%; width:18px; height:18px; margin-top:-9px;
  border-radius:50%; background:#fff; border:3px solid var(--brand); z-index:2;
}
.timeline-col--left  .timeline-dot{ right:-35px; }
.timeline-col--right .timeline-dot{ left: -35px; }

/* Minimal-Variante (Kartenliste) */
.timeline .timeline-item{
  padding:14px; border:1px dashed var(--border); border-radius: var(--radius); background:#fff;
}
.timeline .timeline-item h4{ margin:0 0 6px; }

/* =========================================================
   8) ARBEITSWEISE (Textblock + Float Panel)
   ========================================================= */
#arbeitsweise{
  position:relative; z-index:1; background:#fff; color:var(--fg);
  max-width:800px; margin:4rem auto; padding:2rem;
  border-radius:10px; box-shadow: 0 8px 24px rgba(0,0,0,.08);
  line-height:1.7;
}
#arbeitsweise h2{
  text-align:center; font-weight:600; margin:0 0 1.5rem; color: var(--brand);
}
/* kleines Reveal */
.fade-in{ opacity:0; transform: translateY(10px); animation: fadeInUp .8s ease forwards; }
@keyframes fadeInUp{ to{ opacity:1; transform: translateY(0); } }

/* Floating Arbeitsweise */
:root{
  --fa-bg:#ffffff; --fa-fg:#2f3e46; --fa-accent:#ffd166; --fa-shadow:0 10px 30px rgba(0,0,0,.15); --fa-radius:12px;
}
.floating-arbeitsweise{ position:fixed; right:1rem; bottom:1rem; z-index:9999; display:grid; gap:.5rem; }
.fa-toggle{
  background:var(--fa-fg); color:#fff; border:none; padding:.6rem 1rem; border-radius:999px; font-weight:600;
  box-shadow:0 6px 16px rgba(0,0,0,.18); cursor:pointer; transition: transform .15s ease, background .2s ease;
}
.fa-toggle:hover{ transform: translateY(-1px); background: var(--brand-600); }
.fa-toggle:focus{ outline:2px solid var(--fa-accent); outline-offset:2px; }

.fa-panel{
  position:fixed; right:1rem; bottom:3.5rem; width:420px; max-height:70vh;
  background:var(--fa-bg); color:var(--fa-fg); border-radius:var(--fa-radius); box-shadow:var(--fa-shadow);
  overflow:hidden; transform: translateY(10px); opacity:0; pointer-events:none;
  transition: opacity .25s ease, transform .25s ease;
}
.fa-panel.open{ opacity:1; transform: translateY(0); pointer-events:auto; }
.fa-header{
  display:flex; align-items:center; justify-content:space-between; padding:.9rem 1rem;
  background:linear-gradient(0deg,#fff,#f7f9fa); border-bottom:1px solid rgba(0,0,0,.06);
}
.fa-header h3{ margin:0; font-size:1.05rem; font-weight:700; color:var(--fa-fg); }
.fa-header h3:focus{ outline:none; }
.fa-close{ background:transparent; border:none; font-size:1.4rem; line-height:1; cursor:pointer; color:#6b7b83; padding:.2rem .4rem; border-radius:8px; }
.fa-close:hover{ background:rgba(0,0,0,.05); color:var(--fa-fg); }
.fa-close:focus{ outline:2px solid var(--fa-accent); outline-offset:2px; }
.fa-content{ padding:1rem 1.1rem 1.2rem; max-height:calc(70vh - 56px); overflow:auto; line-height:1.7; }
.fa-content p{ margin:0 0 .9rem; }
.fa-content strong{ color:#1f2b31; background: linear-gradient(transparent 60%, rgba(255,209,102,.5) 60%); }

/* Mobile Anpassung Floating Panel */
@media (max-width: 768px){
  .fa-panel{ left:1rem; right:1rem; width:auto; bottom:4.25rem; max-height:60vh; }
  .fa-toggle{ padding:.65rem 1rem; font-size:.95rem; }
}

/* =========================================================
   9) PROJECTS – ORBIT-GALERIE
   ========================================================= */
.projects-gallery{
  text-align:center; padding:6rem 2rem;
  background: url("assets/images/backgrounds/federkiel.jpg") center/cover no-repeat;
  position:relative; overflow:hidden;
}
.projects-gallery::before{
  content:""; position:absolute; inset:0; background: rgba(255,255,255,.82); backdrop-filter: blur(3px); z-index:0;
}
.projects-gallery h1,
.projects-gallery p,
.project-circles{ position:relative; z-index:1; }

.project-circles.orbit{
  position:relative; width:420px; height:420px; margin:4rem auto 0; border-radius:50%;
  --orbit:210px; --circle:120px; --circleR: calc(var(--circle)/2); --radius: var(--orbit);
}
.orbit-line{ position:absolute; inset:0; border:2px solid rgba(47,62,70,.3); border-radius:50%; z-index:0; }

.orbit .circle{
  position:absolute;
  top:50%;
  left:50%;

  transition: transform .25s ease, box-shadow .25s ease;

  transform: translate(-50%,-50%) rotate(var(--angle)) translate(var(--radius)) rotate(calc(var(--angle) * -1));
  transform-origin:center;

  width:var(--circle);
  height:var(--circle);
  border-radius:50%;

  background:
    radial-gradient(circle at 30% 22%, rgba(255,255,255,.95), rgba(255,255,255,.42) 24%, rgba(47,62,70,.22) 70%, rgba(47,62,70,.34));
  color:#263238;

  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight:700;
  overflow:hidden;
  padding:.6rem;

  box-shadow:
    0 14px 32px rgba(0,0,0,.16),
    inset 0 2px 6px rgba(255,255,255,.75),
    inset 0 -10px 20px rgba(47,62,70,.18);

  border:1px solid rgba(255,255,255,.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.circle-icon{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);

  font-size:4.8rem;
  line-height:1;

  opacity:.055;
  color:#263238;

  filter: blur(0.3px);

  z-index:0;

  user-select:none;
  pointer-events:none;
}

.circle-label{
  position:relative;
  z-index:3;
  line-height:1.15;
  font-size:.95rem;
  font-weight:700;
  color:#263238;
  text-shadow:0 1px 3px rgba(255,255,255,.8);
}

.orbit .circle::before{
  content:"";
  position:absolute;
  top:14px; left:22px;
  width:36px; height:20px;
  border-radius:50%;
  background:rgba(255,255,255,.55);
  transform:rotate(-25deg);
}

.orbit .circle:hover{
  transform:
    translate(-50%,-50%)
    rotate(var(--angle))
    translate(var(--radius))
    rotate(calc(var(--angle) * -1))
    scale(1.05);

  box-shadow:
    0 20px 40px rgba(0,0,0,.18),
    inset 0 2px 8px rgba(255,255,255,.8),
    inset 0 -10px 22px rgba(47,62,70,.22);
}

.orbit .circle:hover > span{
  transform: scale(1.04);
}

.orbit .circle:nth-of-type(1){ --angle: -90deg; }
.orbit .circle:nth-of-type(2){ --angle: -18deg; }
.orbit .circle:nth-of-type(3){ --angle: 54deg; }
.orbit .circle:nth-of-type(4){ --angle: 126deg; }
.orbit .circle:nth-of-type(5){ --angle: 198deg; }

/* =========================================================
   9.1) APP DEVELOPMENT
   ========================================================= */

.app-development-header {
  max-width: 900px;
  margin: 0 auto;
  padding: 4.5rem 2rem 2.5rem;
  text-align: center;
}

.app-development-header h1 {
  margin: 0.4rem 0 1rem;
  padding: 0;
  color: var(--brand);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.08;
}

.app-eyebrow,
.app-project-category {
  margin: 0 0 0.6rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-development-intro {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
}

.app-project-list {
  width: min(1120px, calc(100% - 2rem));
  margin: 1.5rem auto 5rem;
  display: grid;
  gap: 3rem;
}

.app-project-card {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(310px, 0.92fr);

  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;

  padding: clamp(1.6rem, 4vw, 3.4rem);

  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: var(--shadow-1);
}

.app-project-card--letterformer {
  background:
    linear-gradient(
      135deg,
      rgba(255, 209, 102, 0.14),
      rgba(255, 255, 255, 1) 45%,
      rgba(233, 236, 239, 0.55)
    );
}

.app-project-card--pantry {
  background:
    linear-gradient(
      135deg,
      rgba(233, 236, 239, 0.42),
      rgba(255, 255, 255, 1)
    );
}

.app-project-content h2 {
  margin: 0 0 1rem;
  color: var(--brand);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
}

.app-project-lead {
  margin: 0 0 1rem;
  color: var(--fg);
  font-size: 1.08rem;
  line-height: 1.7;
}

.app-project-description {
  margin: 0 0 1.4rem;
  color: var(--muted);
  line-height: 1.7;
}

.app-project-features {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--fg);
}

.app-project-features li {
  margin-bottom: 0.45rem;
  padding-left: 0.2rem;
}

.app-project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.app-project-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.85rem 1.3rem;

  background: var(--brand);
  color: #ffffff;
  border-radius: 9px;

  font-weight: 700;
  text-decoration: none;

  box-shadow: 0 5px 14px rgba(47, 62, 70, 0.2);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.app-project-button:hover {
  background: var(--brand-600);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(47, 62, 70, 0.26);
}


/* LetterFormer-Vorschaugrafik */

.app-project-visual {
  min-height: 380px;
  padding: 2rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border-radius: 18px;
}

.app-project-visual--letterformer {
  background:
    linear-gradient(
      145deg,
      #f4f0e8,
      #ffffff 52%,
      #e2e8eb
    );

  border: 1px solid rgba(47, 62, 70, 0.12);

  box-shadow:
    inset 0 0 0 10px rgba(255, 255, 255, 0.45),
    0 14px 32px rgba(0, 0, 0, 0.1);
}

.letterformer-preview-window {
  width: min(100%, 430px);
  overflow: hidden;

  background: #ffffff;
  border: 1px solid rgba(47, 62, 70, 0.15);
  border-radius: 12px;

  box-shadow: 0 12px 28px rgba(47, 62, 70, 0.16);
}

.letterformer-preview-toolbar {
  height: 34px;
  padding: 0 12px;

  display: flex;
  align-items: center;
  gap: 6px;

  background: #eef1f2;
  border-bottom: 1px solid rgba(47, 62, 70, 0.1);
}

.letterformer-preview-toolbar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(47, 62, 70, 0.35);
}

.letterformer-preview-content {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 12px;
  padding: 14px;
}

.letterformer-preview-form {
  display: grid;
  align-content: start;
  gap: 9px;
}

.letterformer-preview-form span {
  display: block;
  height: 24px;

  background: #eef1f2;
  border: 1px solid rgba(47, 62, 70, 0.08);
  border-radius: 5px;
}

.letterformer-preview-letter {
  min-height: 215px;
  padding: 18px;

  background: #ffffff;
  border: 1px solid rgba(47, 62, 70, 0.12);

  box-shadow: 0 4px 12px rgba(47, 62, 70, 0.08);
}

.letterformer-preview-address {
  width: 48%;
  height: 22px;
  margin-bottom: 32px;
  background: #dfe5e7;
}

.letterformer-preview-subject {
  width: 68%;
  height: 8px;
  margin-bottom: 18px;
  background: #78868c;
}

.letterformer-preview-line {
  width: 100%;
  height: 5px;
  margin-bottom: 9px;
  background: #d6dcde;
}

.letterformer-preview-line.short {
  width: 68%;
}

.letterformer-preview-signature {
  width: 35%;
  height: 16px;
  margin-top: 28px;
  border-bottom: 2px solid #7c898f;
}

.app-project-visual-label {
  margin: 1.4rem 0 0.2rem;
  color: var(--brand);

  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.app-project-visual-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}


/* Pantry-&-Plan-Video */

.app-project-media {
  width: 100%;
}

.app-project-media .project-video {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;

  background: #111111;
  border-radius: 18px;

  box-shadow: var(--shadow-2);
}


/* Tablet und Mobilgeräte */

@media (max-width: 850px) {

  .app-project-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .app-project-visual {
    min-height: 320px;
  }

}

@media (max-width: 560px) {

  .app-development-header {
    padding: 3.5rem 1.2rem 2rem;
  }

  .app-project-list {
    width: min(100% - 1rem, 1120px);
  }

  .app-project-card {
    padding: 1.35rem;
    border-radius: 16px;
  }

  .app-project-visual {
    min-height: 280px;
    padding: 1rem;
  }

  .letterformer-preview-content {
    grid-template-columns: 1fr;
  }

  .letterformer-preview-form {
    display: none;
  }

  .letterformer-preview-letter {
    min-height: 220px;
  }

}

/* =========================================================
   10) CONTACT
   ========================================================= */
.contact{ text-align:center; padding:3rem 2rem; background: var(--surface-soft); }
.contact h2{ margin:0 0 1.5rem; color: var(--brand); font-weight:700; }
.contact-lead{ max-width:700px; margin:0 auto; }
.contact-links{
  display:flex; flex-wrap:wrap; justify-content:center; align-items:center; gap:1.5rem; max-width:700px; margin:0 auto;
}
.contact-links a{
  display:flex; align-items:center; justify-content:center; gap:.5rem;
  background:#fff; padding:.8rem 1.4rem; border-radius:8px; box-shadow: var(--shadow-1);
  color: var(--brand); font-weight:500; transition: all .3s ease; min-width:150px;
}
.contact-links a:hover{ background: var(--brand); color:#fff; transform: translateY(-3px); }

/* =========================================================
   11) PERSONALITY
   ========================================================= */
/* === Einheitliche Abstände für Personality-Seite === */

/* Abstand unter H1 */
.personality-hero h1 {
  margin-bottom: 0.4rem;
}

/* Abstand unter Subline */
.personality-hero .muted {
  margin-top: 0.2rem;
  margin-bottom: 0;
}

/* Abstand oberhalb H2 in Cards */
.container.grid-2 h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

/* Abstand unter Textabsätzen */
.container.grid-2 p {
  margin-bottom: 1.1rem;
}

/* =========================================================
   12) FOOTER
   ========================================================= */
footer,
.site-footer{
  text-align:center; padding:2rem; background: var(--brand); color:#fff; margin-top:2rem;
}

/* =========================================================
   13) RESPONSIVE
   ========================================================= */
@media (max-width: 900px){
  .hero-inner{ flex-direction:column; text-align:center; }
}
@media (max-width: 768px){
  .about-dual{ grid-template-columns:1fr; gap:2rem; }
  .timeline-row{ grid-template-columns:1fr; }
  .timeline::before{ left:20px; }
  .timeline-dot{ left:-30px; right:auto; }

  .project-circles.orbit{ width:300px; height:300px; --orbit:150px; --circle:90px; }
  .orbit .circle > span{ font-size:.85rem; }
}

/* =========================================================
   14) FALLBACKS / SICHERHEIT
   ========================================================= */
/* Sicherstellen, dass Bilder in Cards/Headers top-justiert bleiben */
.header--about img,
.about-dual img,
.about-card img{
  object-fit: cover;
  object-position: 50% 10%;
}

.image-block {
  text-align: center;
  margin: 2em 0;
}

.image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.image-block figcaption {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin-top: 0.8em;
}
