.lifetime-announcement {
  padding: 28px 0 0;
}

.lifetime-announcement__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 32px;
  border: 1px solid rgba(215, 84, 47, 0.18);
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(255, 244, 232, 0.96), #fff 72%);
  box-shadow: 0 16px 42px rgba(63, 42, 25, 0.08);
}

.lifetime-announcement__copy {
  max-width: 780px;
}

.lifetime-announcement__copy h2 {
  margin: 4px 0 8px;
  color: var(--brand-navy);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.2;
}

.lifetime-announcement__copy p:last-child {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.lifetime-announcement__cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--brand-orange);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.lifetime-announcement__cta:hover,
.lifetime-announcement__cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(215, 84, 47, 0.24);
}

@media (max-width: 760px) {
  .lifetime-announcement {
    padding-top: 20px;
  }

  .lifetime-announcement__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }

  .lifetime-announcement__cta {
    width: 100%;
  }
}
