/* ── Person page: intro band (text left, round portrait right) ── */
.person-intro-section {
  padding-top: 6rem;
  padding-bottom: 1.5rem;
}

.person-intro-text {
  min-width: 0;
}

.person-intro-meta {
  margin: 0 0 1.5rem;
}

.person-intro-meta > div + div {
  margin-top: 0.2rem;
}

.person-intro-body {
  margin-top: 2rem;
}

.person-portrait-wrap {
  flex-shrink: 0;
  align-self: start;
  margin-top: 1rem;
}

.person-portrait {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.person-portrait-wrap--mobile {
  display: block;
  float: right;
  width: min(28vw, 280px);
  margin: 0.25rem 0 1rem 1.5rem;
}

.person-intro-text::after {
  content: "";
  display: block;
  clear: both;
}

@media (max-width: 640px) {
  .person-intro-section {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
  }

  .person-portrait-wrap--mobile {
    width: min(40vw, 160px);
    margin: 0.1rem 0 0.8rem 0.9rem;
  }
}

/* ── CV / Experiences ── */
.cv-list {
  margin-top: 2rem;
}

.cv-entry {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.cv-chevron {
  flex-shrink: 0;
  width: 1.5rem;
  height: 2.2rem;
  color: var(--color-highlight);
  margin-top: 0.15rem;
}

.cv-entry-text h2 {
  color: var(--color-text-green);
  font-size: clamp(1.1rem, 2.4vw, 1.6rem);
  font-weight: 400;
  margin: 0 0 0.2rem;
  position: relative;
  display: inline-block;
}

.cv-entry-text p {
  margin: 0;
}

/* ── Fortbildungen & Mitgliedschaften ── */
.fortbildungen-layout {
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
}

.fortbildungen-blob {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1 / 0.85;
}

.fortbildungen-blob::before {
  width: 74%;
  height: 80%;
  top: 12%;
  left: 10%;
  border-radius: 60% 40% 46% 54% / 54% 44% 56% 46%;
}

.fortbildungen-blob::after {
  width: 78%;
  height: 84%;
  top: 10%;
  left: 14%;
  border-radius: 54% 46% 42% 58% / 50% 48% 52% 50%;
}

.fortbildungen-timeline {
  min-width: 0;
}

.fortbildungen-timeline .section-heading {
  margin-bottom: 1.5rem;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 1.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--color-highlight);
  opacity: 0.4;
}

.timeline-entry {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.timeline-dot {
  position: absolute;
  left: -1.5rem;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-highlight);
  flex-shrink: 0;
}

.timeline-content {
  min-width: 0;
}

.timeline-year {
  display: block;
  color: var(--color-highlight);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.1rem;
}

.timeline-title {
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .fortbildungen-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .fortbildungen-timeline {
    order: 1;
  }

  .fortbildungen-blob {
    order: 2;
    max-width: 260px;
    margin: 1.5rem auto 0;
  }
}

.mitgliedschaften-section p {
  margin: 0 0 0.45em;
  line-height: 1.4;
}
