/* assets/style.css – medizinisch-seriös, hell, feine Linien (blau/rot) */

:root{
  --bg: #ffffff;
  --ink: #0e1a2b;
  --muted: #5a6a82;
  --line: rgba(14,26,43,.10);
  --blue: #2b6fff;
  --blue2:#1b4fd6;
  --red:  #e53935;
  --red2: #b81f1b;
  --card: #ffffff;
  --shadow: 0 14px 40px rgba(14,26,43,.10);
  --radius: 16px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    linear-gradient(180deg, rgba(43,111,255,.06), transparent 240px),
    linear-gradient(180deg, rgba(229,57,53,.04), transparent 280px),
    var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

.wrap{
  width: min(1100px, 92%);
  margin: 0 auto;
}

.topbar{
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 20;
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
}

.brand-mark{
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--blue), var(--red));
  box-shadow: 0 6px 18px rgba(43,111,255,.18);
}

.brand-name{ font-weight: 800; letter-spacing: .2px; }
.brand-sub{ font-size: 12px; color: var(--muted); margin-top: 1px; }

.nav{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
}

.nav a{
  color: var(--muted);
  text-decoration:none;
  font-size: 14px;
}

.nav a:hover{ color: var(--ink); }

.nav-cta{
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid rgba(43,111,255,.25);
  background: rgba(43,111,255,.06);
  color: var(--ink) !important;
}

.hero{
  padding: 38px 0 20px;
  border-bottom: 1px solid var(--line);
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 18px;
  align-items: start;
}

.pill{
  display:inline-block;
  font-size: 12px;
  letter-spacing: .12em;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255,255,255,.65);
}

h1{
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  margin: 12px 0 10px;
}

.lead{
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 14px;
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin: 14px 0 10px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--line);
  text-decoration:none;
  cursor:pointer;
  font-weight: 650;
}

.btn.primary{
  background: linear-gradient(135deg, rgba(43,111,255,.12), rgba(229,57,53,.06));
  border-color: rgba(43,111,255,.22);
  color: var(--ink);
}

.btn.primary:hover{
  border-color: rgba(43,111,255,.40);
}

.btn.secondary{
  background: #fff;
  color: var(--ink);
}

.notice{
  margin-top: 12px;
  padding: 12px 14px;
  border-left: 3px solid rgba(43,111,255,.55);
  background: rgba(43,111,255,.05);
  border-radius: 10px;
  color: var(--muted);
  font-size: 13px;
}

.hero-media{ padding-top: 6px; }

.media-card{
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.media-card img{
  width:100%;
  height:auto;
  display:block;
}

.media-card figcaption{
  padding: 10px 12px;
  font-size: 12px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.media-grid{
  margin-top: 10px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.media-grid img{
  width:100%;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 10px 26px rgba(14,26,43,.06);
  background: #fff;
}

.section{
  padding: 26px 0;
}

h2{
  margin: 0 0 8px;
  font-size: 22px;
}

.sub{
  margin: 0 0 14px;
  color: var(--muted);
}

.cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
}

.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}

.card-head{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 8px;
}

.dot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 2px solid transparent;
}
.dot.blue{ background: rgba(43,111,255,.25); border-color: rgba(43,111,255,.55); }
.dot.red{ background: rgba(229,57,53,.18); border-color: rgba(229,57,53,.55); }

.card h3{
  margin: 0;
  font-size: 16px;
}

.card p{
  margin: 0 0 10px;
  color: var(--muted);
}

.link{
  color: var(--blue2);
  text-decoration: none;
  border-bottom: 1px dotted rgba(43,111,255,.5);
}

.link:hover{
  border-bottom-color: rgba(43,111,255,.9);
}

.split{
  display:grid;
  grid-template-columns: 1fr .9fr;
  gap: 14px;
  align-items:start;
}

.list{
  margin: 10px 0 0 18px;
  color: var(--muted);
}

.info-box{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
}

.info-head{
  display:flex;
  gap: 8px;
  flex-wrap:wrap;
  margin-bottom: 8px;
}

.badge{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  color: var(--muted);
}
.badge.blue{ border-color: rgba(43,111,255,.25); background: rgba(43,111,255,.06); }
.badge.red{ border-color: rgba(229,57,53,.25); background: rgba(229,57,53,.05); }

hr{
  border:0;
  border-top: 1px solid var(--line);
  margin: 12px 0;
}

.muted{ color: var(--muted); }

.faq details{
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px;
  margin: 10px 0;
  background: rgba(255,255,255,.7);
  box-shadow: 0 10px 26px rgba(14,26,43,.06);
}

.faq summary{
  cursor:pointer;
  font-weight: 700;
}

.faq p{
  color: var(--muted);
  margin: 10px 0 0;
}

.footer{
  border-top: 1px solid var(--line);
  padding: 18px 0;
  background: rgba(255,255,255,.85);
}

.footer-inner{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 13px;
}

.footer a{
  color: var(--muted);
  text-decoration:none;
}
.footer a:hover{ color: var(--ink); }
.sep{ opacity:.6; margin: 0 6px; }

@media (max-width: 900px){
  .hero-grid{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }
  .media-grid img{ height: 150px; }
}


<style>
.img-zoom {
  width: 240px;           /* Thumbnail-Größe */
  overflow: hidden;
}

.img-zoom img {
  width: 100%;
  transition: transform 0.35s ease;
  cursor: zoom-in;
}

.img-zoom img:hover {
  transform: scale(1.8);  /* Zoom-Faktor */
}
</style>
