/* ── Psychotherapie page: first band ── */
.psy-layout {
  display: block;
}

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

.psy-illustration {
  position: relative;
}

.psy-illustration--desktop {
  float: right;
  width: 320px;
  min-height: 280px;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.psy-illustration--mobile {
  display: none;
}

.psy-illustration::before {
  width: 240px;
  height: 220px;
  border-radius: 52% 48% 38% 62% / 44% 58% 42% 56%;
  top: 8%;
  right: 10%;
}

.psy-illustration::after {
  width: 190px;
  height: 180px;
  border-radius: 38% 62% 52% 48% / 48% 42% 58% 52%;
  top: 30%;
  right: 25%;
}

.psy-blob-accent {
  position: absolute;
  width: 70px;
  height: 60px;
  background: var(--color-bg-green);
  border-radius: 55% 45% 40% 60% / 50% 60% 40% 50%;
  bottom: 18%;
  right: 8%;
  pointer-events: none;
}

.psy-attribution {
  clear: both;
  text-align: left;
  font-style: italic;
  font-size: 0.85em;
  opacity: 0.7;
  margin-top: 1.5rem;
  margin-bottom: 0;
  margin-left: 2.5rem;
}

@media (max-width: 640px) {
  .psy-illustration--desktop {
    display: none;
  }

  .psy-illustration--mobile {
    display: block;
    width: min(100%, 320px);
    min-height: 240px;
    margin: 1.5rem auto 0;
  }
}

/* ── Second band: methode (indented from left) ── */
.methode-layout {
  margin-left: 40%;
}

@media (max-width: 640px) {
  .methode-layout {
    margin-left: 0;
  }
}

/* subtitle in psy-layout inherits section-subtitle but gets gold color */
.psy-layout .section-subtitle {
  color: var(--color-highlight);
  opacity: 1;
}

.psy-focus-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 4rem;
  align-items: start;
}

.psy-focus-heading {
  color: var(--color-text-base);
}


.important-content {
  margin-top: 1.25rem;
}

.important-content h2 {
  color: var(--color-highlight);
  margin-top: 2rem;
}

.important-content h2:first-child {
  margin-top: 0;
}

.important-content p:last-child {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .psy-focus-layout {
    grid-template-columns: 1fr;
  }

}
