/* F-014: Renewal Page — soft-luxury, Ethereal Glass, centered card within max-prose */

/* --- Page layout --- */

.renewal-page {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
  padding: var(--space-section) 1.5rem;
}

.renewal-page__container {
  width: 100%;
  max-width: var(--max-prose);
}

/* --- Typography --- */

.renewal-page__headline {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--color-ink);
  margin-bottom: var(--space-card);
}

.renewal-page__price {
  font-family: var(--font-body);
  font-size: var(--text-h2);
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: var(--space-card);
}

/* --- Renew button (full-width on mobile, auto-width on desktop) --- */

.renewal-page__renew-btn {
  width: 100%;
  justify-content: center;
  text-decoration: none;
}

@media (min-width: 40rem) {
  .renewal-page__renew-btn {
    width: auto;
  }
}
