.about-section {
  padding: clamp(76px, 7vw, 108px) 0 clamp(112px, 10vw, 164px);
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #fff 0%,
    #fff 54%,
    #f8fafb 70%,
    #eef4f6 86%,
    #e4edf1 100%
  );
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(400px, .92fr);
  gap: clamp(72px, 8vw, 132px);
  align-items: center;
}

.about-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(150px, .72fr);
  grid-template-rows: 1fr;
  gap: clamp(14px, 1.5vw, 22px);
  min-width: 0;
  height: clamp(640px, 53vw, 760px);
}

.about-main-image,
.about-fixed-image {
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background-color: var(--primary-dark);
}

.about-main-image {
  box-shadow: 0 22px 48px rgba(7, 27, 44, .09);
}

.about-main-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 50%;
}

.about-fixed-image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 72%;
  align-self: center;
  border-radius: 14px;
  background-image:
    linear-gradient(rgba(4, 20, 36, .02), rgba(4, 20, 36, .1)),
    url("../img/krause-einsatz-editorial-v2.webp");
  background-repeat: no-repeat;
  background-position: center, 69% 55%;
  background-size: cover, cover;
  background-attachment: scroll, fixed;
  box-shadow: 0 18px 42px rgba(7, 27, 44, .12);
}

.about-copy {
  max-width: 580px;
  padding-top: clamp(62px, 6.5vw, 98px);
  align-self: start;
}

.about-copy h2 {
  max-width: 570px;
  margin: 18px 0 28px;
  color: var(--primary-dark);
  font-size: 3.9rem;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.about-copy > p {
  max-width: 540px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.75;
}

.about-copy .about-lead {
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.68;
}

.about-audience {
  margin-top: 38px;
}

.audience-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  padding: 5px;
  border-radius: 11px;
  background: #e4ebee;
}

.audience-tab {
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  border-radius: 7px;
  color: var(--muted);
  background: transparent;
  font-family: var(--font-ui);
  font-size: .78rem;
  font-weight: 850;
  transition: color .18s ease, background-color .18s ease, box-shadow .18s ease;
}

.audience-tab:is(:hover, :focus-visible) {
  color: var(--primary-dark);
}

.audience-tab.active {
  color: var(--primary-dark);
  background: #fff;
  box-shadow: 0 5px 16px rgba(7, 27, 44, .1);
}

.audience-content {
  min-height: 205px;
  margin-top: 9px;
  padding: 25px 26px 24px;
  border: 1px solid rgba(var(--primary-rgb), .1);
  border-radius: 12px;
  background: rgba(255, 255, 255, .76);
  box-shadow: 0 16px 36px rgba(7, 27, 44, .07);
}

.audience-content h3 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 1.2rem;
  line-height: 1.2;
}

.audience-content p {
  max-width: 470px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.58;
}

.audience-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.about-signature {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 38px;
}

.about-signature::before {
  width: 28px;
  height: 2px;
  content: "";
  background: var(--accent);
}

.about-signature strong,
.about-signature span {
  font-size: .75rem;
}

.about-signature strong {
  color: var(--primary-dark);
  font-family: "Segoe Script", "Bradley Hand", cursive;
  font-size: 1.65rem;
  font-weight: 600;
  line-height: 1;
  transform: rotate(-2deg);
  transform-origin: left center;
}

.about-signature span {
  color: var(--muted);
}

@media (max-width: 1199.98px) {
  .about-copy h2 {
    font-size: 3.5rem;
  }
}

@media (max-width: 991.98px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .about-gallery {
    grid-template-columns: minmax(0, 1.6fr) minmax(170px, .7fr);
    grid-template-rows: 1fr;
    height: min(700px, 82vw);
  }

  .about-main-image img {
    object-position: 50% 50%;
  }

  .about-fixed-image {
    width: 100%;
    height: 72%;
    background-position: center, 60% 52%;
    background-attachment: scroll;
  }

  .about-copy {
    max-width: 700px;
    padding-top: 0;
  }
}

@media (max-width: 575.98px) {
  .about-section {
    padding: 62px 0 92px;
  }

  .about-gallery {
    grid-template-columns: minmax(0, 1.48fr) minmax(112px, .72fr);
    grid-template-rows: 1fr;
    height: 470px;
    gap: 10px;
  }

  .about-main-image img {
    object-position: 53% 50%;
  }

  .about-copy h2 {
    margin-top: 14px;
    font-size: 2.65rem;
    line-height: 1.03;
  }

  .about-main-image {
    border-radius: 14px;
  }

  .about-fixed-image {
    width: 100%;
    height: 70%;
    border-radius: 12px;
  }

  .audience-content {
    min-height: 0;
    padding: 22px 18px;
  }

  .audience-actions .btn {
    width: 100%;
  }

  .about-signature {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-fixed-image {
    background-attachment: scroll;
  }
}
