﻿/* Extracted from app.css */


/* Text / prose */
.prose-block__inner {
  width: 100%;
  max-width: 100%;
  background: transparent;
  padding: 0;
  border-radius: var(--app-radius);
  box-shadow: none;
  border: 0;
  font-size: 1.05rem;
}

.prose-block__inner .lead p:last-child {
  margin-bottom: 0;
}

.prose-block__actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.prose-block__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 0.95rem 2.35rem;
  border-radius: 999px;
  background: #f5f2ec;
  color: #1c2230;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.prose-block__btn:hover,
.prose-block__btn:focus-visible {
  color: #111827;
  background: #ffffff;
  transform: translateY(-2px);
}
