/* Projektleitung – Zusatzstyles (mobile-first) */

.lead{
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 18px 46px;
}

.lead__header{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.lead__title h1{
  margin: 0 0 6px;
}

.lead__subtitle{
  margin: 0 0 12px;
  color: rgba(15,23,42,0.72);
  line-height: 1.45;
}

.lead__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  color: rgba(15,23,42,0.80);
}

.lead__card{
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow);
  width: 100%;
  box-sizing: border-box;
}

.lead__portrait{
  width: 100%;
  height: 260px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,0.08);
}

.lead__portrait img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lead__meta{
  display: flex;
  flex-direction: column;
}

.lead__name{
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.lead__role{
  font-size: 0.9rem;
  color: rgba(15,23,42,0.65);
  margin-bottom: 14px;
}

.lead__facts{
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 0 0 12px;
}

.fact{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
}

.fact dt{
  color: rgba(15,23,42,0.55);
}

.fact dd{
  margin: 0;
  color: rgba(15,23,42,0.90);
}

.lead__cta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.lead__hint{
  margin: 10px 0 0;
  font-size: 0.9rem;
  color: rgba(15,23,42,0.60);
}

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

/* Panels (nutzt eure main.css-Panelidee, aber hier abgesichert) */
.panel{
  border-radius: var(--radius-xl);
  border: 1px solid rgba(15,23,42,0.10);
  background: rgba(255,255,255,0.92);
  box-shadow: var(--shadow);
  padding: 18px;
}

.panel--clean{
  background: rgba(255,255,255,0.92);
}

.panel--accent{
  background: rgba(3,105,161,0.06);
  border-color: rgba(3,105,161,0.18);
}

.panel h2{
  margin: 0 0 10px;
}

.list{
  margin: 0;
  padding-left: 18px;
  line-height: 1.55;
}

.small{ font-size: 0.9rem; }
.muted{ color: rgba(15,23,42,0.60); }

/* Timeline */
.timeline{
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.timeline__item{
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px dashed rgba(15,23,42,0.12);
}

.timeline__item:first-child{
  border-top: none;
  padding-top: 0;
}

.timeline__year{
  font-weight: 700;
  color: rgba(15,23,42,0.70);
}

.timeline__title{
  font-weight: 700;
  margin-bottom: 2px;
}

.timeline__text{
  color: rgba(15,23,42,0.78);
  line-height: 1.45;
}

/* Buttons: greifen eure Klassen auf, aber fallback */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,0.12);
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}

.btn:active{ transform: translateY(1px); }

.btn--primary{
  color: #fff;
  border-color: rgba(2, 6, 23, 0.18);
  background: rgba(15, 23, 42, 0.95);
}

.btn--primary:hover{
  box-shadow: 0 12px 26px rgba(15,23,42,0.20);
}

.btn--ghost{
  background: rgba(255,255,255,0.75);
}

.btn--ghost:hover{
  box-shadow: 0 10px 22px rgba(15,23,42,0.14);
}

/* Desktop Layout */
@media (min-width: 900px){

  .lead__card{
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 28px;
    padding: 28px;
  }

  .lead__portrait{
    height: 320px;
  }

}