/* Policy, thank-you, contact, about */
.page-hero {
    padding: 2.5rem 0 1.5rem;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
}

.page-hero h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.page-hero p {
    color: var(--text-secondary);
    max-width: 40rem;
}

.page-content {
    padding-block: 2.5rem 4rem;
}

.page-content .prose {
    max-width: 720px;
}

.prose--spaced {
    margin-top: 2rem;
}

.prose h2 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    margin: 2rem 0 0.75rem;
}

.prose h3 {
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    margin: 1.5rem 0 0.5rem;
}

.prose p,
.prose li {
    color: var(--text-secondary);
    margin-bottom: 0.85rem;
}

.prose ul {
    list-style: disc;
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.prose a,
.prose button {
    color: var(--cta);
}

.prose button {
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.prose table {
    width: 100%;
    margin: 1.25rem 0;
    font-size: 0.875rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.prose th,
.prose td {
    padding: 0.75rem 0.85rem;
    border-bottom: 1px solid var(--border);
    text-align: left;
    vertical-align: top;
}

.prose th {
    background: var(--surface-muted);
    color: var(--ink);
    font-weight: 600;
}

.prose tr:last-child td {
    border-bottom: 0;
}

.contact-cards {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.contact-card {
    padding: 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.contact-card h2 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    margin: 0 0 0.5rem;
}

.contact-card p,
.contact-card a {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.contact-card a {
    color: var(--cta);
    text-decoration: none;
}

.contact-card a:hover {
    text-decoration: underline;
}

@media (min-width: 768px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }
}

/* Thank you */
.thank-you {
    min-height: calc(100vh - 220px);
    display: grid;
    place-items: center;
    padding: 4rem var(--pad-x);
    background: var(--porcelain);
}

.thank-you__card {
    width: 100%;
    max-width: 520px;
    text-align: center;
}

.thank-you__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    color: var(--cta);
    background: var(--surface);
}

.thank-you__icon svg {
    width: 28px;
    height: 28px;
}

.thank-you h1 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.thank-you p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.thank-you__actions {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

@media (min-width: 1024px) {
    .thank-you h1 {
        font-size: 2.125rem;
    }
}
