.rm-page {

    padding-top: 2rem;

    padding-bottom: var(--space-3xl);
}

.rm-page__container {

    max-width: 800px;

    margin-inline: auto;
}

.rm-page__header {

    margin-bottom: var(--space-2xl);
}

.rm-page__title {

    margin: 0;

    font-size: clamp(
        2.5rem,
        5vw,
        4rem
    );

    line-height: 1.1;
}

.rm-page__content {

    font-size: 1.05rem;

    line-height: 1.9;
}

.rm-page__content > * + * {

    margin-top: 1.5rem;
}

.rm-page__content h2 {

    margin-top: 3rem;

    margin-bottom: 1rem;

    font-size: 1.75rem;

    line-height: 1.2;
}

.rm-page__content h3 {

    margin-top: 2rem;

    margin-bottom: .75rem;

    font-size: 1.35rem;
}

.rm-page__content ul,
.rm-page__content ol {

    padding-left: 1.5rem;
}

.rm-page__content li + li {

    margin-top: .5rem;
}

.rm-page__content a {

    color: var(--color-accent);

    text-decoration: underline;
}

.rm-page__content table {

    width: 100%;

    border-collapse: collapse;
}

.rm-page__content th,
.rm-page__content td {

    padding: .75rem;

    border: 1px solid var(--color-border);

    text-align: left;
}