.impulses-page {
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(6rem, 11vw, 10rem);
  overflow: visible;
}

.impulses-intro {
  max-width: 760px;
  margin-bottom: clamp(4.5rem, 9vw, 7rem);
}

.impulses-intro h1 {
  font-size: clamp(3.6rem, 9vw, 7rem);
}

.impulses-lead {
  max-width: 680px;
  margin: 2rem 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.6;
}

.impulse-list {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.impulse-entry {
  position: relative;
  padding: clamp(2rem, 6vw, 4.25rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0, rgba(214, 154, 115, .11), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, .065), rgba(255, 255, 255, .028));
  box-shadow: 0 24px 70px rgba(7, 2, 8, .22);
}

.impulse-entry::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--copper), transparent);
  opacity: .72;
}

.impulse-entry-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
  color: var(--copper);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.impulse-entry h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5vw, 3.65rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -.025em;
}

.impulse-hook {
  max-width: 700px;
  margin: 1.4rem 0 2rem;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  line-height: 1.42;
}

.impulse-body {
  max-width: 690px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}

.impulse-body p {
  margin: 0;
}

.impulse-body p + p {
  margin-top: 1rem;
}

.impulse-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: 2rem;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 700;
  text-decoration-color: rgba(241, 210, 154, .45);
  text-decoration-thickness: 1px;
  text-underline-offset: .38rem;
  transition: color .2s ease, gap .2s ease;
}

.impulse-link:hover,
.impulse-link:focus-visible {
  gap: .8rem;
  color: var(--gold);
}

@media (max-width: 920px) {
  .impulses-page {
    width: min(720px, calc(100% - 36px));
  }
}

@media (max-width: 600px) {
  .impulses-page {
    padding-top: 3.75rem;
    padding-bottom: 5rem;
  }

  .impulses-intro {
    margin-bottom: 3.5rem;
  }

  .impulses-lead {
    margin-top: 1.5rem;
    font-size: 1.08rem;
  }

  .impulse-list {
    gap: 1rem;
  }

  .impulse-entry {
    padding: 1.75rem 1.35rem 2rem;
    border-radius: 22px;
  }

  .impulse-entry-meta {
    font-size: .65rem;
  }

  .impulse-hook {
    margin: 1.1rem 0 1.6rem;
  }

  .impulse-body {
    font-size: .96rem;
    line-height: 1.72;
  }

  .impulse-link {
    align-items: flex-start;
    line-height: 1.45;
  }
}


/* Legal footer link: secondary to the Neue Herzkunst offer. */
footer a[href*="datenschutz"] {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
}

footer a[href*="datenschutz"]:hover,
footer a[href*="datenschutz"]:focus-visible {
  color: var(--ink);
  text-decoration: underline;
}

/* Centered legal footer navigation */
footer { position: relative; padding-bottom: 78px; }
.footer-legal { position: absolute; left: 50%; bottom: 17px; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 2px; white-space: nowrap; }
.footer-legal a { color: #b9a9ab; font-family: var(--sans); font-size: .72rem; font-weight: 400; line-height: 1.35; text-decoration: none; }
.footer-legal a:hover, .footer-legal a:focus-visible { color: var(--ink); text-decoration: underline; }
@media (max-width: 600px) {
  footer { padding-bottom: 92px; }
  .footer-legal { bottom: 22px; }
}
